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

« back to all changes in this revision

Viewing changes to digikam/albumselectiontreeview.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:
35
35
#include "albumtreeview.h"
36
36
#include "albummodificationhelper.h"
37
37
 
38
 
namespace Digikam {
 
38
namespace Digikam
 
39
{
39
40
 
40
41
class AlbumSelectionTreeViewPriv;
41
42
 
47
48
 */
48
49
class AlbumSelectionTreeView: public AlbumTreeView
49
50
{
50
 
Q_OBJECT
 
51
    Q_OBJECT
51
52
public:
52
 
    AlbumSelectionTreeView(QWidget *parent, AlbumModel *model, AlbumModificationHelper *albumModificationHelper);
 
53
    AlbumSelectionTreeView(QWidget* parent, AlbumModel* model, AlbumModificationHelper* albumModificationHelper);
53
54
    ~AlbumSelectionTreeView();
54
55
 
55
56
    /**
64
65
     *
65
66
     * @param album the album to find duplicates in
66
67
     */
67
 
    void signalFindDuplicatesInAlbum(Album *album);
 
68
    void signalFindDuplicatesInAlbum(Album* album);
68
69
 
69
70
protected:
70
71
 
71
72
    virtual QString contextMenuTitle() const;
72
 
    virtual void addCustomContextMenuActions(ContextMenuHelper &cmh, Album *album);
73
 
    virtual void handleCustomContextMenuAction(QAction *action, AlbumPointer<Album> album);
 
73
    virtual void addCustomContextMenuActions(ContextMenuHelper& cmh, Album* album);
 
74
    virtual void handleCustomContextMenuAction(QAction* action, AlbumPointer<Album> album);
74
75
 
75
76
private:
76
77
 
79
80
     *
80
81
     * @param event event to process.
81
82
     */
82
 
    bool viewportEvent(QEvent *event);
 
83
    bool viewportEvent(QEvent* event);
83
84
 
84
85
private:
85
 
    AlbumSelectionTreeViewPriv *d;
 
86
    AlbumSelectionTreeViewPriv* d;
86
87
 
87
88
};
88
89