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

« back to all changes in this revision

Viewing changes to importer/dialogpage.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>
28
28
 
29
29
// Local
30
30
 
31
 
 
32
31
class KGuiItem;
33
32
 
34
 
namespace Gwenview {
35
 
 
 
33
namespace Gwenview
 
34
{
36
35
 
37
36
class DialogPagePrivate;
38
 
class DialogPage : public QWidget {
39
 
        Q_OBJECT
 
37
class DialogPage : public QWidget
 
38
{
 
39
    Q_OBJECT
40
40
public:
41
 
        DialogPage(QWidget* parent = 0);
42
 
        ~DialogPage();
 
41
    DialogPage(QWidget* parent = 0);
 
42
    ~DialogPage();
43
43
 
44
 
        void removeButtons();
45
 
        void setText(const QString&);
46
 
        int addButton(const KGuiItem&);
47
 
        int exec();
 
44
    void removeButtons();
 
45
    void setText(const QString&);
 
46
    int addButton(const KGuiItem&);
 
47
    int exec();
48
48
 
49
49
private Q_SLOTS:
50
 
        void slotMapped(int);
 
50
    void slotMapped(int);
51
51
 
52
52
private:
53
 
        DialogPagePrivate* const d;
 
53
    DialogPagePrivate* const d;
54
54
};
55
55
 
56
 
 
57
56
} // namespace
58
57
 
59
58
#endif /* DIALOGPAGE_H */