/* Copyright (c) 2008 Volker Krause This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef AKAPPLICATION_H #define AKAPPLICATION_H #include #ifndef _WIN32_WCE #include #endif class QCoreApplication; class QApplication; /** * D-Bus session bus monitoring and command line handling. */ class AkApplication : public QObject { Q_OBJECT public: void parseCommandLine(); void setDescription( const QString &desc ) { mDescription = desc; } #ifndef _WIN32_WCE void addCommandLineOptions( const boost::program_options::options_description &desc ); const boost::program_options::variables_map& commandLineArguments() const { return mCmdLineArguments; } #endif void printUsage() const; /** Returns the instance identifier when running in multi-instance mode, empty string otherwise. */ static QString instanceIdentifier(); /** Returns @c true if we run in multi-instance mode. */ static bool hasInstanceIdentifier(); /** Forward to Q[Core]Application for convenience. */ int exec(); protected: AkApplication( int & argc, char ** argv ); void init(); QScopedPointer mApp; private: /** Change instane identifier, for unit tests only. */ static void setInstanceIdentifier( const QString& instanceId ); friend void akTestSetInstanceIdentifier(const QString&); private slots: void pollSessionBus() const; private: int mArgc; char **mArgv; QString mDescription; QString mInstanceId; static AkApplication* sInstance; #ifndef _WIN32_WCE boost::program_options::options_description mCmdLineOptions; boost::program_options::variables_map mCmdLineArguments; #endif }; template class AkApplicationImpl : public AkApplication { public: AkApplicationImpl( int &argc, char ** argv ) : AkApplication( argc, argv ) { mApp.reset( new T( argc, argv ) ); init(); } }; typedef AkApplicationImpl AkCoreApplication; typedef AkApplicationImpl AkGuiApplication; #endif