Rev 2161 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
/***************************************************************************
begin : May 2005
copyright : (C) 2005 by Craig Bradney
email : cbradney@zip.com.au
***************************************************************************/
/***************************************************************************
* *
* ScApp program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef SCRIBUSAPP_H
#define SCRIBUSAPP_H
#include <qapplication.h>
#include <qstring.h>
class ScribusQApp : public QApplication
{
Q_OBJECT
public:
ScribusQApp ( int & argc, char ** argv );
int init(bool useGUI, bool showSplash, QString lang, QString file);
QStringList getLang(QString lang);
void installTranslators(QStringList langs);
void changeGUILanguage(QString);
};
#endif