Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / apps / lib / konq / konq_menuactions_p.h
blob5295fc751b7d83360846de9b5818dd32216280e4
1 /* This file is part of the KDE project
2 Copyright (C) 1998-2007 David Faure <faure@kde.org>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifndef KONQ_MENUACTIONS_P_H
21 #define KONQ_MENUACTIONS_P_H
23 #include <kfileitem.h>
24 #include <kactioncollection.h>
25 #include <QActionGroup>
26 #include <QObject>
27 #include <kserviceaction.h>
29 typedef QList<KServiceAction> ServiceList;
31 class KonqMenuActionsPrivate : public QObject
33 Q_OBJECT
34 public:
35 KonqMenuActionsPrivate();
37 int insertServicesSubmenus(const QMap<QString, ServiceList>& list, QMenu* menu, bool isBuiltin);
38 int insertServices(const ServiceList& list, QMenu* menu, bool isBuiltin);
40 private Q_SLOTS:
41 void slotExecuteService(QAction* act);
43 public:
44 KFileItemList m_items;
45 KUrl m_url;
46 KUrl::List m_urlList;
47 QString m_mimeType;
48 QString m_mimeGroup;
49 bool m_isDirectory;
50 bool m_readOnly;
52 // TODO try action->setData(QVariant::fromValue(service))
53 QMap<QAction *, KServiceAction> m_mapPopupServices;
54 QActionGroup m_executeServiceActionGroup;
55 KActionCollection m_ownActions; // TODO connect to statusbar for help on actions
58 #endif /* KONQ_MENUACTIONS_P_H */