summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/mediummountgui.cpp65
-rw-r--r--core/launcher/mediummountgui.h7
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
@@ -47,4 +47,5 @@ void MediumMountGui::readConfig(){
checkmimetext = cfg.readBoolEntry("text", true);
checkmimevideo = cfg.readBoolEntry("video", true);
+ checkmimeall = cfg.readBoolEntry("all", true);
cfg.setGroup("dirs");
@@ -69,8 +70,10 @@ void MediumMountGui::writeConfig(bool autocheck) {
cfg.setGroup("mimetypes");
+
cfg.writeEntry("audio", CheckBoxAudio->isChecked() );
cfg.writeEntry("image",CheckBoxImage->isChecked() );
cfg.writeEntry("text",CheckBoxImage->isChecked() );
cfg.writeEntry("video",CheckBoxVideo->isChecked() );
+ cfg.writeEntry("all",CheckBoxAll->isChecked() );
cfg.setGroup("dirs");
@@ -78,17 +81,24 @@ void MediumMountGui::writeConfig(bool autocheck) {
- if (checkmimeaudio) {
- mimeTypeList += ("audio//*");
- }
- if (checkmimetext) {
- mimeTypeList += ("text//*");
- }
- if (checkmimeaudio) {
- mimeTypeList += ("video//*");
+ // if all is checked then add only "null" to the list.
+ if (checkmimeall) {
+ mimeTypeList += ("null");
+ } else {
+ if (checkmimeaudio) {
+ mimeTypeList += ("audio//*");
+ }
+ if (checkmimetext) {
+ mimeTypeList += ("text//*");
+ }
+ if (checkmimevideo) {
+ mimeTypeList += ("video//*");
+ }
+ if (checkmimeimage) {
+ mimeTypeList += ("image//*");
+ }
+ if (checkmimeall) {
+ mimeTypeList << ("null");
+ }
}
- if (checkmimeaudio) {
- mimeTypeList += ("image//*");
- }
-
}
@@ -107,5 +117,5 @@ void MediumMountGui::startGui() {
// media box
GroupBox1 = new QGroupBox( this, "GroupBox1" );
- GroupBox1->setGeometry( QRect( 10, 80, (this->width())-25, 60 ) );
+ GroupBox1->setGeometry( QRect( 10, 80, (this->width())-25, 80 ) );
GroupBox1->setTitle( tr( "Which media files" ) );
@@ -125,4 +135,18 @@ void MediumMountGui::startGui() {
CheckBoxVideo->setGeometry( QRect( (GroupBox1->width()/2), 35, (GroupBox1->width()/2)-15, 15 ) );
CheckBoxVideo->setText( tr( "Video" ) );
+
+ CheckBoxAll = new QCheckBox ( GroupBox1);
+ CheckBoxAll->setGeometry( QRect( 10, 55, (GroupBox1->width()/2)-15, 15 ) );
+ CheckBoxAll->setText( tr( "All" ) );
+ QObject::connect( (QObject*)CheckBoxAll, SIGNAL( clicked() ), this, SLOT( deactivateOthers()) );
+
+
+
+ CheckBoxLink = new QCheckBox ( GroupBox1);
+ CheckBoxLink->setGeometry( QRect( (GroupBox1->width()/2), 55, (GroupBox1->width()/2)-15, 15 ) );
+ CheckBoxLink->setText( tr( "Link apps" ) );
+ // as long as the feature is not supported
+ CheckBoxLink->setEnabled(false);
+
// select dirs
@@ -173,4 +197,19 @@ void MediumMountGui::startGui() {
}
+
+void MediumMountGui::deactivateOthers() {
+ bool mod = !(CheckBoxAll->isChecked());
+
+ //if (!CheckBoxVideo->isChecked()){
+ // mod = false;
+ //} else {
+ // mod = true;
+ //}
+ CheckBoxVideo->setEnabled(mod);
+ CheckBoxAudio->setEnabled(mod);
+ CheckBoxText->setEnabled(mod);
+ CheckBoxImage->setEnabled(mod);
+}
+
void MediumMountGui::yesPressed() {
writeConfig(true);
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
@@ -35,4 +35,6 @@ protected:
QCheckBox* CheckBoxText;
QCheckBox* CheckBoxVideo;
+ QCheckBox* CheckBoxAll;
+ QCheckBox* CheckBoxLink;
QCheckBox* AskBox;
@@ -49,6 +51,6 @@ private slots:
void yesPressed();
void noPressed();
-
-private:
+ void deactivateOthers();
+ private:
QString mediumPath;
@@ -58,4 +60,5 @@ private:
bool checkmimetext;
bool checkmimevideo;
+ bool checkmimeall;
QString limittodirs;
QStringList mimeTypeList;