Files
strawberry/src/settings/backendsettingspage.h
Jonas Kvinge 30ac9697ea BackendSettingsPage: Increase device lineedit height
Bottom of the text was cut off with the breeze style
2025-02-07 21:27:17 +01:00

90 lines
2.5 KiB
C++

/*
* Strawberry Music Player
* Copyright 2013-2025, Jonas Kvinge <jonas@jkvinge.net>
*
* Strawberry is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Strawberry 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef BACKENDSETTINGSPAGE_H
#define BACKENDSETTINGSPAGE_H
#include "config.h"
#include <QObject>
#include <QVariant>
#include <QString>
#include "includes/shared_ptr.h"
#include "dialogs/errordialog.h"
#include "settingspage.h"
class SettingsDialog;
class Ui_BackendSettingsPage;
class Player;
class DeviceFinders;
class BackendSettingsPage : public SettingsPage {
Q_OBJECT
public:
explicit BackendSettingsPage(SettingsDialog *dialog, const SharedPtr<Player> player, const SharedPtr<DeviceFinders> device_finders, QWidget *parent = nullptr);
~BackendSettingsPage() override;
void Load() override;
void Save() override;
#ifdef HAVE_ALSA
enum class ALSAPluginType {
HW = 1,
PlugHW = 2,
PCM = 3
};
#endif
private Q_SLOTS:
void OutputChanged(const int index);
void DeviceSelectionChanged(const int index);
void DeviceStringChanged();
void RgPreampChanged(const int value);
void RgFallbackGainChanged(const int value);
void EbuR128TargetLevelChanged(const int value);
void radiobutton_alsa_hw_clicked(const bool checked);
void radiobutton_alsa_plughw_clicked(const bool checked);
void radiobutton_alsa_pcm_clicked(const bool checked);
void FadingOptionsChanged();
void BufferDefaults();
private:
void Load_Output(QString output, QVariant device);
void Load_Device(const QString &output, const QVariant &device);
#ifdef HAVE_ALSA
void SwitchALSADevices(const ALSAPluginType alsa_plugin_type);
#endif
void SelectDevice(const QString &device_new);
private:
Ui_BackendSettingsPage *ui_;
const SharedPtr<Player> player_;
const SharedPtr<DeviceFinders> device_finders_;
bool configloaded_;
ErrorDialog errordialog_;
QString output_current_;
QVariant device_current_;
};
#endif // BACKENDSETTINGSPAGE_H