Qt: Preferences tree filter
[vlc.git] / modules / gui / qt4 / recents.hpp
blob88531ff1e28e1119a17adbc49779cd0d56524d21
1 /*****************************************************************************
2 * recents.cpp : Recents MRL (menu)
3 *****************************************************************************
4 * Copyright © 2006-2008 the VideoLAN team
5 * $Id$
7 * Authors: Ludovic Fauvet <etix@l0cal.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * ( at your option ) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef QVLC_RECENTS_H_
25 #define QVLC_RECENTS_H_
27 #include "qt4.hpp"
29 #include <QObject>
30 class QStringList;
31 class QRegExp;
32 class QSignalMapper;
34 #define RECENTS_LIST_SIZE 10
36 class RecentsMRL : public QObject
38 Q_OBJECT
40 public:
41 static RecentsMRL* getInstance( intf_thread_t* p_intf )
43 if(!instance)
44 instance = new RecentsMRL( p_intf );
45 return instance;
47 static void killInstance()
49 delete instance;
50 instance = NULL;
53 void addRecent( const QString & );
54 QStringList recents();
56 QSignalMapper *signalMapper;
58 private:
59 RecentsMRL( intf_thread_t* _p_intf );
60 virtual ~RecentsMRL();
62 static RecentsMRL *instance;
64 intf_thread_t *p_intf;
65 QStringList *stack;
66 QRegExp *filter;
67 bool isActive;
69 void load();
70 void save();
71 public slots:
72 void clear();
75 #endif