Final polisihing for KDE4:
[kdemultimedia.git] / kmix / kmixprefdlg.h
blob36aa9420d805d254a489e917b800d0f7fdf8bce4
1 /*
2 * KMix -- KDE's full featured mini mixer
5 * Copyright (C) 2000 Stefan Schimanski <1Stein@gmx.de>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this program; if not, write to the Free
19 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 #ifndef KMIXPREFDLG_H
23 #define KMIXPREFDLG_H
25 #include <kdialog.h>
27 class KMixPrefWidget;
28 class KMixApp;
29 class QCheckBox;
30 class QRadioButton;
32 class
33 KMixPrefDlg : public KDialog
35 Q_OBJECT
37 friend class KMixWindow;
39 public:
40 KMixPrefDlg( QWidget *parent );
41 ~KMixPrefDlg();
43 signals:
44 void signalApplied( KMixPrefDlg *prefDlg );
46 private slots:
47 void apply();
48 void dockIntoPanelChange(int state);
50 private:
51 QFrame *m_generalTab;
52 KMixApp *m_mixApp;
53 KMixPrefWidget *m_mixPrefTab;
55 QCheckBox *m_dockingChk;
56 QCheckBox *m_volumeChk;
57 QCheckBox *m_showTicks;
58 QCheckBox *m_showLabels;
59 QCheckBox *m_onLogin;
60 QRadioButton *_rbVertical;
61 QRadioButton *_rbHorizontal;
64 #endif // KMIXPREFDLG_H