dolphin/lib/konq/konq_menuactions_p.h
David Faure af34f1cda4 Move handling of "Open With" actions from KonqPopupMenu to KonqMenuActions, for more code sharing with dolphin
Move info about the items related to the popupmenu to KonqPopupMenuInformation, to share this between KonqPopupMenu, KonqMenuActions and the upcoming plugin support resurrection.

svn path=/trunk/KDE/kdebase/apps/; revision=809875
2008-05-19 17:34:10 +00:00

61 lines
1.9 KiB
C++

/* This file is part of the KDE project
Copyright (C) 1998-2007 David Faure <faure@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KONQ_MENUACTIONS_P_H
#define KONQ_MENUACTIONS_P_H
#include "konq_popupmenuinformation.h"
#include <kfileitem.h>
#include <kactioncollection.h>
#include <QActionGroup>
#include <QObject>
#include <kserviceaction.h>
#include <kservice.h>
typedef QList<KServiceAction> ServiceList;
class KonqMenuActionsPrivate : public QObject
{
Q_OBJECT
public:
KonqMenuActionsPrivate();
int insertServicesSubmenus(const QMap<QString, ServiceList>& list, QMenu* menu, bool isBuiltin);
int insertServices(const ServiceList& list, QMenu* menu, bool isBuiltin);
private Q_SLOTS:
// For servicemenus
void slotExecuteService(QAction* act);
// For "open with" applications
void slotRunApplication(QAction* act);
void slotOpenWithDialog();
public:
KonqPopupMenuInformation m_info;
QActionGroup m_executeServiceActionGroup;
QActionGroup m_runApplicationActionGroup;
KActionCollection m_ownActions; // TODO connect to statusbar for help on actions
};
Q_DECLARE_METATYPE(KService::Ptr)
Q_DECLARE_METATYPE(KServiceAction)
#endif /* KONQ_MENUACTIONS_P_H */