1 | /* smplayer, GUI front-end for mplayer.
|
---|
2 | Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org>
|
---|
3 |
|
---|
4 | This program is free software; you can redistribute it and/or modify
|
---|
5 | it under the terms of the GNU General Public License as published by
|
---|
6 | the Free Software Foundation; either version 2 of the License, or
|
---|
7 | (at your option) any later version.
|
---|
8 |
|
---|
9 | This program is distributed in the hope that it will be useful,
|
---|
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
12 | GNU General Public License for more details.
|
---|
13 |
|
---|
14 | You should have received a copy of the GNU General Public License
|
---|
15 | along with this program; if not, write to the Free Software
|
---|
16 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef _SMPLAYER_H_
|
---|
20 | #define _SMPLAYER_H_
|
---|
21 |
|
---|
22 | #include <QObject>
|
---|
23 | #include <QString>
|
---|
24 | #include <QStringList>
|
---|
25 | #include "basegui.h"
|
---|
26 |
|
---|
27 | class SMPlayer : public QObject
|
---|
28 | {
|
---|
29 | public:
|
---|
30 | enum ExitCode { ErrorArgument = -3, NoAction = -2, NoRunningInstance = -1, NoError = 0, NoExit = 1 };
|
---|
31 |
|
---|
32 | SMPlayer(const QString & config_path = QString::null, QObject * parent = 0);
|
---|
33 | ~SMPlayer();
|
---|
34 |
|
---|
35 | //! Process arguments. If ExitCode != NoExit the application must be exited.
|
---|
36 | ExitCode processArgs(QStringList args);
|
---|
37 |
|
---|
38 | BaseGui * gui();
|
---|
39 |
|
---|
40 | void start();
|
---|
41 |
|
---|
42 | private:
|
---|
43 | #ifndef PORTABLE_APP
|
---|
44 | void createConfigDirectory();
|
---|
45 | #endif
|
---|
46 | void showInfo();
|
---|
47 |
|
---|
48 | BaseGui * main_window;
|
---|
49 |
|
---|
50 | QStringList files_to_play;
|
---|
51 | QString subtitle_file;
|
---|
52 | QString actions_list; //!< Actions to be run on startup
|
---|
53 | QString gui_to_use;
|
---|
54 |
|
---|
55 | // Change position and size
|
---|
56 | bool move_gui;
|
---|
57 | QPoint gui_position;
|
---|
58 |
|
---|
59 | bool resize_gui;
|
---|
60 | QSize gui_size;
|
---|
61 |
|
---|
62 | // Options to pass to gui
|
---|
63 | int close_at_end; // -1 = not set, 1 = true, 0 false
|
---|
64 | int start_in_fullscreen; // -1 = not set, 1 = true, 0 false
|
---|
65 | };
|
---|
66 |
|
---|
67 | #endif
|
---|