aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/opus/translations/opus_plugin_fr.ts
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-08-24 19:51:37 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-08-24 19:51:37 +0000
commit300b532d6bfc546f1c6cd099324a44e27056ad3c (patch)
treefb837b8f3ffadd2f5dd761ab77cf0d75e7f782ce /src/plugins/Input/opus/translations/opus_plugin_fr.ts
parent777023827bbd4ab5402c93b98d1da30fc9cc0a09 (diff)
downloadqmmp-300b532d6bfc546f1c6cd099324a44e27056ad3c.tar.gz
qmmp-300b532d6bfc546f1c6cd099324a44e27056ad3c.tar.bz2
qmmp-300b532d6bfc546f1c6cd099324a44e27056ad3c.zip
fixed build (patch by RyoTa SimaMoto)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5481 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/opus/translations/opus_plugin_fr.ts')
0 files changed, 0 insertions, 0 deletions
eambrowser/streamwindow.h?id=bd16af99a8475c3847cad3f8036c25ae35a7f66d'>bd16af99a
87b310fbe
fc03804ef
514be73c9
0bc5775ba
d29d9953f



0bc5775ba
41c8a60a2
0bc5775ba




b917024aa
0bc5775ba






bd16af99a
87b310fbe


fc03804ef

87b310fbe
0bc5775ba

8a6f98263
87b310fbe
5ab256d56
87b310fbe
d29d9953f
0bc5775ba


87b310fbe



fc03804ef
0bc5775ba

514be73c9
41c8a60a2
514be73c9







8a6f98263
514be73c9









0bc5775ba
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
                                                                            
                                                                            
                                                                            













                                                                            
                                                                            




                                                                             
                                



                            
                            
            
              
                        
 



                   
   
                                         




                                   
                                            






                                        
                                                            


                                              

                        
                               

        
                                            
                                                              
                               
 
                           


                                  



                                                                         
                                                                                  

  
   
                                         







                                                                        
                                                                                    









                                                                                          
      
/***************************************************************************
 *   Copyright (C) 2012-2019 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 STREAMWINDOW_H
#define STREAMWINDOW_H

#include <QWidget>
#include <QSortFilterProxyModel>

class QNetworkAccessManager;
class QNetworkReply;
class QStandardItemModel;
class QSortFilterProxyModel;
class QMenu;
class QAction;
class StreamsProxyModel;

namespace Ui {
class StreamWindow;
}

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

    ~StreamWindow();

private slots:
    void showText(QNetworkReply *reply);
    void on_updatePushButton_clicked();
    void on_addPushButton_clicked();
    void on_filterLineEdit_textChanged(const QString &text);
    void execIceCastMenu(const QPoint &pos);
    void execFavoritesMenu(const QPoint &pos);
    void addToFavorites();
    void createStream();
    void editStream();
    void removeFromFavorites();

private:
    void closeEvent(QCloseEvent *) override;
    void readXml(QIODevice *input, QStandardItemModel *model);
    void createInitialConfig();

    Ui::StreamWindow *m_ui;
    QNetworkAccessManager *m_http;
    QNetworkReply *m_requestReply;
    QString m_artist, m_title;
    QStandardItemModel *m_iceCastModel, *m_favoritesModel;
    QSortFilterProxyModel *m_iceCastFilterModel, *m_favoritesFilterModel;
    QMenu *m_iceCastMenu;
    QMenu *m_favoritesMenu;
    QAction *m_addAction, *m_editAction, *m_removeAction, *m_addToFavoritesAction;
};

/**
    @author Ilya Kotov <forkotov02@ya.ru>
*/