1 /**************************************************************************
2 *   Copyright (C) 2005-2020 by Oleksandr Shneyder                         *
3 *                              <o.shneyder@phoca-gmbh.de>                 *
4 *                                                                         *
5 *   This program is free software; you can redistribute it and/or modify  *
6 *   it under the terms of the GNU General Public License as published by  *
7 *   the Free Software Foundation; either version 2 of the License, or     *
8 *   (at your option) any later version.                                   *
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, see <https://www.gnu.org/licenses/>. *
16 ***************************************************************************/
17 
18 #ifndef CONFIGWIDGET_H
19 #define CONFIGWIDGET_H
20 
21 #include <QFrame>
22 #include "x2goclientconfig.h"
23 
24 /**
25 	@author Oleksandr Shneyder <oleksandr.shneyder@obviously-nice.de>
26 */
27 class ONMainWindow;
28 class ConfigWidget : public QFrame
29 {
30 	public:
31 		ConfigWidget ( QString id, ONMainWindow * mv,
32 		               QWidget * parent = 0, Qt::WindowFlags f = 0 );
33 
34 		~ConfigWidget();
35 	protected:
36 		bool miniMode;
37 		bool embedMode;
38 		QString sessionId;
39 		ONMainWindow* mainWindow;
40 };
41 
42 #endif
43