/***************************************************************** 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 #include #include #include #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(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(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, KIcon::Small, 0, KIcon::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(appletsMenu)); } else { insertItem(SmallIcon(icon), text, const_cast(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->authorizeKAction("menuedit")) { if (needSeparator) { insertSeparator(); needSeparator = false; } insertItem(SmallIcon("kmenuedit"), i18n("&Menu Editor"), Preferences); } if ((actions & PanelAppletOpMenu::BookmarkEditor) && kapp->authorizeKAction("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"