summaryrefslogtreecommitdiffstats
path: root/kicker/kicker/ui/appletop_mnu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kicker/kicker/ui/appletop_mnu.cpp')
-rw-r--r--kicker/kicker/ui/appletop_mnu.cpp208
1 files changed, 208 insertions, 0 deletions
diff --git a/kicker/kicker/ui/appletop_mnu.cpp b/kicker/kicker/ui/appletop_mnu.cpp
new file mode 100644
index 000000000..435911bbe
--- /dev/null
+++ b/kicker/kicker/ui/appletop_mnu.cpp
@@ -0,0 +1,208 @@
+/*****************************************************************
+
+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 <klocale.h>
+#include <kiconloader.h>
+#include <kpanelapplet.h>
+#include <kstdguiitem.h>
+
+#include "kicker.h"
+#include "appletop_mnu.h"
+#include "container_button.h"
+#include "containerarea.h"
+
+PanelAppletOpMenu::PanelAppletOpMenu(int actions, QPopupMenu *opMenu, const QPopupMenu* appletsMenu,
+ const QString & title, const QString &icon,
+ QWidget *parent, const char *name)
+ : QPopupMenu(parent, name)
+{
+ bool needSeparator = false;
+ bool isButton = (parent && parent->inherits("ButtonContainer"));
+ bool isMenu = false;
+ QString titleText = title;
+ titleText = titleText.replace('&', "&&");
+ if (isButton)
+ {
+ isMenu = static_cast<ButtonContainer*>(parent)->isAMenu();
+ }
+
+ if (!Kicker::the()->isImmutable())
+ {
+ QString 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;
+ QObject* 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();
+ }
+
+ QPixmap 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;
+ }
+
+ QString 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 QPopupMenu 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<QPopupMenu*>(appletsMenu));
+ }
+ else
+ {
+ insertItem(SmallIcon(icon), text,
+ const_cast<QPopupMenu*>(appletsMenu));
+ }
+ }
+
+ 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 kdebase
+ // 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(QKeyEvent* e)
+{
+ if (e->key() == Qt::Key_Escape)
+ {
+ emit escapePressed();
+ }
+
+ QPopupMenu::keyPressEvent(e);
+}
+
+#include "appletop_mnu.moc"