1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/*
* KSeg
* Copyright (C) 1999-2006 Ilya Baran
*
* 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, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Send comments and/or bug reports to:
* ibaran@mit.edu
*/
#include "KSegMenuMaintainer.H"
#include "KSegWindow.H"
#include "KSegView.H"
int KSegCommandInfo::curId = 1;
KSegMenuMaintainer::~KSegMenuMaintainer()
{
int i;
for(i = 0; i < (int)subMaintainers.size(); ++i) {
delete subMaintainers[i];
}
for(i = 0; i < (int)commands.size(); ++i) {
delete commands[i];
}
if(myInfo != NULL) delete menu; //if we created our own menu.
if(toolBar != NULL) { delete toolBar; }
}
void KSegMenuMaintainer::add(KSegMenuMaintainer *m)
{
menu->insertItem(m->myInfo->menuText(window), (QPopupMenu *)(m->menu), m->myInfo->getID());
if(!m->updateOften()) QObject::connect((QPopupMenu *)(m->menu), SIGNAL(aboutToShow()), m, SLOT(update()));
subMaintainers.push_back(m);
}
void KSegMenuMaintainer::add(KSegCommandInfo *i)
{
i->addTo(window, menu);
if(toolBar != NULL) i->addTo(window, toolBar);
commands.push_back(i);
}
void KSegMenuMaintainer::update()
{
int i;
for(i = 0; i < (int)subMaintainers.size(); ++i) {
if(subMaintainers[i]->updateOften()) subMaintainers[i]->update();
KSegCommandInfo *info = subMaintainers[i]->myInfo;
int id = info->getID();
menu->setItemEnabled(id, info->isEnabled(window));
menu->setItemChecked(id, info->isChecked(window) == 1);
QString txt = info->menuText(window);
if(!txt.isNull() && txt != menu->text(id)) menu->changeItem(id, txt);
}
for(i = 0; i < (int)commands.size(); ++i) {
int id = commands[i]->getID();
menu->setItemEnabled(id, commands[i]->isEnabled(window));
menu->setItemChecked(id, commands[i]->isChecked(window) == 1);
QString txt = commands[i]->menuText(window);
if(txt != menu->text(id)) menu->changeItem(id, txt);
//tool button updates here
if(toolBar == NULL) continue;
QToolButton *tb = commands[i]->getToolButton();
if(tb == NULL) continue;
tb->setEnabled(commands[i]->isEnabled(window));
tb->setToggleButton(commands[i]->isChecked(window) != -1);
tb->setOn(commands[i]->isChecked(window) == 1);
tb->setTextLabel(commands[i]->menuText(window).replace(QRegExp("&"), ""));
tb->setIconSet(commands[i]->iconSet(window));
}
}
bool KSegCommandInfo::isEnabled(KSegWindow *win) {
if(win->getView()->getDrag() != KSegView::NO_DRAG || win->getView()->getMenusEnabled() == false)
return false;
return privateIsEnabled(win);
}
|