cfgip2c.h
1 //------------------------------------------------------------------------------
2 // cfgip2c.h
3 //------------------------------------------------------------------------------
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 // 02110-1301 USA
19 //
20 //------------------------------------------------------------------------------
21 // Copyright (C) 2021 "Zalewa" <zalewapl@gmail.com>
22 //------------------------------------------------------------------------------
23 
24 #ifndef DOOMSEEKER_GUI_CONFIGURATION_CFGIP2C_H
25 #define DOOMSEEKER_GUI_CONFIGURATION_CFGIP2C_H
26 
27 #include "gui/configuration/configpage.h"
28 #include <QIcon>
29 
30 class CFGIP2C : public ConfigPage
31 {
32  Q_OBJECT
33 
34 public:
35  CFGIP2C(QWidget *parent);
36  ~CFGIP2C() override;
37 
38  QIcon icon() const override
39  {
40  return QIcon(":/icons/location.png");
41  }
42  QString name() const override
43  {
44  return tr("IP2C");
45  }
46  void readSettings() override;
47 
48 protected:
49  void saveSettings() override;
50 
51 private:
52  DPtr<CFGIP2C> d;
53 };
54 
55 #endif