aboutsummaryrefslogtreecommitdiff
path: root/src/ui/playlistcontrol.cpp
diff options
context:
space:
mode:
authormotsyo <motsyo@90c681e8-e032-0410-971d-27865f9a5e38>2009-08-09 18:59:48 +0000
committermotsyo <motsyo@90c681e8-e032-0410-971d-27865f9a5e38>2009-08-09 18:59:48 +0000
commitc76d9c74842449385e085afd1db8dc08718c7a0e (patch)
tree35480e696d9c7c0ab598b5848a7dad5c98ad0282 /src/ui/playlistcontrol.cpp
parentc840cac739329c18aba8397b593f358f35412d97 (diff)
downloadqmmp-c76d9c74842449385e085afd1db8dc08718c7a0e.tar.gz
qmmp-c76d9c74842449385e085afd1db8dc08718c7a0e.tar.bz2
qmmp-c76d9c74842449385e085afd1db8dc08718c7a0e.zip
updated and fixed Ukrainian translation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1134 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/ui/playlistcontrol.cpp')
0 files changed, 0 insertions, 0 deletions
d-27865f9a5e38> 2008-12-31 13:22:43 +0000 committer trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> 2008-12-31 13:22:43 +0000 added mplayer and phonon plugins' href='/qmmp/commit/src/plugins/Input/mplayer/decodermplayerfactory.h?h=main&id=b9e03a0340c9f16330142caed6f8a09f1e42f0a4'>b9e03a034
7a3c89bf2
b9e03a034
7a3c89bf2
b9e03a034

7a3c89bf2
b9e03a034

7a3c89bf2
b9e03a034
7a3c89bf2
b9e03a034
7a3c89bf2
b9e03a034





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
                                                                            
                                                                            
















                                                                             

                              





                    

                                
                          
                               
 
                                                          

        
                            

       
                                              
                                               
                                                
                                                                                
                                                                                 





                                                   
/***************************************************************************
 *   Copyright (C) 2006-2009 by Ilya Kotov                                 *
 *   forkotov02@hotmail.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.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/
#ifndef MPLAYERENGINEFACTORY_H
#define MPLAYERENGINEFACTORY_H

#include <QObject>
#include <QString>
#include <QIODevice>
#include <QWidget>

#include <qmmp/abstractengine.h>
#include <qmmp/enginefactory.h>
#include <qmmp/fileinfo.h>
#include <qmmp/metadatamodel.h>

class MplayerEngineFactory : public QObject, EngineFactory
{
Q_OBJECT
Q_INTERFACES(EngineFactory);

public:
    const EngineProperties properties() const;
    bool supports(const QString &source) const;
    AbstractEngine *create(QObject *parent = 0);
    QList<FileInfo *> createPlayList(const QString &fileName, bool useMetaData);
    MetaDataModel* createMetaDataModel(const QString &path, QObject *parent = 0);
    void showSettings(QWidget *parent);
    void showAbout(QWidget *parent);
    QTranslator *createTranslator(QObject *parent);
};

#endif