aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/general.cpp
blob: 3ed2e0843e87aaf25ae99b433025254078e38cf0 (plain) (blame)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/***************************************************************************
 *   Copyright (C) 2008 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.             *
 ***************************************************************************/

#include <QtGui>
#include <QObject>
#include <QList>
#include <QApplication>

#include "general.h"


static QList<GeneralFactory*> *factories = 0;
static QStringList files;

static void checkFactories()
{
    if (! factories)
    {
        files.clear();
        factories = new QList<GeneralFactory *>;

        QDir pluginsDir (qApp->applicationDirPath());
        pluginsDir.cdUp();
        pluginsDir.cd("./"LIB_DIR"/qmmp/General");
        foreach (QString fileName, pluginsDir.entryList(QDir::Files))
        {
            QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
            QObject *plugin = loader.instance();
            if (loader.isLoaded())
                qDebug("General: plugin loaded - %s", qPrintable(fileName));
            else
                qWarning("General: %s", qPrintable(loader.errorString ()));

            GeneralFactory *factory = 0;
            if (plugin)
                factory = qobject_cast<GeneralFactory *>(plugin);

            if (factory)
            {
                factories->append(factory);
                files << pluginsDir.absoluteFilePath(fileName);
                qApp->installTranslator(factory->createTranslator(qApp));
            }
        }
    }
}

General::General(QObject *parent)
        : QObject(parent)
{
    Q_UNUSED(parent);
}


General::~General()
{}

void General::setState(const uint&)
{}

void General::setSongInfo(const SongInfo &song)
{}

void General::setTime(int)
{}


QList<GeneralFactory*> *General::generalFactories()
{
    checkFactories();
    return factories;
}

void General::setVolume(int left, int right)
{}

QStringList General::generalFiles()
{
    checkFactories();
    return files;
}

void General::setEnabled(GeneralFactory* factory, bool enable)
{
    checkFactories();
    if (!factories->contains(factory))
        return;

    QString name = files.at(factories->indexOf(factory)).section('/',-1);
    QSettings settings ( QDir::homePath() +"/.qmmp/qmmprc", QSettings::IniFormat );
    QStringList genList = settings.value("General/plugin_files").toStringList();

    if (enable)
    {
        if (!genList.contains(name))
            genList << name;
    }
    else
        genList.removeAll(name);
    settings.setValue("General/plugin_files", genList);
}

bool General::isEnabled(GeneralFactory* factory)
{
    checkFactories();
    if (!factories->contains(factory))
        return FALSE;
    QString name = files.at(factories->indexOf(factory)).section('/',-1);
    QSettings settings ( QDir::homePath() +"/.qmmp/qmmprc", QSettings::IniFormat );
    QStringList genList = settings.value("General/plugin_files").toStringList();
    return genList.contains(name);
}

id=2d622fd9bcb8da9dd3f3206e296cd6a701fc9d12'>2d622fd9b
21f99dd91
2d622fd9b
90d3aeb64
2d622fd9b
21f99dd91
2d622fd9b
90d3aeb64
2d622fd9b


90d3aeb64
2d622fd9b



21f99dd91

2d622fd9b



90d3aeb64
2d622fd9b


90d3aeb64
2d622fd9b
21f99dd91
2d622fd9b

21f99dd91
2d622fd9b

21f99dd91
2d622fd9b





90d3aeb64
2d622fd9b


21f99dd91
2d622fd9b
90d3aeb64
2d622fd9b

21f99dd91
2d622fd9b
21f99dd91
2d622fd9b
90d3aeb64
2d622fd9b





21f99dd91
2d622fd9b
21f99dd91
2d622fd9b





21f99dd91
2d622fd9b
21f99dd91
2d622fd9b
90d3aeb64
21f99dd91
2d622fd9b



90d3aeb64
21f99dd91
90d3aeb64

2d622fd9b
90d3aeb64
2d622fd9b


90d3aeb64
2d622fd9b



90d3aeb64
21f99dd91
2d622fd9b



90d3aeb64
2d622fd9b


90d3aeb64
2d622fd9b
21f99dd91
2d622fd9b


