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

#include <kdialogbase.h>

class TQCheckBox;
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:
    void save();

    TQCheckBox *m_dockInTray;
    TQCheckBox *m_showPopup;
    TQCheckBox *m_showRecTray;
    TQCheckBox *m_confirmQuit;
    TQSpinBox  *m_scrollStep;

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