~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to digikam/tagfolderview.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-21 23:19:11 UTC
  • mfrom: (1.2.33 upstream) (3.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20101221231911-z9jip7s5aht1jqn9
Tags: 2:1.7.0-1ubuntu1
* Merge from Debian Experimental. Remaining Ubuntu changes:
  - Export .pot name and copy to plugins in debian/rules
  - Version build-depends on kipi-plugins-dev to ensure build is against the
    same version on all archs
* Drop debian/patches/kubuntu_01_linker.diff, incoporated upstream
* Remove patches directory and unused patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
class TagFolderViewPriv;
41
41
class TagFolderView: public TagTreeView
42
42
{
43
 
Q_OBJECT
 
43
    Q_OBJECT
44
44
 
45
45
public:
46
46
 
50
50
     * @param parent parent for Qt's parent child mechanism
51
51
     * @param model tag model to display
52
52
     */
53
 
    TagFolderView(QWidget *parent, TagModel *model);
 
53
    TagFolderView(QWidget* parent, TagModel* model);
54
54
 
55
55
    /**
56
56
     * Destructor.
86
86
     * @param album tag on which the context menu will be created. May be null if
87
87
     *              it is requested on no tag entry
88
88
     */
89
 
    virtual void addCustomContextMenuActions(ContextMenuHelper &cmh, Album *album);
 
89
    virtual void addCustomContextMenuActions(ContextMenuHelper& cmh, Album* album);
90
90
 
91
91
    /**
92
92
     * Hook method to handle the custom context menu actions that were added
97
97
     * @param album the tag on which the context menu was requested. May be null
98
98
     *              if there was no
99
99
     */
100
 
    virtual void handleCustomContextMenuAction(QAction *action, AlbumPointer<Album> album);
 
100
    virtual void handleCustomContextMenuAction(QAction* action, AlbumPointer<Album> album);
101
101
 
102
102
private Q_SLOTS:
103
103
 
104
 
    void slotTagNewFromABCMenu(const QString &personName);
 
104
    void slotTagNewFromABCMenu(const QString& personName);
105
105
 
106
106
private:
107
 
    TagFolderViewPriv *d;
 
107
    TagFolderViewPriv* d;
108
108
 
109
109
};
110
110