~x2go/x2go/x2goclient_master

« back to all changes in this revision

Viewing changes to src/configdialog.h

  • Committer: Mihai Moldovan
  • Date: 2015-03-04 20:15:47 UTC
  • Revision ID: git-v1:b7398771a7abd84ddcff407063edb95dd0a205d3
general: move *.cpp and *.h files to src/ and *.ts files to src/i18n/.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************************************
 
2
*   Copyright (C) 2005-2015 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 <http://www.gnu.org/licenses/>. *
 
16
***************************************************************************/
 
17
 
 
18
#ifndef CONFIGDIALOG_H
 
19
#define CONFIGDIALOG_H
 
20
#include "x2goclientconfig.h"
 
21
 
 
22
#include <QDialog>
 
23
 
 
24
class QLineEdit;
 
25
class QCheckBox;
 
26
class QSpinBox;
 
27
class QPushButton;
 
28
class QRadioButton;
 
29
class QButtonGroup;
 
30
class PrintWidget;
 
31
class ConnectionWidget;
 
32
class SettingsWidget;
 
33
class MediaWidget;
 
34
class QTabWidget;
 
35
class QGroupBox;
 
36
#if defined (Q_OS_WIN) && defined (CFGCLIENT )
 
37
class XSettingsWidget;
 
38
#endif
 
39
/**
 
40
        @author Oleksandr Shneyder <oleksandr.shneyder@obviously-nice.de>
 
41
*/
 
42
class ConfigDialog : public QDialog
 
43
{
 
44
    Q_OBJECT
 
45
public:
 
46
    ConfigDialog ( QWidget * parent,
 
47
                   Qt::WFlags f = 0 );
 
48
    ~ConfigDialog();
 
49
#ifdef Q_OS_DARWIN
 
50
    static    QString findXDarwin ( QString& version,
 
51
                                    QString path="" );
 
52
    static    QString retMaxXDarwinVersion ( QString v1,
 
53
            QString v2 );
 
54
    static    QString getXDarwinDirectory();
 
55
    void    printXDarwinVersionWarning ( QString version );
 
56
#endif
 
57
#ifdef Q_OS_WIN
 
58
    static    QString getCygwinDir ( const QString& dir );
 
59
#endif
 
60
 
 
61
private:
 
62
    QTabWidget* tabWidg;
 
63
    QCheckBox* cbStartEmbed;
 
64
    QLineEdit* ldapBase;
 
65
    QLineEdit* ldapServer;
 
66
    QSpinBox*  port;
 
67
    QLineEdit* ldapServer1;
 
68
    QSpinBox*  port1;
 
69
    PrintWidget* pwid;
 
70
    QLineEdit* ldapServer2;
 
71
    bool embedMode;
 
72
    QSpinBox*  port2;
 
73
    QSpinBox*  clientSshPort;
 
74
    QPushButton* ok;
 
75
    bool advOptionsShown;
 
76
    QGroupBox* gbLDAP;
 
77
 
 
78
    QPushButton* defaults;
 
79
    QPushButton* advancedOptions;
 
80
 
 
81
    QLineEdit* leXexec;
 
82
    QLineEdit* leCmdOpt;
 
83
    QSpinBox* sbDisp;
 
84
    QLineEdit* leXexecDir;
 
85
    QRadioButton* rbX[3];
 
86
    QPushButton* pbOpenExec;
 
87
    QButtonGroup* bgRadio;
 
88
    ConnectionWidget* conWidg;
 
89
    SettingsWidget* setWidg;
 
90
    MediaWidget* mediaWidget;
 
91
 
 
92
#if defined ( Q_OS_WIN) && defined (CFGCLIENT )
 
93
    XSettingsWidget* xsetWidg;
 
94
#endif
 
95
 
 
96
    QGroupBox *gbTrayIcon;
 
97
    QCheckBox *cbMinimizeTray;
 
98
    QCheckBox *cbMaxmizeTray;
 
99
    QCheckBox *cbNoClose;
 
100
    QCheckBox *cbMinToTray;
 
101
 
 
102
 
 
103
public slots:
 
104
    void slot_accepted();
 
105
    void slot_checkOkStat();
 
106
private slots:
 
107
#ifdef Q_OS_DARWIN
 
108
    void slot_selectXDarwin();
 
109
    void slot_findXDarwin();
 
110
#endif
 
111
private slots:
 
112
    void slotAdvClicked();
 
113
    void slotDefaults();
 
114
};
 
115
 
 
116
#endif