]> cloud.milkyroute.net Git - dolphin.git/blob - src/dolphinpart.h
Implement the --select option in konqueror again, using Peter's nice work in Dolphin.
[dolphin.git] / src / dolphinpart.h
1 /* This file is part of the KDE project
2 Copyright (c) 2007 David Faure <faure@kde.org>
3
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.
8
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.
13
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.
18 */
19
20 #ifndef DOLPHINPART_H
21 #define DOLPHINPART_H
22
23 #include <kparts/part.h>
24 #include <kparts/browserextension.h>
25
26 #include <QItemSelectionModel>
27
28 class KNewFileMenu;
29 class DolphinViewActionHandler;
30 class QActionGroup;
31 class KAction;
32 class KFileItemList;
33 class KFileItem;
34 class DolphinPartBrowserExtension;
35 class DolphinSortFilterProxyModel;
36 class DolphinRemoteEncoding;
37 class DolphinModel;
38 class KDirLister;
39 class DolphinView;
40 class KAboutData;
41
42 class DolphinPart : public KParts::ReadOnlyPart
43 {
44 Q_OBJECT
45 // Used by konqueror. Technically it means "we want undo enabled if
46 // there are things in the undo history and the current part is a dolphin part".
47 // Even though it's konqueror doing the undo...
48 Q_PROPERTY( bool supportsUndo READ supportsUndo )
49
50 Q_PROPERTY( QString currentViewMode READ currentViewMode WRITE setCurrentViewMode )
51
52 // Used by konqueror when typing something like /home/dfaure/*.diff in the location bar
53 Q_PROPERTY( QString nameFilter READ nameFilter WRITE setNameFilter )
54
55 // Used by konqueror to implement the --select command-line option
56 Q_PROPERTY( KUrl::List filesToSelect READ filesToSelect WRITE setFilesToSelect )
57
58 public:
59 explicit DolphinPart(QWidget* parentWidget, QObject* parent, const QVariantList& args);
60 ~DolphinPart();
61
62 static KAboutData* createAboutData();
63
64 /**
65 * Standard KParts::ReadOnlyPart openUrl method.
66 * Called by Konqueror to view a directory in DolphinPart.
67 */
68 virtual bool openUrl(const KUrl& url);
69
70 /// see the supportsUndo property
71 bool supportsUndo() const { return true; }
72
73 /**
74 * Used by konqueror for setting the view mode
75 * @param viewModeName internal name for the view mode, like "icons"
76 * Those names come from the Actions line in dolphinpart.desktop,
77 * and have to match the name of the KActions.
78 */
79 void setCurrentViewMode(const QString& viewModeName);
80
81 /**
82 * Used by konqueror for displaying the current view mode.
83 * @see setCurrentViewMode
84 */
85 QString currentViewMode() const;
86
87 /// Returns the view owned by this part; used by DolphinPartBrowserExtension
88 DolphinView* view() { return m_view; }
89
90 /**
91 * Sets a name filter, like *.diff
92 */
93 void setNameFilter(const QString& nameFilter);
94
95 /**
96 * Returns the current name filter. Used by konqueror to show it in the URL.
97 */
98 QString nameFilter() const { return m_nameFilter; }
99
100 protected:
101 /**
102 * We reimplement openUrl so no need to implement openFile.
103 */
104 virtual bool openFile() { return true; }
105
106 Q_SIGNALS:
107 /**
108 * Emitted when the view mode changes. Used by konqueror.
109 */
110 void viewModeChanged();
111
112
113 /**
114 * Emitted whenever the current URL is about to be changed.
115 */
116 void aboutToOpenURL();
117
118 private Q_SLOTS:
119 void slotCompleted(const KUrl& url);
120 void slotCanceled(const KUrl& url);
121 void slotMessage(const QString& msg);
122 void slotErrorMessage(const QString& msg);
123 /**
124 * Shows the information for the item \a item inside the statusbar. If the
125 * item is null, the default statusbar information is shown.
126 */
127 void slotRequestItemInfo(const KFileItem& item);
128 /**
129 * Handles clicking on an item
130 */
131 void slotItemTriggered(const KFileItem& item);
132 /**
133 * Creates a new window showing the content of \a url.
134 */
135 void createNewWindow(const KUrl& url);
136 /**
137 * Opens the context menu on the current mouse position.
138 * @item File item context. If item is null, the context menu
139 * should be applied to \a url.
140 * @url URL which contains \a item.
141 * @customActions Actions that should be added to the context menu,
142 * if the file item is null.
143 */
144 void slotOpenContextMenu(const KFileItem& item,
145 const KUrl& url,
146 const QList<QAction*>& customActions);
147
148 /**
149 * Asks the host to open the URL \a url if the current view has
150 * a different URL.
151 */
152 void slotRequestUrlChange(const KUrl& url);
153
154 /**
155 * Informs the host that we are opening \a url (e.g. after a redirection
156 * coming from KDirLister).
157 * Testcase 1: fish://localhost
158 * Testcase 2: showing a directory that is being renamed by another window (#180156)
159 */
160 void slotRedirection(const KUrl& oldUrl, const KUrl& newUrl);
161
162 /**
163 * Updates the state of the 'Edit' menu actions and emits
164 * the signal selectionChanged().
165 */
166 void slotSelectionChanged(const KFileItemList& selection);
167
168 /**
169 * Updates the text of the paste action dependent from
170 * the number of items which are in the clipboard.
171 */
172 void updatePasteAction();
173
174 /**
175 * Connected to all "Go" menu actions provided by DolphinPart
176 */
177 void slotGoTriggered(QAction* action);
178
179 /**
180 * Connected to the "editMimeType" action
181 */
182 void slotEditMimeType();
183
184 /**
185 * Connected to the "select_items_matching" action.
186 * Opens a dialog which permits to select all items matching a pattern like "*.jpg".
187 */
188 void slotSelectItemsMatchingPattern();
189
190 /**
191 * Connected to the "unselect_items_matching" action.
192 * Opens a dialog which permits to unselect all items matching a pattern like "*.jpg".
193 */
194 void slotUnselectItemsMatchingPattern();
195
196 /**
197 * Open a terminal window, starting with the current directory.
198 */
199 void slotOpenTerminal();
200
201 /**
202 * Updates the 'Create New...' sub menu, just before it's shown.
203 */
204 void updateNewMenu();
205
206 /**
207 * Updates the number of items (= number of files + number of
208 * directories) in the statusbar. If files are selected, the number
209 * of selected files and the sum of the filesize is shown.
210 */
211 void updateStatusBar();
212
213 /**
214 * Notify container of folder loading progress.
215 */
216 void updateProgress(int percent);
217
218 void createDirectory();
219
220 /**
221 * Called by konqueror --select
222 */
223 void setFilesToSelect(const KUrl::List& files);
224 KUrl::List filesToSelect() const { return KUrl::List(); } // silence moc
225
226 private:
227 void createActions();
228 void createGoAction(const char* name, const char* iconName,
229 const QString& text, const QString& url,
230 QActionGroup* actionGroup);
231
232 void openSelectionDialog(const QString& title, const QString& text,
233 QItemSelectionModel::SelectionFlags command);
234
235 QItemSelection childrenMatchingPattern(const QModelIndex& parent, const QRegExp& patternRegExp);
236
237 private:
238 DolphinView* m_view;
239 DolphinViewActionHandler* m_actionHandler;
240 DolphinRemoteEncoding* m_remoteEncoding;
241 KDirLister* m_dirLister;
242 DolphinModel* m_dolphinModel;
243 DolphinSortFilterProxyModel* m_proxyModel;
244 DolphinPartBrowserExtension* m_extension;
245 KNewFileMenu* m_newMenu;
246 QString m_nameFilter;
247 Q_DISABLE_COPY(DolphinPart)
248 };
249
250 class DolphinPartBrowserExtension : public KParts::BrowserExtension
251 {
252 Q_OBJECT
253 public:
254 DolphinPartBrowserExtension( DolphinPart* part )
255 : KParts::BrowserExtension( part ), m_part(part) {}
256
257 virtual void restoreState(QDataStream &stream);
258 virtual void saveState(QDataStream &stream);
259
260 public Q_SLOTS:
261 void cut();
262 void copy();
263 void paste();
264 void pasteTo(const KUrl&);
265 void reparseConfiguration();
266
267 private:
268 DolphinPart* m_part;
269 };
270
271 #endif /* DOLPHINPART_H */