~ubuntu-branches/ubuntu/trusty/scribus/trusty

« back to all changes in this revision

Viewing changes to scribus/scribusapp.h

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2013-05-16 20:34:07 UTC
  • mfrom: (1.1.13) (32.1.2 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130516203407-ztj7ebsivoo41dih
Tags: 1.4.2.dfsg+r18267-1ubuntu2
Avoid qreal/double type clashes on ARM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <QString>
26
26
 
27
27
#include "scribusapi.h"
 
28
#include "downloadmanager/scdlmgr.h"
28
29
class ScribusCore;
29
30
class ScribusMainWindow;
30
31
 
36
37
                ScribusQApp( int & argc, char ** argv );
37
38
                ~ScribusQApp();
38
39
                int init();
39
 
                void initLang();
40
40
                void parseCommandLine();
41
41
                void changeGUILanguage(const QString & lang);
42
42
                /*!
66
66
                void neverSplash(bool splashOff);
67
67
                bool neverSplashExists();
68
68
                const QString& currGUILanguage() {return GUILang;};
 
69
                ScDLManager* dlManager() { return m_scDLMgr; }
 
70
 
 
71
        public slots:
 
72
 
 
73
        protected slots:
 
74
                void downloadComplete(const QString& t);
69
75
 
70
76
        private:
71
77
                ScribusCore* m_ScCore;
 
78
                void initLang();
 
79
                void initDLMgr();
72
80
                void showHeader();
73
81
                void showVersion();
74
82
                /*!
95
103
                QString prefsUserFile;
96
104
                QList<QString> filesToLoad;
97
105
                QString fileName;
 
106
                ScDLManager *m_scDLMgr;
98
107
 
99
108
        protected:
100
109
                virtual bool event(QEvent *event);