summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profileeditordialog.h
blob: e7a88e988db45cef58c38b9397b142b46c819762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef PROFILE_EDITOR_DIALOG
#define PROFILE_EDITOR_DIALOG

#include <qdialog.h>
#include <opie2/otabwidget.h>

#include "profile.h"

class MetaFactory;
class EditBase;
class QTabWidget;
class QHBoxLayout;
class QLineEdit;
class QComboBox;
class QCheckBox;
class QLabel;
class QScrollView;
class ProfileDialogWidget;

class ProfileEditorDialog : public QDialog {
    Q_OBJECT
public:
    ProfileEditorDialog(MetaFactory* fact,
                        const Profile& prof );
    ProfileEditorDialog(MetaFactory* fact );
    ~ProfileEditorDialog();
    Profile profile()const;



public slots:
    void accept();

private slots:
    void slotConActivated(const QString& );
    void slotTermActivated( const QString& );
    void slotKeyActivated(const QString&);
private:
    void initUI();
    QString profName()const;
    QCString profType()const;

    MetaFactory* m_fact;
    QHBoxLayout* m_lay;
    Profile m_prof;

    QLineEdit *m_name;
    QComboBox *m_conCmb, *m_termCmb;
    QCheckBox *m_autoConnect;

    QScrollView *m_svCon, *m_svTerm;

    QWidget *m_tabCon, *m_tabTerm, *m_tabKey;
    ProfileDialogWidget* m_con, *m_term, *m_key;
    QHBoxLayout *m_layCon, *m_layTerm, *m_layKey;
    Opie::Ui::OTabWidget *tabWidget;
    QWidget *tabprof;
    int m_showconntab;
};

#endif