diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /ksirc/KSPrefs/page_rmbmenu.cpp | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksirc/KSPrefs/page_rmbmenu.cpp')
-rw-r--r-- | ksirc/KSPrefs/page_rmbmenu.cpp | 206 |
1 files changed, 206 insertions, 0 deletions
diff --git a/ksirc/KSPrefs/page_rmbmenu.cpp b/ksirc/KSPrefs/page_rmbmenu.cpp new file mode 100644 index 00000000..7baf5da5 --- /dev/null +++ b/ksirc/KSPrefs/page_rmbmenu.cpp @@ -0,0 +1,206 @@ +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License. + * * + ***************************************************************************/ + +#include "page_rmbmenu.h" + +#include <qcheckbox.h> +#include <qlabel.h> +#include <qlineedit.h> +#include <qlistbox.h> +#include <qpushbutton.h> + +#include <kdebug.h> + +#include "../usercontrolmenu.h" + + + +PageRMBMenu::PageRMBMenu( QWidget *parent, const char *name ) : PageRMBMenuBase( parent, name) +{ + UserControlMenu *ucm; + + UserControlMenu::parseKConfig(); + + commandLB->clear(); + for(ucm = UserControlMenu::UserMenu.first(); + ucm != 0; + ucm = UserControlMenu::UserMenu.next()){ + + if(ucm->type == UserControlMenu::Seperator){ + commandLB->insertItem("--------------", -1); + } + else{ + commandLB->insertItem(ucm->title, -1); + } + } + + changeItemPB->hide(); + + connect(commandLB, SIGNAL(highlighted( int )), + this, SLOT(highlighted( int ))); + connect(moveUpPB, SIGNAL(clicked()), + this, SLOT(moveDown())); + connect(moveDownPB, SIGNAL(clicked()), + this, SLOT(moveUp())); + + connect(insertSeperatorPB, SIGNAL(clicked()), + this, SLOT(insSeperator())); + + connect(insertItemPB, SIGNAL(clicked()), + this, SLOT(insCommand())); + + connect(deleteItemPB, SIGNAL(clicked()), + this, SLOT(delCommand())); + +} + +PageRMBMenu::~PageRMBMenu() +{ +} + +void PageRMBMenu::saveConfig() +{ + UserControlMenu::writeKConfig(); +} + +void PageRMBMenu::readConfig( const KSORMBMenu * ) +{ +} + +void PageRMBMenu::defaultConfig() +{ +} + +void PageRMBMenu::highlighted(int index) +{ + UserControlMenu *ucm; + + ucm = UserControlMenu::UserMenu.at(index); + + if(ucm == 0) + return; + + if(ucm->type == UserControlMenu::Seperator){ + entryLE->setEnabled(false); + commandLE->setEnabled(false); + opEnableCB->setEnabled(false); + opEnableCB->setChecked(false); + changeItemPB->setEnabled(false); + } + else{ + entryLE->setEnabled(true); + commandLE->setEnabled(true); + opEnableCB->setEnabled(true); + opEnableCB->setChecked(true); + changeItemPB->setEnabled(true); + + entryLE->setText(ucm->title); + commandLE->setText(ucm->action); + opEnableCB->setChecked(ucm->op_only); + } + + if(index == 0){ + moveUpPB->setEnabled(true); + moveDownPB->setEnabled(false); + } + else if((uint)index == (commandLB->count()-1)){ + moveUpPB->setEnabled(false); + moveDownPB->setEnabled(true); + } + else { + moveUpPB->setEnabled(true); + moveDownPB->setEnabled(true); + } +} + +void PageRMBMenu::moveUp() +{ + int item = commandLB->currentItem(); + + QString txt = commandLB->text(item); + commandLB->removeItem(item); + + commandLB->insertItem(txt, item-1); + commandLB->setCurrentItem(item-1); + + UserControlMenu *ucm = UserControlMenu::UserMenu.take(item); + UserControlMenu::UserMenu.insert(item-1,ucm); + + highlighted(item-1); + emit modified(); +} + +void PageRMBMenu::moveDown() +{ + int item = commandLB->currentItem(); + + QString txt = commandLB->text(item); + commandLB->removeItem(item); + + commandLB->insertItem(txt, item+1); + commandLB->setCurrentItem(item+1); + + UserControlMenu *ucm = UserControlMenu::UserMenu.take(item); + UserControlMenu::UserMenu.insert(item+1,ucm); + + highlighted(item+1); + emit modified(); +} + +void PageRMBMenu::insSeperator() +{ + int item = commandLB->currentItem(); + + QString txt = commandLB->text(item); + + commandLB->insertItem("--------------", item); + commandLB->setCurrentItem(item); + + UserControlMenu::UserMenu.insert(item,new UserControlMenu); // Defaults to a separator + + highlighted(item); + emit modified(); +} + +void PageRMBMenu::insCommand() +{ + int item = commandLB->currentItem(); + + QString te = entryLE->text(); + QString ce = commandLE->text(); + + commandLB->insertItem(te, item); + commandLB->setCurrentItem(item); + + UserControlMenu::UserMenu.insert(item, + new UserControlMenu( + te, + ce, + 0x0, + UserControlMenu::Text + )); // Defaults to a separator + + highlighted(item); + emit modified(); +} + +void PageRMBMenu::delCommand() +{ + int item = commandLB->currentItem(); + + QString txt = commandLB->text(item); + commandLB->removeItem(item); + + UserControlMenu::UserMenu.remove(item); + + highlighted(item); + emit modified(); +} + + +#include "page_rmbmenu.moc" |