~ubuntu-branches/ubuntu/precise/gwenview/precise-proposed

« back to all changes in this revision

Viewing changes to app/folderviewcontextmanageritem.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:54 UTC
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20111215141754-z043hyx69dulbggf
Tags: upstream-4.7.90
Import upstream version 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// vim: set tabstop=4 shiftwidth=4 noexpandtab:
 
1
// vim: set tabstop=4 shiftwidth=4 expandtab:
2
2
/*
3
3
Gwenview: an image viewer
4
4
Copyright 2009 Aurélien Gâteau <agateau@kde.org>
32
32
 
33
33
class KUrl;
34
34
 
35
 
namespace Gwenview {
36
 
 
 
35
namespace Gwenview
 
36
{
37
37
 
38
38
struct FolderViewContextManagerItemPrivate;
39
 
class FolderViewContextManagerItem : public AbstractContextManagerItem {
40
 
        Q_OBJECT
 
39
class FolderViewContextManagerItem : public AbstractContextManagerItem
 
40
{
 
41
    Q_OBJECT
41
42
public:
42
 
        FolderViewContextManagerItem(ContextManager*);
43
 
        ~FolderViewContextManagerItem();
 
43
    FolderViewContextManagerItem(ContextManager*);
 
44
    ~FolderViewContextManagerItem();
44
45
 
45
46
Q_SIGNALS:
46
 
        void urlChanged(const KUrl&);
 
47
    void urlChanged(const KUrl&);
47
48
 
48
49
private Q_SLOTS:
49
 
        void slotCurrentDirUrlChanged();
50
 
        void expandToSelectedUrl();
51
 
        void slotRowsInserted(const QModelIndex&, int start, int end);
52
 
        void slotActivated(const QModelIndex&);
 
50
    void slotCurrentDirUrlChanged();
 
51
    void expandToSelectedUrl();
 
52
    void slotRowsInserted(const QModelIndex&, int start, int end);
 
53
    void slotActivated(const QModelIndex&);
53
54
 
54
55
private:
55
 
        friend class FolderViewContextManagerItemPrivate;
56
 
        FolderViewContextManagerItemPrivate* const d;
 
56
    friend class FolderViewContextManagerItemPrivate;
 
57
    FolderViewContextManagerItemPrivate* const d;
57
58
};
58
59
 
59
 
 
60
60
} // namespace
61
61
 
62
62
#endif /* FOLDERVIEWCONTEXTMANAGERITEM_H */