kde-workspace/phonon/kcm/main.cpp
2014-11-15 04:16:00 +02:00

106 lines
3.2 KiB
C++

/* This file is part of the KDE project
Copyright (C) 2006-2007 Matthias Kretz <kretz@kde.org>
Copyright (C) 2010 Colin Guthrie <cguthrie@mandriva.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) version 3.
This library 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 library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "main.h"
#include <QBoxLayout>
#include <KDE/KAboutData>
#include <KDE/KDialog>
#include <KDE/KPluginFactory>
#include <KDE/KTabWidget>
#include <kdeversion.h>
#include "devicepreference.h"
#include "backendselection.h"
#ifdef HAVE_PULSEAUDIO
# include "audiosetup.h"
#endif
K_PLUGIN_FACTORY(PhononKcmFactory, registerPlugin<PhononKcm>();)
K_EXPORT_PLUGIN(PhononKcmFactory("kcm_phonon"))
PhononKcm::PhononKcm(QWidget *parent, const QVariantList &args)
: KCModule(PhononKcmFactory::componentData(), parent, args)
{
KAboutData *about = new KAboutData(
"kcm_phonon", 0, ki18n("Phonon Configuration Module"),
KDE_VERSION_STRING, KLocalizedString(), KAboutData::License_GPL,
ki18n("Copyright 2006 Matthias Kretz"));
about->addAuthor(ki18n("Matthias Kretz"), KLocalizedString(), "kretz@kde.org");
about->addAuthor(ki18n("Colin Guthrie"), KLocalizedString(), "colin@mageia.org");
setAboutData(about);
setLayout(new QHBoxLayout);
layout()->setMargin(0);
layout()->setSpacing(0);
m_tabs = new KTabWidget(this);
layout()->addWidget(m_tabs);
m_devicePreferenceWidget = new Phonon::DevicePreference(this);
m_tabs->addTab(m_devicePreferenceWidget, i18n("Device Preference"));
m_backendSelection = new BackendSelection(this);
m_tabs->addTab(m_backendSelection, i18n("Backend"));
load();
connect(m_backendSelection, SIGNAL(changed()), SLOT(changed()));
connect(m_devicePreferenceWidget, SIGNAL(changed()), SLOT(changed()));
setButtons( KCModule::Default|KCModule::Apply|KCModule::Help );
#ifdef HAVE_PULSEAUDIO
m_speakerSetup = new AudioSetup(this);
m_speakerSetup->setVisible(false);
connect(m_speakerSetup, SIGNAL(ready()), SLOT(speakerSetupReady()));
#endif
}
void PhononKcm::load()
{
m_devicePreferenceWidget->load();
m_backendSelection->load();
}
void PhononKcm::save()
{
m_devicePreferenceWidget->save();
m_backendSelection->save();
}
void PhononKcm::defaults()
{
m_devicePreferenceWidget->defaults();
m_backendSelection->defaults();
}
#ifdef HAVE_PULSEAUDIO
void PhononKcm::speakerSetupReady()
{
m_tabs->insertTab(1, m_speakerSetup, i18n("Audio Hardware Setup"));
m_devicePreferenceWidget->pulseAudioEnabled();
connect(m_speakerSetup, SIGNAL(changed()), SLOT(changed()));
}
#endif
#include "main.moc"
// vim: ts=4