From 2d0c6327dd40ab6847ce055c40ca59893bc8b9b2 Mon Sep 17 00:00:00 2001 From: benmeyer Date: Wed, 02 Oct 2002 19:23:45 +0000 Subject: Fixes --- diff --git a/noncore/net/networksetup/interfaceinformation.ui b/noncore/net/networksetup/interfaceinformation.ui index 8b6280d..76af19c 100644 --- a/noncore/net/networksetup/interfaceinformation.ui +++ b/noncore/net/networksetup/interfaceinformation.ui @@ -11,7 +11,7 @@ 0 0 - 203 + 199 244 @@ -333,6 +333,11 @@ 789c6dd2c10ac2300c00d07bbf2234b7229d1be245fc04c5a3201e4615f430059d0711ff5ddb2e6bb236ec90eed134cb5a19d8ef36602af5ecdbfeeac05dda0798d3abebde87e3faa374d3807fa0d633a52d38d8de6f679fe33fc776e196f53cd010188256a3600a292882096246517815ca99884606e18044a3a40d91824820924265a7923a2e8bcd05f33db1173e002913175f2a6be6d3294871a2d95fa00e8a94ee017b69d339d90df1e77c57ea072ede6758 - - + + startButton + stopButton + refreshButton + restartButton + advancedButton + diff --git a/noncore/net/networksetup/interfacesetup.ui b/noncore/net/networksetup/interfacesetup.ui index d367608..3db9a0b 100644 --- a/noncore/net/networksetup/interfacesetup.ui +++ b/noncore/net/networksetup/interfacesetup.ui @@ -11,7 +11,7 @@ 0 0 - 271 + 267 280 @@ -333,4 +333,15 @@ setDisabled(bool) + + autoStart + profileCombo + dhcpCheckBox + leaseTime + ipAddressEdit + subnetMaskEdit + gatewayEdit + firstDNSLineEdit + secondDNSLineEdit + diff --git a/noncore/net/networksetup/mainwindow.ui b/noncore/net/networksetup/mainwindow.ui index 3538aeb..bea999b 100644 --- a/noncore/net/networksetup/mainwindow.ui +++ b/noncore/net/networksetup/mainwindow.ui @@ -11,7 +11,7 @@ 0 0 - 217 + 230 289 @@ -208,28 +208,27 @@ spacing 6 - - Line - + + name - Line1 + Spacer16 orientation - Horizontal + Vertical - - - QLabel - name - TextLabel1 + sizeType + Expanding - - text - Current Profile + + sizeHint + + 20 + 20 + - + QLabel @@ -249,57 +248,48 @@ All - - + + QPushButton + name - Spacer2 + setCurrentProfileButton - orientation - Horizontal + text + &Set Current + + + Line - sizeType - Expanding - - - sizeHint - - 20 - 20 - - - - - name - Spacer16 + Line6 orientation - Vertical + Horizontal + + + Line - sizeType - Expanding + name + Line1 - - sizeHint - - 20 - 20 - + + orientation + Horizontal - - - QPushButton + + + QLabel name - PushButton7 + TextLabel1 text - &Set Current + Current Profile @@ -313,17 +303,34 @@ &Remove - - QPushButton + + QListBox name - newProfileButton + profilesList + + + + + name + Spacer2 - text - &New + orientation + Horizontal - + + sizeType + Expanding + + + sizeHint + + 20 + 20 + + + QLabel @@ -335,12 +342,55 @@ Profiles - - QListBox + + QLayoutWidget name - profilesList + Layout6 + + + margin + 0 + + + spacing + 6 + + + QLabel + + name + TextLabel1_3 + + + text + New Profile + + + + QLineEdit + + name + newProfile + + + + QPushButton + + name + newProfileButton + + + enabled + false + + + text + &Add + + + @@ -369,4 +419,17 @@ 789c6dd2c10ac2300c00d07bbf2234b7229d1be245fc04c5a3201e4615f430059d0711ff5ddb2e6bb236ec90eed134cb5a19d8ef36602af5ecdbfeeac05dda0798d3abebde87e3faa374d3807fa0d633a52d38d8de6f679fe33fc776e196f53cd010188256a3600a292882096246517815ca99884606e18044a3a40d91824820924265a7923a2e8bcd05f33db1173e002913175f2a6be6d3294871a2d95fa00e8a94ee017b69d339d90df1e77c57ea072ede6758 + + tabWidget + connectionList + informationConnectionButton + configureConnectionButton + addConnectionButton + removeConnectionButton + profilesList + setCurrentProfileButton + removeProfileButton + newProfile + newProfileButton + diff --git a/noncore/net/networksetup/mainwindowimp.cpp b/noncore/net/networksetup/mainwindowimp.cpp index e9429e3..e895971 100644 --- a/noncore/net/networksetup/mainwindowimp.cpp +++ b/noncore/net/networksetup/mainwindowimp.cpp @@ -5,11 +5,11 @@ #include "module.h" #include "kprocess.h" -#include "namedialog.h" #include #include #include +#include #include #include #include @@ -37,8 +37,9 @@ MainWindowImp::MainWindowImp(QWidget *parent, const char *name) : MainWindow(par connect(newProfileButton, SIGNAL(clicked()), this, SLOT(addProfile())); connect(removeProfileButton, SIGNAL(clicked()), this, SLOT(removeProfile())); - connect(profilesList, SIGNAL(highlighted(const QString&)), this, SLOT(changeProfile(const QString&))); - + connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile())); + + connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&))); // Load connections. loadModules(QDir::homeDirPath() + "/.networksetup/plugins"); getInterfaceList(); @@ -59,6 +60,7 @@ MainWindowImp::~MainWindowImp(){ // Save profiles. if(profiles.count() > 1){ Config cfg("NetworkSetup"); + cfg.setGroup("General"); cfg.writeEntry("Profiles", profiles.join(" ")); } // Delete Modules and Libraries @@ -372,17 +374,20 @@ void MainWindowImp::updateInterface(Interface *i){ item->setText(3, (i->getStatus()) ? i->getIp() : QString("")); } +void MainWindowImp::newProfileChanged(const QString& newText){ + if(newText.length() > 0) + newProfileButton->setEnabled(true); + else + newProfileButton->setEnabled(false); +} + /** * Adds a new profile to the list of profiles. * Don't add profiles that already exists. * Appends to the list and QStringList */ void MainWindowImp::addProfile(){ - NameDialog foo(this, "namedialog", true); - QString newProfileName = foo.go(); - if(newProfileName.length() == 0) - return; - + QString newProfileName = newProfile->text(); if(profiles.grep(newProfileName).count() > 0){ QMessageBox::information(this, "Can't Add","Profile already exists.", "Ok"); return; @@ -414,8 +419,8 @@ void MainWindowImp::removeProfile(){ * A new profile has been selected, change. * @param newProfile the new profile. */ -void MainWindowImp::changeProfile(const QString& newProfile){ - currentProfileLabel->setText(newProfile); +void MainWindowImp::changeProfile(){ + currentProfileLabel->setText(profilesList->text(profilesList->currentItem())); } // mainwindowimp.cpp diff --git a/noncore/net/networksetup/mainwindowimp.h b/noncore/net/networksetup/mainwindowimp.h index 629b758..c67c161 100644 --- a/noncore/net/networksetup/mainwindowimp.h +++ b/noncore/net/networksetup/mainwindowimp.h @@ -28,9 +28,10 @@ private slots: void addProfile(); void removeProfile(); - void changeProfile(const QString&); + void changeProfile(); void updateInterface(Interface *i); + void newProfileChanged(const QString& newText); private: void loadModules(QString path); diff --git a/noncore/net/networksetup/namedialog.cpp b/noncore/net/networksetup/namedialog.cpp deleted file mode 100644 index c5efa37..0000000 --- a/noncore/net/networksetup/namedialog.cpp +++ b/dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** Form implementation generated from reading ui file 'namedialog.ui' -** -** Created: Sat Dec 15 04:36:20 2001 -** by: The User Interface Compiler (uic) -** -** WARNING! All changes made in this file will be lost! -****************************************************************************/ -#include "namedialog.h" - -#include -#include -#include -#include -#include -#include - -/* - * Constructs a NameDialog which is a child of 'parent', with the - * name 'name' and widget flags set to 'f' - * - * The dialog will by default be modeless, unless you set 'modal' to - * TRUE to construct a modal dialog. - */ -NameDialog::NameDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) - : QDialog( parent, name, modal, fl ) -{ - if ( !name ) - setName( "NameDialog" ); - resize( 176, 65 ); - setCaption( tr( "Enter A Name" ) ); - NameDialogLayout = new QGridLayout( this ); - NameDialogLayout->setSpacing( 6 ); - NameDialogLayout->setMargin( 5 ); - - Name = new QLineEdit( this, "Name" ); - - NameDialogLayout->addMultiCellWidget( Name, 0, 0, 0, 1 ); - - cancel = new QPushButton( this, "Cancel" ); - cancel->setText( tr( "&Cancel" ) ); - - NameDialogLayout->addWidget( cancel, 1, 1 ); - - ok = new QPushButton( this, "ok" ); - ok->setText( tr( "&Ok" ) ); - - NameDialogLayout->addWidget( ok, 1, 0 ); - - connect( ok, SIGNAL( clicked() ), this, SLOT( accept() ) ); - connect( cancel, SIGNAL( clicked() ), this, SLOT( reject() ) ); - connect( Name, SIGNAL(returnPressed () ), this, SLOT(accept() ) ); -} - -QString NameDialog::go(){ - if( exec() ) //pressed OK - return (Name->text()); - else //pressed cancel - return QString(); -} - diff --git a/noncore/net/networksetup/namedialog.h b/noncore/net/networksetup/namedialog.h deleted file mode 100644 index 4c4e149..0000000 --- a/noncore/net/networksetup/namedialog.h +++ b/dev/null @@ -1,36 +0,0 @@ -/**************************************************************************** -** Form interface generated from reading ui file 'namedialog.ui' -** -** Created: Sat Dec 15 04:36:14 2001 -** by: The User Interface Compiler (uic) -** -** WARNING! All changes made in this file will be lost! -****************************************************************************/ -#ifndef NAMEDIALOG_H -#define NAMEDIALOG_H - -#include -#include -class QVBoxLayout; -class QHBoxLayout; -class QGridLayout; -class QLineEdit; -class QPushButton; - -class NameDialog : public QDialog -{ - Q_OBJECT - -public: - NameDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); - - QLineEdit* Name; - QPushButton* cancel; - QPushButton* ok; - QString go(); - -protected: - QGridLayout* NameDialogLayout; -}; - -#endif // NAMEDIALOG_H diff --git a/noncore/net/networksetup/networksetup.pro b/noncore/net/networksetup/networksetup.pro index e146eb4..ba70180 100644 --- a/noncore/net/networksetup/networksetup.pro +++ b/noncore/net/networksetup/networksetup.pro @@ -1,8 +1,8 @@ TEMPLATE = app #CONFIG = qt warn_on debug CONFIG = qt warn_on release -HEADERS = mainwindowimp.h addconnectionimp.h interface.h interfaceinformationimp.h interfacesetupimp.h interfaces.h defaultmodule.h kprocctrl.h module.h kprocess.h namedialog.h -SOURCES = main.cpp namedialog.cpp mainwindowimp.cpp addconnectionimp.cpp interface.cpp interfaceinformationimp.cpp interfacesetupimp.cpp kprocctrl.cpp kprocess.cpp interfaces.cpp +HEADERS = mainwindowimp.h addconnectionimp.h interface.h interfaceinformationimp.h interfacesetupimp.h interfaces.h defaultmodule.h kprocctrl.h module.h kprocess.h +SOURCES = main.cpp mainwindowimp.cpp addconnectionimp.cpp interface.cpp interfaceinformationimp.cpp interfacesetupimp.cpp kprocctrl.cpp kprocess.cpp interfaces.cpp #INCLUDEPATH += $(QPEDIR)/include #DEPENDPATH += $(QPEDIR)/include LIBS += -lqpe diff --git a/noncore/net/networksetup/systemadvanced.ui b/noncore/net/networksetup/systemadvanced.ui index 6ea192c..cd7ac61 100644 --- a/noncore/net/networksetup/systemadvanced.ui +++ b/noncore/net/networksetup/systemadvanced.ui @@ -11,7 +11,7 @@ 0 0 - 222 + 218 289 @@ -393,51 +393,4 @@ - - name - Spacer15 - - - orientation - Vertical - - - sizeType - Expanding - - - sizeHint - - 20 - 20 - - - - - - - - - - - QWidget -
qwidget.h
- - 100 - 100 - - 0 - - 7 - 7 - - image0 -
-
- - - image0 - 789c6dd2c10ac2300c00d07bbf2234b7229d1be245fc04c5a3201e4615f430059d0711ff5ddb2e6bb236ec90eed134cb5a19d8ef36602af5ecdbfeeac05dda0798d3abebde87e3faa374d3807fa0d633a52d38d8de6f679fe33fc776e196f53cd010188256a3600a292882096246517815ca99884606e18044a3a40d91824820924265a7923a2e8bcd05f33db1173e002913175f2a6be6d3294871a2d95fa00e8a94ee017b69d339d90df1e77c57ea072ede6758 - - - + \ No newline at end of file diff --git a/noncore/settings/networksettings/interfaceinformation.ui b/noncore/settings/networksettings/interfaceinformation.ui index 8b6280d..76af19c 100644 --- a/noncore/settings/networksettings/interfaceinformation.ui +++ b/noncore/settings/networksettings/interfaceinformation.ui @@ -11,7 +11,7 @@ 0 0 - 203 + 199 244 @@ -333,6 +333,11 @@ 789c6dd2c10ac2300c00d07bbf2234b7229d1be245fc04c5a3201e4615f430059d0711ff5ddb2e6bb236ec90eed134cb5a19d8ef36602af5ecdbfeeac05dda0798d3abebde87e3faa374d3807fa0d633a52d38d8de6f679fe33fc776e196f53cd010188256a3600a292882096246517815ca99884606e18044a3a40d91824820924265a7923a2e8bcd05f33db1173e002913175f2a6be6d3294871a2d95fa00e8a94ee017b69d339d90df1e77c57ea072ede6758 - - + + startButton + stopButton + refreshButton + restartButton + advancedButton + diff --git a/noncore/settings/networksettings/interfacesetup.ui b/noncore/settings/networksettings/interfacesetup.ui index d367608..3db9a0b 100644 --- a/noncore/settings/networksettings/interfacesetup.ui +++ b/noncore/settings/networksettings/interfacesetup.ui @@ -11,7 +11,7 @@ 0 0 - 271 + 267 280 @@ -333,4 +333,15 @@ setDisabled(bool) + + autoStart + profileCombo + dhcpCheckBox + leaseTime + ipAddressEdit + subnetMaskEdit + gatewayEdit + firstDNSLineEdit + secondDNSLineEdit + diff --git a/noncore/settings/networksettings/mainwindow.ui b/noncore/settings/networksettings/mainwindow.ui index 3538aeb..bea999b 100644 --- a/noncore/settings/networksettings/mainwindow.ui +++ b/noncore/settings/networksettings/mainwindow.ui @@ -11,7 +11,7 @@ 0 0 - 217 + 230 289 @@ -208,28 +208,27 @@ spacing 6 - - Line - + + name - Line1 + Spacer16 orientation - Horizontal + Vertical - - - QLabel - name - TextLabel1 + sizeType + Expanding - - text - Current Profile + + sizeHint + + 20 + 20 + - + QLabel @@ -249,57 +248,48 @@ All - - + + QPushButton + name - Spacer2 + setCurrentProfileButton - orientation - Horizontal + text + &Set Current + + + Line - sizeType - Expanding - - - sizeHint - - 20 - 20 - - - - - name - Spacer16 + Line6 orientation - Vertical + Horizontal + + + Line - sizeType - Expanding + name + Line1 - - sizeHint - - 20 - 20 - + + orientation + Horizontal - - - QPushButton + + + QLabel name - PushButton7 + TextLabel1 text - &Set Current + Current Profile @@ -313,17 +303,34 @@ &Remove - - QPushButton + + QListBox name - newProfileButton + profilesList + + + + + name + Spacer2 - text - &New + orientation + Horizontal - + + sizeType + Expanding + + + sizeHint + + 20 + 20 + + + QLabel @@ -335,12 +342,55 @@ Profiles - - QListBox + + QLayoutWidget name - profilesList + Layout6 + + + margin + 0 + + + spacing + 6 + + + QLabel + + name + TextLabel1_3 + + + text + New Profile + + + + QLineEdit + + name + newProfile + + + + QPushButton + + name + newProfileButton + + + enabled + false + + + text + &Add + + + @@ -369,4 +419,17 @@ 789c6dd2c10ac2300c00d07bbf2234b7229d1be245fc04c5a3201e4615f430059d0711ff5ddb2e6bb236ec90eed134cb5a19d8ef36602af5ecdbfeeac05dda0798d3abebde87e3faa374d3807fa0d633a52d38d8de6f679fe33fc776e196f53cd010188256a3600a292882096246517815ca99884606e18044a3a40d91824820924265a7923a2e8bcd05f33db1173e002913175f2a6be6d3294871a2d95fa00e8a94ee017b69d339d90df1e77c57ea072ede6758 + + tabWidget + connectionList + informationConnectionButton + configureConnectionButton + addConnectionButton + removeConnectionButton + profilesList + setCurrentProfileButton + removeProfileButton + newProfile + newProfileButton + diff --git a/noncore/settings/networksettings/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindowimp.cpp index e9429e3..e895971 100644 --- a/noncore/settings/networksettings/mainwindowimp.cpp +++ b/noncore/settings/networksettings/mainwindowimp.cpp @@ -5,11 +5,11 @@ #include "module.h" #include "kprocess.h" -#include "namedialog.h" #include #include #include +#include #include #include #include @@ -37,8 +37,9 @@ MainWindowImp::MainWindowImp(QWidget *parent, const char *name) : MainWindow(par connect(newProfileButton, SIGNAL(clicked()), this, SLOT(addProfile())); connect(removeProfileButton, SIGNAL(clicked()), this, SLOT(removeProfile())); - connect(profilesList, SIGNAL(highlighted(const QString&)), this, SLOT(changeProfile(const QString&))); - + connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile())); + + connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&))); // Load connections. loadModules(QDir::homeDirPath() + "/.networksetup/plugins"); getInterfaceList(); @@ -59,6 +60,7 @@ MainWindowImp::~MainWindowImp(){ // Save profiles. if(profiles.count() > 1){ Config cfg("NetworkSetup"); + cfg.setGroup("General"); cfg.writeEntry("Profiles", profiles.join(" ")); } // Delete Modules and Libraries @@ -372,17 +374,20 @@ void MainWindowImp::updateInterface(Interface *i){ item->setText(3, (i->getStatus()) ? i->getIp() : QString("")); } +void MainWindowImp::newProfileChanged(const QString& newText){ + if(newText.length() > 0) + newProfileButton->setEnabled(true); + else + newProfileButton->setEnabled(false); +} + /** * Adds a new profile to the list of profiles. * Don't add profiles that already exists. * Appends to the list and QStringList */ void MainWindowImp::addProfile(){ - NameDialog foo(this, "namedialog", true); - QString newProfileName = foo.go(); - if(newProfileName.length() == 0) - return; - + QString newProfileName = newProfile->text(); if(profiles.grep(newProfileName).count() > 0){ QMessageBox::information(this, "Can't Add","Profile already exists.", "Ok"); return; @@ -414,8 +419,8 @@ void MainWindowImp::removeProfile(){ * A new profile has been selected, change. * @param newProfile the new profile. */ -void MainWindowImp::changeProfile(const QString& newProfile){ - currentProfileLabel->setText(newProfile); +void MainWindowImp::changeProfile(){ + currentProfileLabel->setText(profilesList->text(profilesList->currentItem())); } // mainwindowimp.cpp diff --git a/noncore/settings/networksettings/mainwindowimp.h b/noncore/settings/networksettings/mainwindowimp.h index 629b758..c67c161 100644 --- a/noncore/settings/networksettings/mainwindowimp.h +++ b/noncore/settings/networksettings/mainwindowimp.h @@ -28,9 +28,10 @@ private slots: void addProfile(); void removeProfile(); - void changeProfile(const QString&); + void changeProfile(); void updateInterface(Interface *i); + void newProfileChanged(const QString& newText); private: void loadModules(QString path); diff --git a/noncore/settings/networksettings/namedialog.cpp b/noncore/settings/networksettings/namedialog.cpp deleted file mode 100644 index c5efa37..0000000 --- a/noncore/settings/networksettings/namedialog.cpp +++ b/dev/null @@ -1,61 +0,0 @@ -/**************************************************************************** -** Form implementation generated from reading ui file 'namedialog.ui' -** -** Created: Sat Dec 15 04:36:20 2001 -** by: The User Interface Compiler (uic) -** -** WARNING! All changes made in this file will be lost! -****************************************************************************/ -#include "namedialog.h" - -#include -#include -#include -#include -#include -#include - -/* - * Constructs a NameDialog which is a child of 'parent', with the - * name 'name' and widget flags set to 'f' - * - * The dialog will by default be modeless, unless you set 'modal' to - * TRUE to construct a modal dialog. - */ -NameDialog::NameDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) - : QDialog( parent, name, modal, fl ) -{ - if ( !name ) - setName( "NameDialog" ); - resize( 176, 65 ); - setCaption( tr( "Enter A Name" ) ); - NameDialogLayout = new QGridLayout( this ); - NameDialogLayout->setSpacing( 6 ); - NameDialogLayout->setMargin( 5 ); - - Name = new QLineEdit( this, "Name" ); - - NameDialogLayout->addMultiCellWidget( Name, 0, 0, 0, 1 ); - - cancel = new QPushButton( this, "Cancel" ); - cancel->setText( tr( "&Cancel" ) ); - - NameDialogLayout->addWidget( cancel, 1, 1 ); - - ok = new QPushButton( this, "ok" ); - ok->setText( tr( "&Ok" ) ); - - NameDialogLayout->addWidget( ok, 1, 0 ); - - connect( ok, SIGNAL( clicked() ), this, SLOT( accept() ) ); - connect( cancel, SIGNAL( clicked() ), this, SLOT( reject() ) ); - connect( Name, SIGNAL(returnPressed () ), this, SLOT(accept() ) ); -} - -QString NameDialog::go(){ - if( exec() ) //pressed OK - return (Name->text()); - else //pressed cancel - return QString(); -} - diff --git a/noncore/settings/networksettings/namedialog.h b/noncore/settings/networksettings/namedialog.h deleted file mode 100644 index 4c4e149..0000000 --- a/noncore/settings/networksettings/namedialog.h +++ b/dev/null @@ -1,36 +0,0 @@ -/**************************************************************************** -** Form interface generated from reading ui file 'namedialog.ui' -** -** Created: Sat Dec 15 04:36:14 2001 -** by: The User Interface Compiler (uic) -** -** WARNING! All changes made in this file will be lost! -****************************************************************************/ -#ifndef NAMEDIALOG_H -#define NAMEDIALOG_H - -#include -#include -class QVBoxLayout; -class QHBoxLayout; -class QGridLayout; -class QLineEdit; -class QPushButton; - -class NameDialog : public QDialog -{ - Q_OBJECT - -public: - NameDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); - - QLineEdit* Name; - QPushButton* cancel; - QPushButton* ok; - QString go(); - -protected: - QGridLayout* NameDialogLayout; -}; - -#endif // NAMEDIALOG_H diff --git a/noncore/settings/networksettings/networksetup.pro b/noncore/settings/networksettings/networksetup.pro index e146eb4..ba70180 100644 --- a/noncore/settings/networksettings/networksetup.pro +++ b/noncore/settings/networksettings/networksetup.pro @@ -1,8 +1,8 @@ TEMPLATE = app #CONFIG = qt warn_on debug CONFIG = qt warn_on release -HEADERS = mainwindowimp.h addconnectionimp.h interface.h interfaceinformationimp.h interfacesetupimp.h interfaces.h defaultmodule.h kprocctrl.h module.h kprocess.h namedialog.h -SOURCES = main.cpp namedialog.cpp mainwindowimp.cpp addconnectionimp.cpp interface.cpp interfaceinformationimp.cpp interfacesetupimp.cpp kprocctrl.cpp kprocess.cpp interfaces.cpp +HEADERS = mainwindowimp.h addconnectionimp.h interface.h interfaceinformationimp.h interfacesetupimp.h interfaces.h defaultmodule.h kprocctrl.h module.h kprocess.h +SOURCES = main.cpp mainwindowimp.cpp addconnectionimp.cpp interface.cpp interfaceinformationimp.cpp interfacesetupimp.cpp kprocctrl.cpp kprocess.cpp interfaces.cpp #INCLUDEPATH += $(QPEDIR)/include #DEPENDPATH += $(QPEDIR)/include LIBS += -lqpe diff --git a/noncore/settings/networksettings/systemadvanced.ui b/noncore/settings/networksettings/systemadvanced.ui index 6ea192c..cd7ac61 100644 --- a/noncore/settings/networksettings/systemadvanced.ui +++ b/noncore/settings/networksettings/systemadvanced.ui @@ -11,7 +11,7 @@ 0 0 - 222 + 218 289 @@ -393,51 +393,4 @@ - - name - Spacer15 - - - orientation - Vertical - - - sizeType - Expanding - - - sizeHint - - 20 - 20 - - - - - - - - - - - QWidget -
qwidget.h
- - 100 - 100 - - 0 - - 7 - 7 - - image0 -
-
- - - image0 - 789c6dd2c10ac2300c00d07bbf2234b7229d1be245fc04c5a3201e4615f430059d0711ff5ddb2e6bb236ec90eed134cb5a19d8ef36602af5ecdbfeeac05dda0798d3abebde87e3faa374d3807fa0d633a52d38d8de6f679fe33fc776e196f53cd010188256a3600a292882096246517815ca99884606e18044a3a40d91824820924265a7923a2e8bcd05f33db1173e002913175f2a6be6d3294871a2d95fa00e8a94ee017b69d339d90df1e77c57ea072ede6758 - - - + \ No newline at end of file -- cgit v0.9.0.2