summaryrefslogtreecommitdiffstats
path: root/kmix/kmixprefdlg.cpp
blob: 2a2793e4870fe8e39b910b8aed68fe9f296e40b0 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
 * KMix -- KDE's full featured mini mixer
 *
 *
 * Copyright (C) 2000 Stefan Schimanski <1Stein@gmx.de>
 * Copyright (C) 2001 Preston Brown <pbrown@kde.org>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this program; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#include <tqbuttongroup.h>
#include <tqlayout.h>
#include <tqwhatsthis.h>
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <tqradiobutton.h>

#include <klocale.h>
// For "kapp"
#include <kapplication.h>

#include "kmix.h"
#include "kmixprefdlg.h"
#include "kmixerwidget.h"


KMixPrefDlg::KMixPrefDlg( TQWidget *tqparent )
    : KDialogBase(  Plain, i18n( "Configure" ),
          Ok|Cancel|Apply, Ok, tqparent )
{
   // general buttons
   m_generalTab = plainPage( /* i18n("&General") */ );

   TQBoxLayout *tqlayout = new TQVBoxLayout( m_generalTab );
   tqlayout->setSpacing( KDialog::spacingHint() );

   m_dockingChk = new TQCheckBox( i18n("&Dock into panel"), m_generalTab );
   tqlayout->addWidget( m_dockingChk );
   TQWhatsThis::add(m_dockingChk, i18n("Docks the mixer into the KDE panel"));

   m_volumeChk = new TQCheckBox(i18n("Enable system tray &volume control"),
			       m_generalTab);
   tqlayout->addWidget(m_volumeChk);

   m_showTicks = new TQCheckBox( i18n("Show &tickmarks"), m_generalTab );
   tqlayout->addWidget( m_showTicks );
   TQWhatsThis::add(m_showTicks,
           i18n("Enable/disable tickmark scales on the sliders"));

   m_showLabels = new TQCheckBox( i18n("Show &labels"), m_generalTab );
   tqlayout->addWidget( m_showLabels );
   TQWhatsThis::add(m_showLabels,
           i18n("Enables/disables description labels above the sliders"));


   m_onLogin = new TQCheckBox( i18n("Restore volumes on login"), m_generalTab );
   tqlayout->addWidget( m_onLogin );

   m_dockIconMuting = new TQCheckBox( 
            i18n("Middle click on system tray icon toggles muting"), m_generalTab );
   tqlayout->addWidget( m_dockIconMuting );

   TQBoxLayout *numbersLayout = new TQHBoxLayout( tqlayout );
   TQButtonGroup *numbersGroup = new TQButtonGroup( 3, Qt::Horizontal, i18n("Numbers"), m_generalTab );
   numbersGroup->setRadioButtonExclusive(true);
   TQLabel* qlbl = new TQLabel(  i18n("Volume Values: "), m_generalTab );
   _rbNone = new TQRadioButton( i18n("&None"), m_generalTab );
   _rbAbsolute = new TQRadioButton( i18n("A&bsolute"), m_generalTab );
   _rbRelative   = new TQRadioButton( i18n("&Relative"), m_generalTab );
   numbersGroup->insert(_rbNone);
   numbersGroup->insert(_rbAbsolute);
   numbersGroup->insert(_rbRelative);
   numbersGroup->hide();

   numbersLayout->add(qlbl);
   numbersLayout->add(_rbNone);
   numbersLayout->add(_rbAbsolute);
   numbersLayout->add(_rbRelative);
   numbersLayout->addStretch();

   m_autoStartChk = new TQCheckBox( i18n("&Autostart"), m_generalTab );
   tqlayout->addWidget( m_autoStartChk );
   TQWhatsThis::add(m_autoStartChk, i18n("Automatically start mixer when you login"));

   TQBoxLayout *orientationLayout = new TQHBoxLayout( tqlayout );
   TQButtonGroup* orientationGroup = new TQButtonGroup( 2, Qt::Horizontal, i18n("Qt::Orientation"), m_generalTab );
   //orientationLayout->add(orientationGroup);
   orientationGroup->setRadioButtonExclusive(true);
   TQLabel* qlb = new TQLabel( i18n("Slider Qt::Orientation: "), m_generalTab );
   _rbHorizontal = new TQRadioButton(i18n("&Horizontal"), m_generalTab );
   _rbVertical   = new TQRadioButton(i18n("&Vertical"  ), m_generalTab );
   orientationGroup->insert(_rbHorizontal);
   orientationGroup->insert(_rbVertical);
   orientationGroup->hide();
   //orientationLayout->add(qlb);
   //orientationLayout->add(orientationGroup);

   orientationLayout->add(qlb);
   orientationLayout->add(_rbHorizontal);
   orientationLayout->add(_rbVertical);

   orientationLayout->addStretch();
   tqlayout->addStretch();
   enableButtonSeparator(true);

   connect( this, TQT_SIGNAL(applyClicked()), this, TQT_SLOT(apply()) );
   connect( this, TQT_SIGNAL(okClicked()), this, TQT_SLOT(apply()) );
}

KMixPrefDlg::~KMixPrefDlg()
{
}

void KMixPrefDlg::apply()
{
   // disabling buttons => users sees that we are working
   enableButtonOK(false);
   enableButtonCancel(false);
   enableButtonApply(false);
   kapp->processEvents();
   emit signalApplied( this );
   // re-enable (in case of "Apply")
   enableButtonOK(true);
   enableButtonCancel(true);
   enableButtonApply(true);
}

#include "kmixprefdlg.moc"