You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/kicker/kicker/ui/appletop_mnu.cpp

232 lines
7.3 KiB

/*****************************************************************
Copyright (c) 1996-2000 the kicker authors. See file AUTHORS.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************/
#include <tdelocale.h>
#include <kiconloader.h>
#include <kpanelapplet.h>
#include <kstdguiitem.h>
#include "kicker.h"
#include "appletop_mnu.h"
#include "container_button.h"
#include "containerarea.h"
#include "kickerSettings.h"
PanelAppletOpMenu::PanelAppletOpMenu(int actions, TQPopupMenu *opMenu, const TQPopupMenu* appletsMenu,
const TQString & title, const TQString &icon,
TQWidget *parent, const char *name)
: TQPopupMenu(parent, name)
{
bool needSeparator = false;
bool isButton = (parent && parent->inherits("ButtonContainer"));
bool isMenu = false;
TQString titleText = title;
titleText = titleText.replace('&', "&&");
if (isButton)
{
isMenu = static_cast<ButtonContainer*>(parent)->isAMenu();
}
if (!Kicker::the()->isImmutable())
{
TQString text = isButton ? (isMenu ? i18n("&Move %1 Menu") :
i18n("&Move %1 Button")) :
i18n("&Move %1");
insertItem(SmallIcon("move"), text.arg(titleText), Move);
// we look for a container area to see if we can add containers
// this is part of the kiosk support in kicker, allowing
// one to block users from adding new containers
ContainerArea* area = 0;
TQObject* findTheArea = parent ? parent->parent() : 0;
while (findTheArea)
{
area = dynamic_cast<ContainerArea*>(findTheArea);
if (area)
{
break;
}
findTheArea = findTheArea->parent();
}
if (!area || area->canAddContainers())
{
text = isButton ? (isMenu ? i18n("&Remove %1 Menu") :
i18n("&Remove %1 Button")) :
i18n("&Remove %1");
insertItem(SmallIcon("remove"), text.arg(titleText), Remove);
needSeparator = true;
}
}
if (actions & KPanelApplet::ReportBug)
{
if (needSeparator)
{
insertSeparator();
needSeparator = false;
}
insertItem(i18n("Report &Bug..."), ReportBug);
}
if (actions & KPanelApplet::About)
{
if (needSeparator)
{
insertSeparator();
}
TQPixmap iconPix(kapp->iconLoader()->loadIcon(icon,
TDEIcon::Small, 0,
TDEIcon::DefaultState,
0, true));
insertItem(iconPix, i18n("&About %1").arg( titleText ), About);
needSeparator = !(actions & KPanelApplet::Help);
}
if (actions & KPanelApplet::Help)
{
if (needSeparator)
{
insertSeparator();
}
insertItem(SmallIcon("help"), KStdGuiItem::help().text(), Help);
needSeparator = true;
}
if (!Kicker::the()->isImmutable() && (actions & KPanelApplet::Preferences))
{
if (isButton)
{
insertItem(SmallIcon("configure"),
i18n("&Configure %1 Button...").arg(titleText), Preferences);
}
else
{
insertItem(SmallIcon("configure"),
i18n("&Configure %1...").arg(titleText), Preferences);
}
needSeparator = true;
}
if (appletsMenu)
{
if (needSeparator)
{
insertSeparator();
needSeparator = false;
}
TQString text = title.isEmpty() ? i18n("Applet Menu") :
i18n("%1 Menu").arg(titleText);
// the 2 const_cast's below prevents const_cast'ing in multiple places
// elsewhere in the kicker code base. it's ugly, but unavoidable
// unless either TQPopupMenu one day allows inserting const
// QPopupMenu's or we uglify other bits of kicker's API,
// notably KPanelApplet::customMeu()
if (icon.isEmpty())
{
insertItem(text, const_cast<TQPopupMenu*>(appletsMenu));
}
else
{
insertItem(SmallIcon(icon), text,
const_cast<TQPopupMenu*>(appletsMenu));
}
}
if ((actions & PanelAppletOpMenu::KMenuEditor))
{
if (needSeparator)
{
insertSeparator();
needSeparator = false;
}
if (KickerSettings::legacyKMenu())
// insertItem(SmallIcon("kickoff"), i18n("Switch to Kickoff Menu Style"), this, TQT_SLOT(toggleLegacy()));
insertItem(SmallIcon("launch"), i18n("Switch to Kickoff Menu Style"), this, TQT_SLOT(toggleLegacy()));
else
insertItem(SmallIcon("about_kde"), i18n("Switch to Trinity Classic Menu Style"), this, TQT_SLOT(toggleLegacy()));
}
if ((actions & PanelAppletOpMenu::KMenuEditor) && kapp->authorizeTDEAction("menuedit"))
{
if (needSeparator)
{
insertSeparator();
needSeparator = false;
}
insertItem(SmallIcon("kmenuedit"), i18n("&Menu Editor"), Preferences);
}
if ((actions & PanelAppletOpMenu::BookmarkEditor) &&
kapp->authorizeTDEAction("edit_bookmarks"))
{
if (needSeparator)
{
insertSeparator();
}
needSeparator = false;
// NOTE: keditbookmarks is from konqueror. seeing as this is in tdebase
// as well this should be ok?
insertItem(SmallIcon("keditbookmarks"),
i18n("&Edit Bookmarks"),
Preferences);
}
if (needSeparator)
{
insertSeparator();
}
insertItem(SmallIcon("panel"), i18n("Panel Menu"), opMenu);
adjustSize();
}
void PanelAppletOpMenu::keyPressEvent(TQKeyEvent* e)
{
if (e->key() == Qt::Key_Escape)
{
emit escapePressed();
}
TQPopupMenu::keyPressEvent(e);
}
void PanelAppletOpMenu::toggleLegacy()
{
KickerSettings::setLegacyKMenu(!KickerSettings::legacyKMenu());
KickerSettings::writeConfig();
Kicker::the()->restart();
}
#include "appletop_mnu.moc"