blob: f94ba67e2941c929bf1c7fcc47de3cedb09e7055 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/***************************************************************************
actionconfigdialog.cpp
---------------------
copyright : (C) 2003 by Andras Mantia <amantia@kde.org>
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; version 2 of the License. *
* *
***************************************************************************/
#ifndef ACTIONCONFIGDIALOG_H
#define ACTIONCONFIGDIALOG_H
#include <qmap.h>
#include "actionconfigdialogs.h"
class QDomDocument;
class QPopupMenu;
class KAction;
class KMainWindow;
class KPopupMenu;
class KShortcut;
class KXMLGUIClient;
typedef struct ToolbarEntry{
KXMLGUIClient *guiClient;
QDomDocument *dom;
QPopupMenu *menu;
KURL url;
QString name;
QString id;
bool user;
bool visible;
bool nameModified; ///< True if the name of the toolbar was modified by Quanta on loading:" (n)" was added
};
class ActionConfigDialog: public ActionConfigDialogS
{
Q_OBJECT
public:
ActionConfigDialog(const QDict<ToolbarEntry> &toolbarList, KMainWindow* parent = 0, const char* name = 0, bool modal = true, WFlags fl = 0 , const QString& defaultAction = QString::null);
~ActionConfigDialog();
void createScriptAction(const QString& a_name, const QString& a_script);
public slots:
virtual void accept();
virtual void reject();
void slotToggled(bool);
void slotTextChanged();
void slotTextChanged(const QString&);
void slotNewAction();
private slots:
void slotAddToolbar();
void slotRemoveToolbar();
void slotEditToolbar();
void slotContextMenu(KListView *,QListViewItem *,const QPoint &);
void slotSelectionChanged(QListViewItem *);
void slotShortcutCaptured(const KShortcut&);
void slotDeleteAction();
void slotApply();
void slotAddContainerToolbar();
void slotRemoveContainerToolbar();
void slotToolbarRemoved(const QString& toolbarName);
signals:
void addToolbar();
void removeToolbar(const QString&);
void deleteUserAction(KAction *);
void configureToolbars(const QString&);
private:
void saveCurrentAction();
KPopupMenu *treeMenu;
KAction *currentAction;
QListViewItem *allActionsItem;
QMap<QString, QString> globalShortcuts;
KShortcut selectedShortcut;
KMainWindow *m_mainWindow;
QDict<ToolbarEntry> m_toolbarList;
QListViewItem *m_toolbarItem;
};
#endif
|