aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/statusicon/settingsdialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* some visibility optionstrialuser022008-03-151-2/+0
| | | | git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@267 90c681e8-e032-0410-971d-27865f9a5e38
* improved general plugin configurationtrialuser022008-02-201-1/+0
| | | | git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@252 90c681e8-e032-0410-971d-27865f9a5e38
* new directory structurevovanec2008-02-071-0/+55
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@232 90c681e8-e032-0410-971d-27865f9a5e38
ed sample rate converter plugin' href='/qmmp/commit/lib/qmmp/Effect/srconverter/settingsdialog.h?id=2a9a78ddd34ac86dad084dc1102320645963df1c'>2a9a78ddd
2a9a78ddd


41c8a60a2
2a9a78ddd




b917024aa
2a9a78ddd


fcc385fc5
8a6f98263
2a9a78ddd

6bad117a8
2a9a78ddd



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
                                                                            
                                                                            
                                                                            













                                                                            
                                                                            




                                                                             


                              
                                         




                                     
                                              


                      
             
                                   

        
                            



      
/***************************************************************************
 *   Copyright (C) 2007-2012 by Ilya Kotov                                 *
 *   forkotov02@ya.ru                                                      *
 *                                                                         *
 *   This program 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 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 General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU 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.         *
 ***************************************************************************/
#ifndef SETTINGSDIALOG_H
#define SETTINGSDIALOG_H

#include <QDialog>
#include "ui_settingsdialog.h"

/**
    @author Ilya Kotov <forkotov02@ya.ru>
*/
class SettingsDialog : public QDialog
{
Q_OBJECT
public:
    SettingsDialog(QWidget *parent = nullptr);

    ~SettingsDialog();

public slots:
    virtual void accept() override;

private:
    Ui::SettingsDialog m_ui;

};

#endif