-rw-r--r-- | core/launcher/mediummountgui.cpp | 65 | ||||
-rw-r--r-- | core/launcher/mediummountgui.h | 7 |
2 files changed, 57 insertions, 15 deletions
diff --git a/core/launcher/mediummountgui.cpp b/core/launcher/mediummountgui.cpp index 82c2d66..f193024 100644 --- a/core/launcher/mediummountgui.cpp +++ b/core/launcher/mediummountgui.cpp | |||
@@ -37,102 +37,126 @@ MediumMountGui::MediumMountGui( const QString &path ,QWidget* parent, const cha | |||
37 | 37 | ||
38 | void MediumMountGui::readConfig(){ | 38 | void MediumMountGui::readConfig(){ |
39 | 39 | ||
40 | OConfig cfg (mediumPath +"/.opiestorage.cf"); | 40 | OConfig cfg (mediumPath +"/.opiestorage.cf"); |
41 | cfg.setGroup("main"); | 41 | cfg.setGroup("main"); |
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", true); | 45 | checkmimeaudio = cfg.readBoolEntry("audio", true); |
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 | checkmimeall = cfg.readBoolEntry("all", true); | ||
49 | 50 | ||
50 | cfg.setGroup("dirs"); | 51 | cfg.setGroup("dirs"); |
51 | limittodirs = cfg.readEntry("dirs", ""); | 52 | limittodirs = cfg.readEntry("dirs", ""); |
52 | } | 53 | } |
53 | 54 | ||
54 | bool MediumMountGui::check() { | 55 | bool MediumMountGui::check() { |
55 | return checkagain; | 56 | return checkagain; |
56 | } | 57 | } |
57 | 58 | ||
58 | QStringList MediumMountGui::dirs() { | 59 | QStringList MediumMountGui::dirs() { |
59 | QStringList list = QStringList::split(",", limittodirs ); | 60 | QStringList list = QStringList::split(",", limittodirs ); |
60 | return list; | 61 | return list; |
61 | } | 62 | } |
62 | 63 | ||
63 | void MediumMountGui::writeConfig(bool autocheck) { | 64 | void MediumMountGui::writeConfig(bool autocheck) { |
64 | 65 | ||
65 | OConfig cfg (mediumPath +"/.opiestorage.cf"); | 66 | OConfig cfg (mediumPath +"/.opiestorage.cf"); |
66 | cfg.setGroup("main"); | 67 | cfg.setGroup("main"); |
67 | cfg.writeEntry("check", AskBox->isChecked() ); | 68 | cfg.writeEntry("check", AskBox->isChecked() ); |
68 | cfg.writeEntry("autocheck", autocheck ); | 69 | cfg.writeEntry("autocheck", autocheck ); |
69 | 70 | ||
70 | cfg.setGroup("mimetypes"); | 71 | cfg.setGroup("mimetypes"); |
72 | |||
71 | cfg.writeEntry("audio", CheckBoxAudio->isChecked() ); | 73 | cfg.writeEntry("audio", CheckBoxAudio->isChecked() ); |
72 | cfg.writeEntry("image",CheckBoxImage->isChecked() ); | 74 | cfg.writeEntry("image",CheckBoxImage->isChecked() ); |
73 | cfg.writeEntry("text",CheckBoxImage->isChecked() ); | 75 | cfg.writeEntry("text",CheckBoxImage->isChecked() ); |
74 | cfg.writeEntry("video",CheckBoxVideo->isChecked() ); | 76 | cfg.writeEntry("video",CheckBoxVideo->isChecked() ); |
77 | cfg.writeEntry("all",CheckBoxAll->isChecked() ); | ||
75 | 78 | ||
76 | cfg.setGroup("dirs"); | 79 | cfg.setGroup("dirs"); |
77 | cfg.writeEntry("dirs", ""); | 80 | cfg.writeEntry("dirs", ""); |
78 | 81 | ||
79 | 82 | ||
80 | if (checkmimeaudio) { | 83 | // if all is checked then add only "null" to the list. |
81 | mimeTypeList += ("audio//*"); | 84 | if (checkmimeall) { |
82 | } | 85 | mimeTypeList += ("null"); |
83 | if (checkmimetext) { | 86 | } else { |
84 | mimeTypeList += ("text//*"); | 87 | if (checkmimeaudio) { |
85 | } | 88 | mimeTypeList += ("audio//*"); |
86 | if (checkmimeaudio) { | 89 | } |
87 | mimeTypeList += ("video//*"); | 90 | if (checkmimetext) { |
91 | mimeTypeList += ("text//*"); | ||
92 | } | ||
93 | if (checkmimevideo) { | ||
94 | mimeTypeList += ("video//*"); | ||
95 | } | ||
96 | if (checkmimeimage) { | ||
97 | mimeTypeList += ("image//*"); | ||
98 | } | ||
99 | if (checkmimeall) { | ||
100 | mimeTypeList << ("null"); | ||
101 | } | ||
88 | } | 102 | } |
89 | if (checkmimeaudio) { | ||
90 | mimeTypeList += ("image//*"); | ||
91 | } | ||
92 | |||
93 | } | 103 | } |
94 | 104 | ||
95 | void MediumMountGui::startGui() { | 105 | void MediumMountGui::startGui() { |
96 | 106 | ||
97 | QPixmap image = Resource::loadPixmap( "HelpBrowser"); | 107 | QPixmap image = Resource::loadPixmap( "HelpBrowser"); |
98 | 108 | ||
99 | Text_2 = new QLabel( this ); | 109 | Text_2 = new QLabel( this ); |
100 | Text_2->setGeometry( QRect( 10, 15, 40, 40 ) ); | 110 | Text_2->setGeometry( QRect( 10, 15, 40, 40 ) ); |
101 | Text_2->setPixmap( image ); | 111 | Text_2->setPixmap( image ); |
102 | 112 | ||
103 | Text = new QLabel( this, "Text" ); | 113 | Text = new QLabel( this, "Text" ); |
104 | Text->setGeometry( QRect( 55, 11, this->width()-50, 50 ) ); | 114 | Text->setGeometry( QRect( 55, 11, this->width()-50, 50 ) ); |
105 | Text->setText( tr( "A <b>storage medium</b> was inserted. Should it be scanned for media files?" ) ); | 115 | Text->setText( tr( "A <b>storage medium</b> was inserted. Should it be scanned for media files?" ) ); |
106 | 116 | ||
107 | // media box | 117 | // media box |
108 | GroupBox1 = new QGroupBox( this, "GroupBox1" ); | 118 | GroupBox1 = new QGroupBox( this, "GroupBox1" ); |
109 | GroupBox1->setGeometry( QRect( 10, 80, (this->width())-25, 60 ) ); | 119 | GroupBox1->setGeometry( QRect( 10, 80, (this->width())-25, 80 ) ); |
110 | GroupBox1->setTitle( tr( "Which media files" ) ); | 120 | GroupBox1->setTitle( tr( "Which media files" ) ); |
111 | 121 | ||
112 | CheckBoxAudio = new QCheckBox( GroupBox1, "CheckBoxAudio" ); | 122 | CheckBoxAudio = new QCheckBox( GroupBox1, "CheckBoxAudio" ); |
113 | CheckBoxAudio->setGeometry( QRect( 10, 15, (GroupBox1->width()/2)-15 , 15 ) ); | 123 | CheckBoxAudio->setGeometry( QRect( 10, 15, (GroupBox1->width()/2)-15 , 15 ) ); |
114 | CheckBoxAudio->setText( tr( "Audio" ) ); | 124 | CheckBoxAudio->setText( tr( "Audio" ) ); |
115 | 125 | ||
116 | CheckBoxImage = new QCheckBox( GroupBox1, "CheckBoxImage" ); | 126 | CheckBoxImage = new QCheckBox( GroupBox1, "CheckBoxImage" ); |
117 | CheckBoxImage->setGeometry( QRect( 10, 35,(GroupBox1->width()/2)-15, 15 ) ); | 127 | CheckBoxImage->setGeometry( QRect( 10, 35,(GroupBox1->width()/2)-15, 15 ) ); |
118 | CheckBoxImage->setText( tr( "Image" ) ); | 128 | CheckBoxImage->setText( tr( "Image" ) ); |
119 | 129 | ||
120 | CheckBoxText = new QCheckBox( GroupBox1, "CheckBoxText" ); | 130 | CheckBoxText = new QCheckBox( GroupBox1, "CheckBoxText" ); |
121 | CheckBoxText->setGeometry( QRect((GroupBox1->width()/2) , 15, (GroupBox1->width()/2)-15, 15 ) ); | 131 | CheckBoxText->setGeometry( QRect((GroupBox1->width()/2) , 15, (GroupBox1->width()/2)-15, 15 ) ); |
122 | CheckBoxText->setText( tr( "Text" ) ); | 132 | CheckBoxText->setText( tr( "Text" ) ); |
123 | 133 | ||
124 | CheckBoxVideo = new QCheckBox( GroupBox1, "CheckBoxVideo" ); | 134 | CheckBoxVideo = new QCheckBox( GroupBox1, "CheckBoxVideo" ); |
125 | CheckBoxVideo->setGeometry( QRect( (GroupBox1->width()/2), 35, (GroupBox1->width()/2)-15, 15 ) ); | 135 | CheckBoxVideo->setGeometry( QRect( (GroupBox1->width()/2), 35, (GroupBox1->width()/2)-15, 15 ) ); |
126 | CheckBoxVideo->setText( tr( "Video" ) ); | 136 | CheckBoxVideo->setText( tr( "Video" ) ); |
137 | |||
138 | CheckBoxAll = new QCheckBox ( GroupBox1); | ||
139 | CheckBoxAll->setGeometry( QRect( 10, 55, (GroupBox1->width()/2)-15, 15 ) ); | ||
140 | CheckBoxAll->setText( tr( "All" ) ); | ||
141 | QObject::connect( (QObject*)CheckBoxAll, SIGNAL( clicked() ), this, SLOT( deactivateOthers()) ); | ||
142 | |||
143 | |||
144 | |||
145 | CheckBoxLink = new QCheckBox ( GroupBox1); | ||
146 | CheckBoxLink->setGeometry( QRect( (GroupBox1->width()/2), 55, (GroupBox1->width()/2)-15, 15 ) ); | ||
147 | CheckBoxLink->setText( tr( "Link apps" ) ); | ||
148 | // as long as the feature is not supported | ||
149 | CheckBoxLink->setEnabled(false); | ||
150 | |||
127 | 151 | ||
128 | // select dirs | 152 | // select dirs |
129 | 153 | ||
130 | DirSelectText = new QLabel( this, "DirSelectText" ); | 154 | DirSelectText = new QLabel( this, "DirSelectText" ); |
131 | DirSelectText->setGeometry( QRect( 10, 160,this->width() , 20 ) ); | 155 | DirSelectText->setGeometry( QRect( 10, 160,this->width() , 20 ) ); |
132 | DirSelectText->setText( tr( "Limit search to dir: (not used yet)" ) ); | 156 | DirSelectText->setText( tr( "Limit search to dir: (not used yet)" ) ); |
133 | 157 | ||
134 | LineEdit1 = new QLineEdit( this ); | 158 | LineEdit1 = new QLineEdit( this ); |
135 | LineEdit1->setGeometry( QRect( 10, 180, (this->width())-60, 20 ) ); | 159 | LineEdit1->setGeometry( QRect( 10, 180, (this->width())-60, 20 ) ); |
136 | 160 | ||
137 | PushButton3 = new QPushButton( this ); | 161 | PushButton3 = new QPushButton( this ); |
138 | PushButton3->setGeometry( QRect( (this->width())-40, 180, 30, 20 ) ); | 162 | PushButton3->setGeometry( QRect( (this->width())-40, 180, 30, 20 ) ); |
@@ -163,24 +187,39 @@ void MediumMountGui::startGui() { | |||
163 | quit->setText( tr( "Yes" ) ); | 187 | quit->setText( tr( "Yes" ) ); |
164 | 188 | ||
165 | quit_2 = new QPushButton( this ); | 189 | quit_2 = new QPushButton( this ); |
166 | quit_2->setGeometry( QRect((this->width()/2) , 260, 80, 22 ) ); | 190 | quit_2->setGeometry( QRect((this->width()/2) , 260, 80, 22 ) ); |
167 | quit_2->setText( tr( "No" ) ); | 191 | quit_2->setText( tr( "No" ) ); |
168 | 192 | ||
169 | QObject::connect( (QObject*)quit, SIGNAL( clicked() ), this, SLOT(yesPressed() ) ); | 193 | QObject::connect( (QObject*)quit, SIGNAL( clicked() ), this, SLOT(yesPressed() ) ); |
170 | QObject::connect( (QObject*)quit_2, SIGNAL( clicked() ), this, SLOT(noPressed() ) ); | 194 | QObject::connect( (QObject*)quit_2, SIGNAL( clicked() ), this, SLOT(noPressed() ) ); |
171 | 195 | ||
172 | 196 | ||
173 | } | 197 | } |
174 | 198 | ||
199 | |||
200 | void MediumMountGui::deactivateOthers() { | ||
201 | bool mod = !(CheckBoxAll->isChecked()); | ||
202 | |||
203 | //if (!CheckBoxVideo->isChecked()){ | ||
204 | // mod = false; | ||
205 | //} else { | ||
206 | // mod = true; | ||
207 | //} | ||
208 | CheckBoxVideo->setEnabled(mod); | ||
209 | CheckBoxAudio->setEnabled(mod); | ||
210 | CheckBoxText->setEnabled(mod); | ||
211 | CheckBoxImage->setEnabled(mod); | ||
212 | } | ||
213 | |||
175 | void MediumMountGui::yesPressed() { | 214 | void MediumMountGui::yesPressed() { |
176 | writeConfig(true); | 215 | writeConfig(true); |
177 | // and do something | 216 | // and do something |
178 | accept(); | 217 | accept(); |
179 | } | 218 | } |
180 | 219 | ||
181 | 220 | ||
182 | QStringList MediumMountGui::mimeTypes(){ | 221 | QStringList MediumMountGui::mimeTypes(){ |
183 | return mimeTypeList; | 222 | return mimeTypeList; |
184 | } | 223 | } |
185 | 224 | ||
186 | void MediumMountGui::noPressed() { | 225 | void MediumMountGui::noPressed() { |
diff --git a/core/launcher/mediummountgui.h b/core/launcher/mediummountgui.h index 9802b29..2e04f94 100644 --- a/core/launcher/mediummountgui.h +++ b/core/launcher/mediummountgui.h | |||
@@ -25,41 +25,44 @@ 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* CheckBoxAll; | ||
38 | QCheckBox* CheckBoxLink; | ||
37 | QCheckBox* AskBox; | 39 | QCheckBox* AskBox; |
38 | 40 | ||
39 | public: | 41 | public: |
40 | bool check(); | 42 | bool check(); |
41 | QStringList mimeTypes(); | 43 | QStringList mimeTypes(); |
42 | QStringList dirs(); | 44 | QStringList dirs(); |
43 | private: | 45 | private: |
44 | void startGui(); | 46 | void startGui(); |
45 | void readConfig(); | 47 | void readConfig(); |
46 | void writeConfig(bool checkagain); | 48 | void writeConfig(bool checkagain); |
47 | 49 | ||
48 | private slots: | 50 | private slots: |
49 | void yesPressed(); | 51 | void yesPressed(); |
50 | void noPressed(); | 52 | void noPressed(); |
51 | 53 | void deactivateOthers(); | |
52 | private: | 54 | private: |
53 | QString mediumPath; | 55 | QString mediumPath; |
54 | 56 | ||
55 | bool checkagain; | 57 | bool checkagain; |
56 | bool checkmimeaudio; | 58 | bool checkmimeaudio; |
57 | bool checkmimeimage; | 59 | bool checkmimeimage; |
58 | bool checkmimetext; | 60 | bool checkmimetext; |
59 | bool checkmimevideo; | 61 | bool checkmimevideo; |
62 | bool checkmimeall; | ||
60 | QString limittodirs; | 63 | QString limittodirs; |
61 | QStringList mimeTypeList; | 64 | QStringList mimeTypeList; |
62 | 65 | ||
63 | }; | 66 | }; |
64 | 67 | ||
65 | #endif | 68 | #endif |