~ubuntu-branches/ubuntu/quantal/gwenview/quantal-proposed

« back to all changes in this revision

Viewing changes to app/mainwindow.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac, Philip Muškovac, Scott Kitterman
  • Date: 2011-12-24 18:54:55 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20111224185455-zxffs6i6m5cwwuze
Tags: 4:4.7.95-0ubuntu1
[ Philip Muškovac ]
* New upstream release candiate

[ Scott Kitterman ]
* Fix Ubuntu Vcs- header in debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <QAction>
25
25
 
26
26
// KDE
27
 
#include <kxmlguiwindow.h>
 
27
#include <KXmlGuiWindow>
28
28
 
29
29
class QModelIndex;
30
30
 
35
35
 
36
36
class ViewMainPage;
37
37
class ContextManager;
38
 
class MessageBubble;
39
38
 
40
39
class MainWindow : public KXmlGuiWindow
41
40
{
50
49
 
51
50
    void startSlideShow();
52
51
 
53
 
    ViewMainPage* documentPanel() const;
 
52
    ViewMainPage* viewMainPage() const;
54
53
 
55
54
    ContextManager* contextManager() const;
56
55
 
58
57
 
59
58
    void setDistractionFreeMode(bool);
60
59
 
61
 
    void showMessageBubble(MessageBubble*);
62
 
 
63
60
public Q_SLOTS:
64
61
    void showStartMainPage();
65
62