summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kpanelmenutest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/tests/kpanelmenutest.cpp')
-rw-r--r--kdeui/tests/kpanelmenutest.cpp72
1 files changed, 0 insertions, 72 deletions
diff --git a/kdeui/tests/kpanelmenutest.cpp b/kdeui/tests/kpanelmenutest.cpp
deleted file mode 100644
index e081e467f..000000000
--- a/kdeui/tests/kpanelmenutest.cpp
+++ /dev/null
@@ -1,72 +0,0 @@
-#include "kpanelmenutest.h"
-#include <kapplication.h>
-#include <kstandarddirs.h>
-#include <dcopclient.h>
-
-TestWidget::TestWidget(TQWidget *parent, const char *name)
- : TQLabel(parent, name)
-{
- testMenu = new KPanelAppMenu(locate("mini", "x.png"), "Client Test", this,
- "menu1");
-
- subMenu = testMenu->insertMenu(locate("mini", "x.png"), "Submenu Test");
- subMenu->insertItem(locate("mini", "bx2.png"), "First Entry", 100);
- subMenu->insertItem(locate("mini", "bx2.png"), "Second Entry", 101);
-
- KPanelAppMenu *ssub = subMenu->insertMenu(locate("mini", "x.png"), "One more");
-
- connect(testMenu, TQT_SIGNAL(activated(int)), TQT_SLOT(slotMenuCalled(int)));
- connect(subMenu, TQT_SIGNAL(activated(int)), TQT_SLOT(slotSubMenuCalled(int)));
- init();
-
- setText("We added \"Client Test\" to kicker. Click the K Menu to check.");
- resize(tqsizeHint());
-}
-
-void TestWidget::init()
-{
- testMenu->insertItem(locate("mini", "bx2.png"),
- "Add another entry!", 1);
- testMenu->insertItem("Attention, this will clear the menu", 2);
-}
-
-void TestWidget::slotMenuCalled(int id)
-{
- switch ( id ) {
- case 1:
- setText("Selected \"Add another entry!\" ");
- testMenu->insertItem("Another entry");
- break;
- case 2:
- setText("Selected \"Attention, this will clear the menu\"");
- testMenu->clear();
- init();
- break;
- default:
- setText("Selected \"Another entry...\"");
- }
-}
-
-
-void TestWidget::slotSubMenuCalled(int id)
-{
- TQString msg("Called with id=%1");
- setText(msg.arg(id));
-}
-
-
-int main(int argc, char **argv)
-{
- KApplication *app = new KApplication(argc, argv, "menutest");
-
- TestWidget w;
- app->setMainWidget(&w);
- w.show();
-
- app->exec();
-}
-
-#include "kpanelmenutest.moc"
-
-
-