summaryrefslogtreecommitdiff
path: root/noncore/settings/mediummount/mediumwidget.h
Unidiff
Diffstat (limited to 'noncore/settings/mediummount/mediumwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/mediummount/mediumwidget.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/settings/mediummount/mediumwidget.h b/noncore/settings/mediummount/mediumwidget.h
index 28ae369..ae5c5dc 100644
--- a/noncore/settings/mediummount/mediumwidget.h
+++ b/noncore/settings/mediummount/mediumwidget.h
@@ -14,69 +14,71 @@ class QCheckBox;
14class QPushButton; 14class QPushButton;
15class QVBoxLayout; 15class QVBoxLayout;
16class QHBoxLayout; 16class QHBoxLayout;
17class QGroupBox; 17class QGroupBox;
18class QVBox; 18class QVBox;
19class QHBox; 19class QHBox;
20class QLineEdit; 20class QLineEdit;
21class QComboBox; 21class QComboBox;
22 22
23namespace MediumMountSetting { 23namespace MediumMountSetting {
24 24
25 class MediumMountWidget : public QWidget { 25 class MediumMountWidget : public QWidget {
26 Q_OBJECT 26 Q_OBJECT
27 public: 27 public:
28 MediumMountWidget(const QString&, const QPixmap &, QWidget *parent, const char *name = 0 ); 28 MediumMountWidget(const QString&, const QPixmap &, QWidget *parent, const char *name = 0 );
29 ~MediumMountWidget(); 29 ~MediumMountWidget();
30 30
31 31
32 void writeConfig(); 32 void writeConfig();
33 33
34 private slots: 34 private slots:
35 void slotAdd(); 35 void slotAdd();
36 void slotRemove(); 36 void slotRemove();
37 void slotStateChanged(); 37 void slotStateChanged();
38 void slotScanAllChanged(int);
38 39
39 private: 40 private:
40 void readConfig(); 41 void readConfig();
41 void initGUI(); 42 void initGUI();
42 43
43 bool m_dirty : 1; 44 bool m_dirty : 1;
44 45
45 class MediumMountWidgetPrivate; 46 class MediumMountWidgetPrivate;
46 MediumMountWidgetPrivate *d; 47 MediumMountWidgetPrivate *d;
47 48
48 QString m_path; 49 QString m_path;
49 50
50 Config *m_config; 51 Config *m_config;
51 52
52 QHBox *m_infoBox; 53 QHBox *m_infoBox;
53 QLabel *m_label; 54 QLabel *m_label;
54 QLabel *m_desc; 55 QLabel *m_desc;
55 56
56 QPushButton *m_add; 57 QPushButton *m_add;
57 QComboBox *m_subList; 58 QComboBox *m_subList;
58 QPushButton *m_del; 59 QPushButton *m_del;
59 60
60 QVBoxLayout *m_box; 61 QVBoxLayout *m_box;
61 QGridLayout *m_checks; 62 QGridLayout *m_checks;
62 63
63 QGroupBox *m_group; 64 QGroupBox *m_group;
64 QCheckBox *m_all; 65 QCheckBox *m_all;
65 QCheckBox *m_audio; 66 QCheckBox *m_audio;
66 QCheckBox *m_image; 67 QCheckBox *m_image;
67 QCheckBox *m_text; 68 QCheckBox *m_text;
68 QCheckBox *m_video; 69 QCheckBox *m_video;
69 70
71 QCheckBox *m_scan_all_check;
70 QCheckBox *m_always; 72 QCheckBox *m_always;
71 //QCheckBox *m_yesNo; 73 //QCheckBox *m_yesNo;
72 74
73 QHBox *m_hboxAdd; 75 QHBox *m_hboxAdd;
74 76
75 QLabel *m_lblPath; 77 QLabel *m_lblPath;
76 //////////////// 78 ////////////////
77 79
78 80
79 81
80 }; 82 };
81}; 83};
82#endif 84#endif