summaryrefslogtreecommitdiff
path: root/src/ui/preferencesdlg.h
blob: 09d740f55dba213982dfb3ad595c4711fb9117cc (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
#pragma once

#include <kdialogbase.h>

class TQCheckBox;
class TQComboBox;
class TQSpinBox;

class PreferencesDlg : public KDialogBase
{
    TQ_OBJECT

public:
    PreferencesDlg( TQWidget *parent = 0 );
    void load();

signals:
    void settingsChanged();

protected slots:
    void slotOk();
    void slotApply();

private slots:
    void onPopupModeChanged( int idx );

private:
    void save();

    TQCheckBox *m_dockInTray;
    TQComboBox *m_popupMode;
    TQCheckBox *m_popupShowOutput;
    TQCheckBox *m_popupShowMic;
    TQCheckBox *m_popupShowApps;
    TQCheckBox *m_showRecTray;
    TQCheckBox *m_confirmQuit;
    TQSpinBox  *m_scrollStep;

    TQCheckBox *m_noTabs;
    TQCheckBox *m_showOutput;
    TQCheckBox *m_showInput;
    TQCheckBox *m_showPlayback;
    TQCheckBox *m_showRecording;
};