-rw-r--r-- | core/launcher/mediummountgui.cpp | 26 | ||||
-rw-r--r-- | core/launcher/mediummountgui.h | 5 |
2 files changed, 28 insertions, 3 deletions
diff --git a/core/launcher/mediummountgui.cpp b/core/launcher/mediummountgui.cpp index 2454efa..8307eb6 100644 --- a/core/launcher/mediummountgui.cpp +++ b/core/launcher/mediummountgui.cpp | |||
@@ -42,47 +42,66 @@ void MediumMountGui::readConfig(){ | |||
42 | checkagain = cfg.readBoolEntry("check", false); | 42 | checkagain = cfg.readBoolEntry("check", false); |
43 | 43 | ||
44 | cfg.setGroup("mimetypes"); | 44 | cfg.setGroup("mimetypes"); |
45 | checkmimeaudio = cfg.readBoolEntry("audio", false); | 45 | checkmimeaudio = cfg.readBoolEntry("audio", false); |
46 | checkmimeimage = cfg.readBoolEntry("image", true); | 46 | checkmimeimage = cfg.readBoolEntry("image", true); |
47 | checkmimetext = cfg.readBoolEntry("text", true); | 47 | checkmimetext = cfg.readBoolEntry("text", true); |
48 | checkmimevideo = cfg.readBoolEntry("video", true); | 48 | checkmimevideo = cfg.readBoolEntry("video", true); |
49 | 49 | ||
50 | cfg.setGroup("dirs"); | 50 | cfg.setGroup("dirs"); |
51 | limittodirs = cfg.readEntry("dirs", "/"); | 51 | limittodirs = cfg.readEntry("dirs", "/"); |
52 | } | 52 | } |
53 | 53 | ||
54 | bool MediumMountGui::check() { | 54 | bool MediumMountGui::check() { |
55 | return checkagain; | 55 | return checkagain; |
56 | } | 56 | } |
57 | 57 | ||
58 | QStringList MediumMountGui::dirs() { | ||
59 | QStringList list = QStringList::split(",", limittodirs ); | ||
60 | return list; | ||
61 | } | ||
58 | 62 | ||
59 | void MediumMountGui::writeConfig() { | 63 | void MediumMountGui::writeConfig() { |
60 | 64 | ||
61 | OConfig cfg (mediumPath +"/.opiestorage.cf"); | 65 | OConfig cfg (mediumPath +"/.opiestorage.cf"); |
62 | cfg.setGroup("main"); | 66 | cfg.setGroup("main"); |
63 | cfg.writeEntry("check", AskBox->isChecked() ); | 67 | cfg.writeEntry("check", AskBox->isChecked() ); |
64 | 68 | ||
65 | cfg.setGroup("mimetypes"); | 69 | cfg.setGroup("mimetypes"); |
66 | cfg.writeEntry("audio", CheckBoxAudio->isChecked() ); | 70 | cfg.writeEntry("audio", CheckBoxAudio->isChecked() ); |
67 | cfg.writeEntry("image",CheckBoxImage->isChecked() ); | 71 | cfg.writeEntry("image",CheckBoxImage->isChecked() ); |
68 | cfg.writeEntry("text",CheckBoxImage->isChecked() ); | 72 | cfg.writeEntry("text",CheckBoxImage->isChecked() ); |
69 | cfg.writeEntry("video",CheckBoxVideo->isChecked() ); | 73 | cfg.writeEntry("video",CheckBoxVideo->isChecked() ); |
70 | 74 | ||
71 | cfg.setGroup("dirs"); | 75 | cfg.setGroup("dirs"); |
72 | cfg.writeEntry("dirs", "/"); | 76 | cfg.writeEntry("dirs", "/"); |
77 | |||
78 | |||
79 | if (checkmimeaudio) { | ||
80 | mimeTypeList += ("audio//*"); | ||
81 | } | ||
82 | if (checkmimetext) { | ||
83 | mimeTypeList += ("text//*"); | ||
84 | } | ||
85 | if (checkmimeaudio) { | ||
86 | mimeTypeList += ("video//*"); | ||
87 | } | ||
88 | if (checkmimeaudio) { | ||
89 | mimeTypeList += ("image//*"); | ||
90 | } | ||
91 | |||
73 | } | 92 | } |
74 | 93 | ||
75 | void MediumMountGui::startGui() { | 94 | void MediumMountGui::startGui() { |
76 | 95 | ||
77 | QPixmap image = Resource::loadPixmap( "HelpBrowser"); | 96 | QPixmap image = Resource::loadPixmap( "HelpBrowser"); |
78 | 97 | ||
79 | Text_2 = new QLabel( this ); | 98 | Text_2 = new QLabel( this ); |
80 | Text_2->setGeometry( QRect( 10, 15, 40, 40 ) ); | 99 | Text_2->setGeometry( QRect( 10, 15, 40, 40 ) ); |
81 | Text_2->setPixmap( image ); | 100 | Text_2->setPixmap( image ); |
82 | 101 | ||
83 | Text = new QLabel( this, "Text" ); | 102 | Text = new QLabel( this, "Text" ); |
84 | Text->setGeometry( QRect( 55, 11, this->width()-50, 50 ) ); | 103 | Text->setGeometry( QRect( 55, 11, this->width()-50, 50 ) ); |
85 | Text->setText( tr( "A <b>storage medium</b> was inserted. Should it be scanned for media files?" ) ); | 104 | Text->setText( tr( "A <b>storage medium</b> was inserted. Should it be scanned for media files?" ) ); |
86 | 105 | ||
87 | // media box | 106 | // media box |
88 | GroupBox1 = new QGroupBox( this, "GroupBox1" ); | 107 | GroupBox1 = new QGroupBox( this, "GroupBox1" ); |
@@ -144,23 +163,28 @@ void MediumMountGui::startGui() { | |||
144 | 163 | ||
145 | quit_2 = new QPushButton( this ); | 164 | quit_2 = new QPushButton( this ); |
146 | quit_2->setGeometry( QRect((this->width()/2) , 260, 80, 22 ) ); | 165 | quit_2->setGeometry( QRect((this->width()/2) , 260, 80, 22 ) ); |
147 | quit_2->setText( tr( "No" ) ); | 166 | quit_2->setText( tr( "No" ) ); |
148 | 167 | ||
149 | QObject::connect( (QObject*)quit, SIGNAL( clicked() ), this, SLOT(yesPressed() ) ); | 168 | QObject::connect( (QObject*)quit, SIGNAL( clicked() ), this, SLOT(yesPressed() ) ); |
150 | QObject::connect( (QObject*)quit_2, SIGNAL( clicked() ), this, SLOT(noPressed() ) ); | 169 | QObject::connect( (QObject*)quit_2, SIGNAL( clicked() ), this, SLOT(noPressed() ) ); |
151 | 170 | ||
152 | 171 | ||
153 | } | 172 | } |
154 | 173 | ||
155 | void MediumMountGui::yesPressed() { | 174 | void MediumMountGui::yesPressed() { |
156 | writeConfig(); | 175 | writeConfig(); |
157 | // and do something | 176 | // and do something |
158 | } | 177 | } |
159 | 178 | ||
179 | |||
180 | QStringList MediumMountGui::mimeTypes(){ | ||
181 | return mimeTypeList; | ||
182 | } | ||
183 | |||
160 | void MediumMountGui::noPressed() { | 184 | void MediumMountGui::noPressed() { |
161 | close(); | 185 | close(); |
162 | } | 186 | } |
163 | 187 | ||
164 | MediumMountGui::~MediumMountGui(){ | 188 | MediumMountGui::~MediumMountGui(){ |
165 | } | 189 | } |
166 | 190 | ||
diff --git a/core/launcher/mediummountgui.h b/core/launcher/mediummountgui.h index 700a922..a7f3701 100644 --- a/core/launcher/mediummountgui.h +++ b/core/launcher/mediummountgui.h | |||
@@ -25,39 +25,40 @@ protected: | |||
25 | QPushButton* quit_2; | 25 | QPushButton* quit_2; |
26 | QLabel* DirSelectText_2; | 26 | QLabel* DirSelectText_2; |
27 | QLineEdit* LineEdit1; | 27 | QLineEdit* LineEdit1; |
28 | QPushButton* PushButton3; | 28 | QPushButton* PushButton3; |
29 | QLabel* DirSelectText; | 29 | QLabel* DirSelectText; |
30 | QLabel* Text_2; | 30 | QLabel* Text_2; |
31 | QLabel* Text; | 31 | QLabel* Text; |
32 | QGroupBox* GroupBox1; | 32 | QGroupBox* GroupBox1; |
33 | QCheckBox* CheckBoxAudio; | 33 | QCheckBox* CheckBoxAudio; |
34 | QCheckBox* CheckBoxImage; | 34 | QCheckBox* CheckBoxImage; |
35 | QCheckBox* CheckBoxText; | 35 | QCheckBox* CheckBoxText; |
36 | QCheckBox* CheckBoxVideo; | 36 | QCheckBox* CheckBoxVideo; |
37 | QCheckBox* AskBox; | 37 | QCheckBox* AskBox; |
38 | 38 | ||
39 | public: | 39 | public: |
40 | bool check(); | 40 | bool check(); |
41 | 41 | QStringList mimeTypes(); | |
42 | QStringList dirs(); | ||
42 | private: | 43 | private: |
43 | void startGui(); | 44 | void startGui(); |
44 | void readConfig(); | 45 | void readConfig(); |
45 | void writeConfig(); | 46 | void writeConfig(); |
46 | 47 | ||
47 | private slots: | 48 | private slots: |
48 | void yesPressed(); | 49 | void yesPressed(); |
49 | void noPressed(); | 50 | void noPressed(); |
50 | private: | 51 | private: |
51 | QString mediumPath; | 52 | QString mediumPath; |
52 | 53 | ||
53 | bool checkagain; | 54 | bool checkagain; |
54 | bool checkmimeaudio; | 55 | bool checkmimeaudio; |
55 | bool checkmimeimage; | 56 | bool checkmimeimage; |
56 | bool checkmimetext; | 57 | bool checkmimetext; |
57 | bool checkmimevideo; | 58 | bool checkmimevideo; |
58 | QString limittodirs; | 59 | QString limittodirs; |
59 | 60 | QStringList mimeTypeList; | |
60 | 61 | ||
61 | }; | 62 | }; |
62 | 63 | ||
63 | #endif \ No newline at end of file | 64 | #endif \ No newline at end of file |