1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz (peter.penz@gmx.at) *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
9 * This program 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 *
12 * GNU General Public License for more details. *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
18 ***************************************************************************/
20 #ifndef DOLPHINCONTROLLER_H
21 #define DOLPHINCONTROLLER_H
23 #include <dolphinview.h>
25 #include <QtCore/QObject>
26 #include <libdolphin_export.h>
36 * @brief Allows to control Dolphin views and to react on state changes.
38 * One instance of a DolphinController can be assigned to a variable number of
39 * Dolphin views (DolphinIconsView, DolphinDetailsView) by passing it in
43 * DolphinController* controller = new DolphinController(parent);
44 * DolphinDetailsView* detailsView = new DolphinDetailsView(parent, controller);
45 * DolphinIconsView* iconsView = new DolphinIconsView(parent, controller);
48 * The Dolphin view assures that the controller gets informed about selection changes,
49 * when an item should be triggered and a lot more. The controller emits the corresponding signals
50 * so that the receiver may react on those changes.
52 class LIBDOLPHINPRIVATE_EXPORT DolphinController
: public QObject
57 explicit DolphinController(QObject
* parent
);
58 virtual ~DolphinController();
60 /** Sets the URL to \a url and emits the signal urlChanged(). */
61 void setUrl(const KUrl
& url
);
62 inline const KUrl
& url() const;
64 void triggerContextMenuRequest(const QPoint
& pos
);
66 void triggerActivation();
68 void indicateDroppedUrls(const KUrl::List
& urls
,
69 const QModelIndex
& index
,
72 void indicateSortingChange(DolphinView::Sorting sorting
);
74 void indicateSortOrderChange(Qt::SortOrder order
);
76 void setShowPreview(bool show
);
77 inline bool showPreview() const;
79 void setShowAdditionalInfo(bool show
);
80 inline bool showAdditionalInfo() const;
83 inline void setZoomInPossible(bool possible
);
84 inline bool isZoomInPossible() const;
86 void triggerZoomOut();
87 inline void setZoomOutPossible(bool possible
);
88 inline bool isZoomOutPossible() const;
90 // TODO: remove this method when the issue #160611 is solved in Qt 4.4
91 static void drawHoverIndication(QWidget
* widget
,
97 * Emits the signal itemTriggered(). The method should be invoked by the
98 * controller parent whenever the user has triggered an item. */
99 void triggerItem(const QModelIndex
& index
);
102 * Emits the signal itemEntered(). The method should be invoked by
103 * the controller parent whenever the mouse cursor is above an item.
105 void emitItemEntered(const QModelIndex
& index
);
108 * Emits the signal viewportEntered(). The method should be invoked by
109 * the controller parent whenever the mouse cursor is above the viewport.
111 void emitViewportEntered();
115 * Is emitted if the URL for the Dolphin controller has been changed
118 void urlChanged(const KUrl
& url
);
121 * Is emitted if a context menu should be opened.
122 * @param pos Position relative to the view widget where the
123 * context menu should be opened. It is recommended
124 * to get the corresponding model index from
127 void requestContextMenu(const QPoint
& pos
);
130 * Is emitted if the view has been activated by e. g. a mouse click.
135 * Is emitted if the URLs \a urls have been dropped to the index
136 * \a index. \a source indicates the widget where the dragging has
139 void urlsDropped(const KUrl::List
& urls
,
140 const QModelIndex
& index
,
143 /** Is emitted if the sorting has been changed to \a sorting. */
144 void sortingChanged(DolphinView::Sorting sorting
);
146 /** Is emitted if the sort order has been changed to \a sort order. */
147 void sortOrderChanged(Qt::SortOrder order
);
150 * Is emitted if the state for showing previews has been
151 * changed to \a show.
153 void showPreviewChanged(bool show
);
156 * Is emitted if the state for showing additional info has been
157 * changed to \a show.
159 void showAdditionalInfoChanged(bool show
);
162 * Is emitted if the item with the index \a index should be triggered.
163 * Usually triggering on a directory opens the directory, triggering
164 * on a file opens the corresponding application.
166 void itemTriggered(const QModelIndex
& index
);
169 * Is emitted if the mouse cursor has entered the item
172 void itemEntered(const QModelIndex
& index
);
175 * Is emitted if the mouse cursor has entered
177 void viewportEntered();
179 /** Is emitted if the view should zoom in. */
182 /** Is emitted if the view should zoom out. */
187 bool m_showAdditionalInfo
;
188 bool m_zoomInPossible
;
189 bool m_zoomOutPossible
;
193 const KUrl
& DolphinController::url() const
198 bool DolphinController::showPreview() const
200 return m_showPreview
;
203 bool DolphinController::showAdditionalInfo() const
205 return m_showAdditionalInfo
;
208 void DolphinController::setZoomInPossible(bool possible
)
210 m_zoomInPossible
= possible
;
213 bool DolphinController::isZoomInPossible() const
215 return m_zoomInPossible
;
218 void DolphinController::setZoomOutPossible(bool possible
)
220 m_zoomOutPossible
= possible
;
223 bool DolphinController::isZoomOutPossible() const
225 return m_zoomOutPossible
;