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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
/*
* SPDX-FileCopyrightText: 2008 David Faure <[email protected]>
* SPDX-FileCopyrightText: 2012 Peter Penz <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DOLPHINVIEWACTIONHANDLER_H
#define DOLPHINVIEWACTIONHANDLER_H
#include "dolphin_export.h"
#include "selectionmode/bottombar.h"
#include "views/dolphinview.h"
#include <QObject>
class KToggleAction;
class QAction;
class QActionGroup;
class DolphinView;
class KActionCollection;
class KFileItemList;
namespace SelectionMode
{
class ActionTextHelper;
}
/**
* @short Handles all actions for DolphinView
*
* The action handler owns all the actions and slots related to DolphinView,
* but the view that it acts upon can be switched to another one
* (this is used in the case of split views).
*
* The purpose of this class is also to share this code between DolphinMainWindow
* and DolphinPart.
*
* @see DolphinView
* @see DolphinMainWindow
* @see DolphinPart
*/
class DOLPHIN_EXPORT DolphinViewActionHandler : public QObject
{
Q_OBJECT
public:
explicit DolphinViewActionHandler(KActionCollection *collection, SelectionMode::ActionTextHelper *actionTextHelper, QObject *parent);
/**
* Sets the view that this action handler should work on.
*/
void setCurrentView(DolphinView *view);
/**
* Returns the view that this action handler should work on.
*/
DolphinView *currentView();
/**
* Returns the name of the action for the current viewmode
*/
QString currentViewModeActionName() const;
/**
* Returns m_actionCollection
*/
KActionCollection *actionCollection();
public Q_SLOTS:
/**
* Update all actions in the 'View' menu, i.e. those that depend on the
* settings in the current view.
*/
void updateViewActions();
Q_SIGNALS:
/**
* Emitted by DolphinViewActionHandler when the user triggered an action.
* This is only used for clearing the statusbar in DolphinMainWindow.
*/
void actionBeingHandled();
/**
* Emitted if the user requested creating a new directory by the F10 key.
* The receiver of the signal (DolphinMainWindow or DolphinPart) invokes
* the method createDirectory of their KNewFileMenu instance.
*/
void createDirectoryTriggered();
/**
* Emitted if the user requested creating a new file.
* The receiver of the signal (DolphinMainWindow or DolphinPart) invokes
* the method createFile of their KNewFileMenu instance.
*/
void createFileTriggered();
/** Used to request either entering or leaving of selection mode */
void selectionModeChangeTriggered(bool enabled, SelectionMode::BottomBar::Contents bottomBarContents = SelectionMode::BottomBar::Contents::GeneralContents);
private Q_SLOTS:
/**
* Emitted when the user requested a change of view mode
*/
void slotViewModeActionTriggered(QAction *);
/**
* Let the user input a name for the selected item(s) and trigger
* a renaming afterwards.
*/
void slotRename();
/**
* Moves the selected items of the active view to the trash.
* This methods adds "shift means del" handling.
*/
void slotTrashActivated();
/**
* Deletes the selected items of the active view.
*/
void slotDeleteItems();
/**
* Switches between showing a preview of the file content and showing the icon.
*/
void togglePreview(bool);
/** Updates the state of the 'Show preview' menu action. */
void slotPreviewsShownChanged(bool shown);
/** Increases the size of the current set view mode. */
void zoomIn();
/** Decreases the size of the current set view mode. */
void zoomOut();
/** Resets the size of the current set view mode to default. */
void zoomReset();
/** Switches between a separate sorting and a mixed sorting of files and folders. */
void toggleSortFoldersFirst();
/**
* Updates the state of the 'Sort Ascending/Descending' action.
*/
void slotSortOrderChanged(Qt::SortOrder order);
/**
* Updates the state of the 'Sort Folders First' action.
*/
void slotSortFoldersFirstChanged(bool foldersFirst);
/**
* Switches between showing hidden files last or not.
*/
void toggleSortHiddenLast();
/**
* Updates the state of the 'Sort Hidden Last' action.
*/
void slotSortHiddenLastChanged(bool hiddenLast);
/**
* Updates the state of the 'Sort by' actions.
*/
void slotSortRoleChanged(const QByteArray &role);
/**
* Updates the state of the 'Zoom In' and 'Zoom Out' actions.
*/
void slotZoomLevelChanged(int current, int previous);
/**
* Switches on or off the displaying of additional information
* as specified by \a action.
*/
void toggleVisibleRole(QAction *action);
/**
* Changes the sorting of the current view.
*/
void slotSortTriggered(QAction *);
/**
* Updates the state of the 'Additional Information' actions.
*/
void slotVisibleRolesChanged(const QList<QByteArray> ¤t, const QList<QByteArray> &previous);
/**
* Switches between sorting by groups or not.
*/
void toggleGroupedSorting(bool);
/**
* Updates the state of the 'Categorized sorting' menu action.
*/
void slotGroupedSortingChanged(bool sortCategorized);
/**
* Switches between showing and hiding of hidden marked files
*/
void toggleShowHiddenFiles(bool);
/**
* Updates the state of the 'Show hidden files' menu action.
*/
void slotHiddenFilesShownChanged(bool shown);
/**
* Updates the state of the 'Create Folder...' action.
*/
void slotWriteStateChanged(bool isFolderWritable);
/**
* Opens the view properties dialog, which allows to modify the properties
* of the currently active view.
*/
void slotAdjustViewProperties();
/**
* Begins a duplicate operation on the selected files
*/
void slotDuplicate();
/**
* Connected to the "properties" action.
* Opens the properties dialog for the selected items of the
* active view. The properties dialog shows information
* like name, size and permissions.
*/
void slotProperties();
/**
* Copies the path of the first selected KFileItem into Clipboard.
*/
void slotCopyPath();
/**
* Changes the name of the menu that contains basic actions like "Copy", "Rename", ...
* The name is changed to something like "Actions for 3 Selected Items" to be extra
* explicit of how these basic actions are used.
*/
void slotSelectionChanged(const KFileItemList &selection);
private:
/**
* Create all the actions.
* This is called only once (by the constructor)
*/
void createActions(SelectionMode::ActionTextHelper *actionTextHelper);
/**
* Creates an action-group out of all roles from KFileItemModel.
* Dependent on the group-prefix either a radiobutton-group is
* created for sorting (prefix is "sort_by_") or a checkbox-group
* is created for additional information (prefix is "show_").
* The changes of actions are reported to slotSortTriggered() or
* toggleAdditionalInfo().
*/
QActionGroup *createFileItemRolesActionGroup(const QString &groupPrefix);
/**
* Returns the "switch to icons mode" action.
* Helper method for createActions();
*/
KToggleAction *iconsModeAction();
/**
* Returns the "switch to compact mode" action.
* Helper method for createActions();
*/
KToggleAction *compactModeAction();
/**
* Returns the "switch to details mode" action.
* Helper method for createActions();
*/
KToggleAction *detailsModeAction();
KActionCollection *m_actionCollection;
DolphinView *m_currentView;
QHash<QByteArray, KToggleAction *> m_sortByActions;
QHash<QByteArray, KToggleAction *> m_visibleRoles;
};
#endif /* DOLPHINVIEWACTIONHANDLER_H */
|