Blob Blame History Raw
Index: plasma/applets/kickoff/simpleapplet/simpleapplet.cpp
===================================================================
--- plasma/applets/kickoff/simpleapplet/simpleapplet.cpp	(revision 790454)
+++ plasma/applets/kickoff/simpleapplet/simpleapplet.cpp	(revision 790453)
@@ -61,7 +61,7 @@
         MenuLauncherApplet::FormatType formattype;
 
         KDialog *dialog;
-        QComboBox *viewComboBox;
+        QComboBox *viewComboBox, *formatComboBox;
 
         QAction* switcher;
         Private() : menuview(0), launcher(0), dialog(0), switcher(0) {}
@@ -203,10 +203,19 @@
         d->addItem(d->viewComboBox, i18n("Leave"), MenuLauncherApplet::Leave);
         l->addWidget(d->viewComboBox, 0, 1);
 
+        l->addWidget(new QLabel(i18n("Format:"), p), 1, 0);
+        d->formatComboBox = new QComboBox(p);
+        d->addItem(d->formatComboBox, i18n("Name only"), MenuLauncherApplet::Name);
+        d->addItem(d->formatComboBox, i18n("Description only"), MenuLauncherApplet::Description);
+        d->addItem(d->formatComboBox, i18n("Name Description"), MenuLauncherApplet::NameDescription);
+        d->addItem(d->formatComboBox, i18n("Description (Name)"), MenuLauncherApplet::DescriptionName);
+        l->addWidget(d->formatComboBox, 1, 1);
+
         l->setColumnStretch(1,1);
     }
 
     d->setCurrentItem(d->viewComboBox, d->viewtype);
+    d->setCurrentItem(d->formatComboBox, d->formattype);
     d->dialog->show();
 }
 
@@ -224,6 +233,15 @@
         cg.writeEntry("view", QByteArray(e.valueToKey(d->viewtype)));
     }
 
+    int ft = d->formatComboBox->itemData(d->formatComboBox->currentIndex()).toInt();
+    if( ft != d->formattype ) {
+        d->formattype = (MenuLauncherApplet::FormatType) ft;
+        needssaving = true;
+
+        QMetaEnum e = metaObject()->enumerator(metaObject()->indexOfEnumerator("FormatType"));
+        cg.writeEntry("format", QByteArray(e.valueToKey(d->formattype)));
+    }
+
     if( needssaving ) {
         emit configNeedsSaving();