~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to kmix/gui/kmixprefdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * KMix -- KDE's full featured mini mixer
 
3
 *
 
4
 *
 
5
 * Copyright (C) 2000 Stefan Schimanski <1Stein@gmx.de>
 
6
 *
 
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.
 
11
 *
 
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.
 
16
 *
 
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.
 
20
 */
 
21
 
 
22
#ifndef KMIXPREFDLG_H
 
23
#define KMIXPREFDLG_H
 
24
 
 
25
#include <kdialog.h>
 
26
 
 
27
class KMixPrefWidget;
 
28
class QCheckBox;
 
29
class QRadioButton;
 
30
 
 
31
class 
 
32
KMixPrefDlg : public KDialog
 
33
{
 
34
   Q_OBJECT
 
35
 
 
36
   friend class KMixWindow;
 
37
 
 
38
  public: 
 
39
   KMixPrefDlg( QWidget *parent );
 
40
   ~KMixPrefDlg();
 
41
 
 
42
  signals:
 
43
   void signalApplied( KMixPrefDlg *prefDlg );
 
44
 
 
45
   private slots:
 
46
      void apply();
 
47
      void dockIntoPanelChange(int state);
 
48
 
 
49
  private:
 
50
   QFrame *m_generalTab;
 
51
   KMixPrefWidget *m_mixPrefTab;
 
52
 
 
53
   QCheckBox *m_dockingChk;
 
54
   QCheckBox *m_volumeChk;
 
55
   QCheckBox *m_showTicks;
 
56
   QCheckBox *m_showLabels;
 
57
   QCheckBox *m_onLogin;
 
58
   QRadioButton *_rbVertical;
 
59
   QRadioButton *_rbHorizontal;
 
60
};
 
61
 
 
62
#endif // KMIXPREFDLG_H