21f99dd91
2d622fd9b

21f99dd91
2d622fd9b



90d3aeb64
2d622fd9b




21f99dd91
2d622fd9b


21f99dd91

2d622fd9b

21f99dd91
2d622fd9b


90d3aeb64

21f99dd91
2d622fd9b

21f99dd91
2d622fd9b
90d3aeb64
21f99dd91

2d622fd9b
90d3aeb64
2d622fd9b


21f99dd91
9b63c3e46
21f99dd91
9b63c3e46
21f99dd91
9b63c3e46

90d3aeb64
21f99dd91

9b63c3e46
21f99dd91


90d3aeb64
21f99dd91

9b63c3e46
90d3aeb64

21f99dd91
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
                                                                            
                                                                            



















                                                                             
                                 
                     




                            
                                               



                    
                                                    

                        
                      

                        
                       

                          
                         

                            
                         

                              
                           


                            







                          





                            
                                                   



                 
                                            
 
                                                                           

                                                       
                         



                                            
                                                                                         
         
                                                                





                                                                          
                             
         
                                                      





                                  
                                                                                                    
         
                                                   
             
                                                                                   
                                                                            


                
                                                                                                     
                 
                                                                                       
                 
                                     
                 
                                                                                      


                    
                                                                                  



                                                         

                                                                           



             
                                                                                                 


                                                                      
                                                                    
 
                                                                                            

                                                                                        
                                                                                          

                
                                                                         





                                                                    
                                                                                             


     
                                              
 
                                                                           

                                                       
                         
     
                                                                                         
         
                                                                





                                                                          
                             
         
                                                      





                                  
                                                                                                    
         
                                                   
             
                                                                                           
                                                                            



                                                                        
                                                                                                                     
                                                                                                  

                                                                                      
                 
                                                                                          


                    
                                                                                      



                                                              
                                                                                                                            
                                                                



             
                                                                                                 


                                                                      
                                                                    
 
                                                                                                          


                                                                                           
                                                                                 

                
                                                                         



         
                                                                                             




                                                                     
                                           


                                                       

                                                                                                            

 
                                             


                                                       

                                                                                                           
                                 

 
                                            
 
                                                                           

                                                                            
     
                                                                


                     
 
                                            
 
                                                       
                                         

                                                            
                                                                   

 
                                           


                                                      
                                                                          

                                      
                                          

                                                                                                    
 
/***************************************************************************
 *   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.             *
 ***************************************************************************/


#include <QKeyEvent>
#include <qmmpui/playlistmodel.h>
#include "playlist.h"
#include "listwidget.h"
#include "keyboardmanager.h"
#include "mainwindow.h"


KeyboardManager::KeyboardManager (PlayList* pl)
{
    m_playlist = pl;
}

bool KeyboardManager::handleKeyPress (QKeyEvent* ke)
{
    bool handled = TRUE;
    switch (ke->key())
    {
        case Qt::Key_Up:
            keyUp (ke);
            break;
        case Qt::Key_Down:
            keyDown (ke);
            break;
        case Qt::Key_PageUp:
            keyPgUp (ke);
            break;
        case Qt::Key_PageDown:
            keyPgDown (ke);
            break;
        case Qt::Key_Enter:
        case Qt::Key_Return:
            keyEnter (ke);
            break;
        case Qt::Key_Home:
            keyHome(ke);
            break;
         case Qt::Key_End:
            keyEnd(ke);
            break;
        default:
            handled = FALSE;
    }
    return handled;
}

bool KeyboardManager::handleKeyRelease (QKeyEvent*)
{
    return FALSE;
}

void KeyboardManager::keyUp (QKeyEvent * ke)
{
    QList<int> rows = m_playlist->listWidget()->model()->getSelectedRows();
    ListWidget* list_widget = m_playlist->listWidget();

    if (rows.count() > 0)
    {
       if(rows[0] == 0 && rows.count() == 1)
          return;

        if (! (ke->modifiers() & Qt::ShiftModifier || ke->modifiers() & Qt::AltModifier))
        {
            m_playlist->listWidget()->model()->clearSelection();