summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/mediummount/mainwindow.cc7
-rw-r--r--noncore/settings/mediummount/mainwindow.h1
2 files changed, 8 insertions, 0 deletions
diff --git a/noncore/settings/mediummount/mainwindow.cc b/noncore/settings/mediummount/mainwindow.cc
index bfd1e21..6b37cff 100644
--- a/noncore/settings/mediummount/mainwindow.cc
+++ b/noncore/settings/mediummount/mainwindow.cc
@@ -44,32 +44,39 @@ void MainWindow::init()
44 QListIterator<FileSystem> it( fs ); 44 QListIterator<FileSystem> it( fs );
45 MediumMountWidget *wid; 45 MediumMountWidget *wid;
46 for( ; it.current(); ++it ){ 46 for( ; it.current(); ++it ){
47 if( (*it)->isRemovable() ){ 47 if( (*it)->isRemovable() ){
48 wid = new MediumMountWidget((*it)->path(), QPixmap(), m_tab ); 48 wid = new MediumMountWidget((*it)->path(), QPixmap(), m_tab );
49 m_mediums.append( wid ); 49 m_mediums.append( wid );
50 m_tab->addTab( wid, (*it)->name() ); 50 m_tab->addTab( wid, (*it)->name() );
51 } 51 }
52 } 52 }
53} 53}
54 54
55void MainWindow::accept() 55void MainWindow::accept()
56{ 56{
57 m_global->writeConfig(); 57 m_global->writeConfig();
58 58
59 MediumMountWidget *confWidget; 59 MediumMountWidget *confWidget;
60 for ( confWidget = m_mediums.first(); confWidget != 0; 60 for ( confWidget = m_mediums.first(); confWidget != 0;
61 confWidget = m_mediums.next() ) { 61 confWidget = m_mediums.next() ) {
62 confWidget->writeConfig(); 62 confWidget->writeConfig();
63 } 63 }
64 64
65 QDialog::accept(); 65 QDialog::accept();
66} 66}
67 67
68void MainWindow::done ( int r )
69{
70 QDialog::done( r );
71 close ();
72}
73
74
68void MainWindow::slotGlobalChanged(int ) 75void MainWindow::slotGlobalChanged(int )
69{ 76{
70 77
71} 78}
72void MainWindow::slotCheckingChanged(int ) 79void MainWindow::slotCheckingChanged(int )
73{ 80{
74 81
75} 82}
diff --git a/noncore/settings/mediummount/mainwindow.h b/noncore/settings/mediummount/mainwindow.h
index 9c648ef..71dac79 100644
--- a/noncore/settings/mediummount/mainwindow.h
+++ b/noncore/settings/mediummount/mainwindow.h
@@ -1,34 +1,35 @@
1 1
2 2
3#ifndef MediumMountMainwindow_h 3#ifndef MediumMountMainwindow_h
4#define MediumMountMainwindow_h 4#define MediumMountMainwindow_h
5 5
6#include <qlist.h> 6#include <qlist.h>
7#include <qdialog.h> 7#include <qdialog.h>
8 8
9class QVBoxLayout; 9class QVBoxLayout;
10class QTabWidget; 10class QTabWidget;
11 11
12namespace MediumMountSetting { 12namespace MediumMountSetting {
13 class MediumMountWidget; 13 class MediumMountWidget;
14 class MediumGlobalWidget; 14 class MediumGlobalWidget;
15 class MainWindow : public QDialog { 15 class MainWindow : public QDialog {
16 Q_OBJECT 16 Q_OBJECT
17 public: 17 public:
18 MainWindow(QWidget *parent = 0, const char *name = 0 , bool modal = FALSE, WFlags = 0); 18 MainWindow(QWidget *parent = 0, const char *name = 0 , bool modal = FALSE, WFlags = 0);
19 ~MainWindow(); 19 ~MainWindow();
20 20
21 private slots: 21 private slots:
22 void slotGlobalChanged(int ); 22 void slotGlobalChanged(int );
23 void slotCheckingChanged(int ); 23 void slotCheckingChanged(int );
24 void accept(); 24 void accept();
25 void done( int );
25 private: 26 private:
26 void init(); 27 void init();
27 QTabWidget *m_tab; 28 QTabWidget *m_tab;
28 QVBoxLayout *m_lay; 29 QVBoxLayout *m_lay;
29 MediumGlobalWidget *m_global; 30 MediumGlobalWidget *m_global;
30 QList<MediumMountWidget> m_mediums; 31 QList<MediumMountWidget> m_mediums;
31 }; 32 };
32}; 33};
33 34
34#endif 35#endif