2018-12-23 12:03:08 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* gui/settings/SoundPage.h *
|
|
|
|
* *
|
|
|
|
* Copyright (c) 2009 Retroshare Team <retroshare.project@gmail.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
#ifndef _SOUNDPAGE_H
|
|
|
|
#define _SOUNDPAGE_H
|
|
|
|
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
2012-02-18 09:55:50 -05:00
|
|
|
#include <retroshare-gui/configpage.h>
|
2009-07-23 13:11:51 -04:00
|
|
|
#include "ui_SoundPage.h"
|
|
|
|
|
2009-08-19 18:15:16 -04:00
|
|
|
class SoundPage : public ConfigPage
|
2009-07-23 13:11:51 -04:00
|
|
|
{
|
2012-01-22 17:58:23 -05:00
|
|
|
Q_OBJECT
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
public:
|
2012-01-22 17:58:23 -05:00
|
|
|
/** Default Constructor */
|
2013-10-18 17:10:33 -04:00
|
|
|
SoundPage(QWidget * parent = 0, Qt::WindowFlags flags = 0);
|
2012-01-22 17:58:23 -05:00
|
|
|
/** Default Destructor */
|
|
|
|
~SoundPage();
|
2009-07-23 13:11:51 -04:00
|
|
|
|
2012-01-22 17:58:23 -05:00
|
|
|
/** Loads the settings for this page */
|
2012-02-18 09:55:50 -05:00
|
|
|
virtual void load();
|
|
|
|
|
2016-08-27 12:15:13 -04:00
|
|
|
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/sound.svg") ; }
|
2012-02-18 09:55:50 -05:00
|
|
|
virtual QString pageName() const { return tr("Sound") ; }
|
2013-10-09 05:31:40 -04:00
|
|
|
virtual QString helpText() const { return ""; }
|
2009-07-23 13:11:51 -04:00
|
|
|
|
|
|
|
private slots:
|
2012-01-22 17:58:23 -05:00
|
|
|
void eventChanged(QTreeWidgetItem *current, QTreeWidgetItem *previous);
|
|
|
|
void filenameChanged(QString filename);
|
2015-06-07 08:40:25 -04:00
|
|
|
void defaultButtonClicked();
|
2012-01-22 17:58:23 -05:00
|
|
|
void browseButtonClicked();
|
|
|
|
void playButtonClicked();
|
2017-01-30 15:38:06 -05:00
|
|
|
void updateSounds();
|
2009-08-19 18:15:16 -04:00
|
|
|
|
2009-07-23 13:11:51 -04:00
|
|
|
private:
|
2012-01-22 17:58:23 -05:00
|
|
|
QTreeWidgetItem *addGroup(const QString &name);
|
2012-10-21 17:38:55 -04:00
|
|
|
QTreeWidgetItem *addItem(QTreeWidgetItem *groupItem, const QString &name, const QString &event);
|
2012-01-22 17:58:23 -05:00
|
|
|
|
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::SoundPage ui;
|
2009-07-23 13:11:51 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|