summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/interfaces/interfacesetupimp.h
blob: f38fba5e2f4c5df4e1b24640472c361166c354f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef INTERFACESETUPIMP_H
#define INTERFACESETUPIMP_H

#include "interfacesetup.h"
#include "interfaces.h"
#include <qdialog.h>

class Interface;

/**
 * A default  implementation for setting up basic
 * network config. Like DHCP, IP and other information.
 * You can use it in a tab or  in any other way*
 * On saveChanges() it'll save the changes to Interfaces.
 */
class InterfaceSetupImp : public InterfaceSetup {
  Q_OBJECT

public:
  InterfaceSetupImp( QWidget* parent = 0, const char* name = 0, Interface *i = 0, Interfaces *j = 0, WFlags fl = 0);
  ~InterfaceSetupImp();
  bool saveChanges();

public slots:
  void setProfile(const QString &profile);
  bool saveSettings();

private:
  Interfaces *interfaces;
  Interface  *interface;

  bool delInterfaces;
};


#include <qlayout.h>

class InterfaceSetupImpDialog : public QDialog {
Q_OBJECT

public:
    InterfaceSetupImpDialog(QWidget* parent = 0, const char* name = 0, Interface *i=0, bool modal = false, WFlags fl = 0) : QDialog(parent, name, modal, fl){
    QVBoxLayout *InterfaceSetupLayout = new QVBoxLayout( this );
    setCaption("Interface Setup");
    interfaceSetup = new InterfaceSetupImp(this, "InterfaceSetup",i);
    InterfaceSetupLayout->addWidget( interfaceSetup );
  };
  void setProfile(QString &profile){ interfaceSetup->setProfile(profile);};

private:
  InterfaceSetupImp *interfaceSetup;

protected slots:
  void accept(){
    if(interfaceSetup->saveChanges())
      QDialog::accept();
  };

};

#endif

// interfacesetupimp.h