mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-23 05:45:35 +08:00
refs #198 , using settings with GUI
This commit is contained in:
@@ -424,7 +424,7 @@ private slots:
|
|||||||
void alterTrafficServer();
|
void alterTrafficServer();
|
||||||
|
|
||||||
//! \brief Network settings have been changed
|
//! \brief Network settings have been changed
|
||||||
void changedSettings();
|
void changedSettings(uint typeValue);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Update timer
|
* \brief Update timer
|
||||||
|
|||||||
@@ -454,7 +454,7 @@ QStatusBar QLabel {
|
|||||||
<enum>QFrame::NoFrame</enum>
|
<enum>QFrame::NoFrame</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>4</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="pg_StatusPage">
|
<widget class="QWidget" name="pg_StatusPage">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
@@ -554,7 +554,7 @@ QStatusBar QLabel {
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QToolBox" name="tb_StatusPage">
|
<widget class="QToolBox" name="tb_StatusPage">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>1</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<property name="tabSpacing">
|
<property name="tabSpacing">
|
||||||
<number>3</number>
|
<number>3</number>
|
||||||
@@ -564,8 +564,8 @@ QStatusBar QLabel {
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>90</width>
|
<width>326</width>
|
||||||
<height>59</height>
|
<height>267</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<attribute name="label">
|
<attribute name="label">
|
||||||
@@ -607,8 +607,8 @@ QStatusBar QLabel {
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>90</width>
|
<width>326</width>
|
||||||
<height>55</height>
|
<height>267</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<attribute name="label">
|
<attribute name="label">
|
||||||
|
|||||||
@@ -86,8 +86,9 @@ void MainWindow::alterTrafficServer()
|
|||||||
/*
|
/*
|
||||||
* Settings did changed
|
* Settings did changed
|
||||||
*/
|
*/
|
||||||
void MainWindow::changedSettings()
|
void MainWindow::changedSettings(uint typeValue)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(typeValue);
|
||||||
this->reloadSettings();
|
this->reloadSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -105,7 +106,6 @@ void MainWindow::updateGuiSelectedServerTextboxes(const CServer &server)
|
|||||||
this->ui->le_SettingsTnCsPassword->setText(server.getUser().getPassword());
|
this->ui->le_SettingsTnCsPassword->setText(server.getUser().getPassword());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Server settings from textboxes
|
* Server settings from textboxes
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user