~ubuntu-branches/debian/sid/kde-baseapps/sid

« back to all changes in this revision

Viewing changes to dolphin/src/dolphinpart.h

  • Committer: Package Import Robot
  • Author(s): Modestas Vainius, Eshat Cakar, Pino Toscano
  • Date: 2012-06-09 22:18:08 UTC
  • mfrom: (4.2.1) (6.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20120609221808-h1l0ekd5qmb8nefr
Tags: 4:4.8.4-1
* New upstream release.

[ Eshat Cakar ]
* Add watch file.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.4.
* Update installed files.

[ Pino Toscano ]
* Move files of the konqueror documentation from kde-baseapps-data to
  konqueror itself.

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
    /**
129
129
     * Handles clicking on an item
130
130
     */
131
 
    void slotItemTriggered(const KFileItem& item);
 
131
    void slotItemActivated(const KFileItem& item);
132
132
    /**
133
133
     * Creates a new window showing the content of \a url.
134
134
     */
135
135
    void createNewWindow(const KUrl& url);
136
136
    /**
137
137
     * Opens the context menu on the current mouse position.
 
138
     * @pos           Position in screen coordinates.
138
139
     * @item          File item context. If item is null, the context menu
139
140
     *                should be applied to \a url.
140
141
     * @url           URL which contains \a item.
141
142
     * @customActions Actions that should be added to the context menu,
142
143
     *                if the file item is null.
143
144
     */
144
 
    void slotOpenContextMenu(const KFileItem& item,
 
145
    void slotOpenContextMenu(const QPoint& pos,
 
146
                             const KFileItem& item,
145
147
                             const KUrl& url,
146
148
                             const QList<QAction*>& customActions);
147
149