~ubuntu-branches/ubuntu/precise/mupen64plus/precise

« back to all changes in this revision

Viewing changes to main/gui_qt4/romdirectorieslistwidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Sven Eckelmann
  • Date: 2009-09-08 22:17:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090908221700-yela0ckgc1xwiqtn
Tags: upstream-1.5+dfsg1
ImportĀ upstreamĀ versionĀ 1.5+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 
2
 *   Mupen64plus - romdirectorieslistwidget.h                              *
 
3
 *   Mupen64Plus homepage: http://code.google.com/p/mupen64plus/           *
 
4
 *   Copyright (C) 2008 Slougi                                             *
 
5
 *                                                                         *
 
6
 *   This program is free software; you can redistribute it and/or modify  *
 
7
 *   it under the terms of the GNU General Public License as published by  *
 
8
 *   the Free Software Foundation; either version 2 of the License, or     *
 
9
 *   (at your option) any later version.                                   *
 
10
 *                                                                         *
 
11
 *   This program is distributed in the hope that it will be useful,       *
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
14
 *   GNU General Public License for more details.                          *
 
15
 *                                                                         *
 
16
 *   You should have received a copy of the GNU General Public License     *
 
17
 *   along with this program; if not, write to the                         *
 
18
 *   Free Software Foundation, Inc.,                                       *
 
19
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
 
20
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
 
21
 
 
22
#ifndef __ROMDIRECTORIESLISTWIDGET_H__
 
23
#define __ROMDIRECTORIESLISTWIDGET_H__
 
24
 
 
25
/*
 
26
* This is a small wrapper class so we get a nice QStringList property that
 
27
* KConfigXT can handle automatically. This could be made into a general class.
 
28
*/
 
29
 
 
30
#include <QWidget>
 
31
#include <QStringList>
 
32
#include "ui_romdirectorieslistwidget.h"
 
33
 
 
34
class RomDirectoriesListWidget
 
35
    : public QWidget, private Ui::RomDirectoriesListWidget
 
36
{
 
37
    Q_OBJECT
 
38
    Q_PROPERTY(QStringList directories READ directories WRITE setDirectories
 
39
                USER true)
 
40
    public:
 
41
        RomDirectoriesListWidget(QWidget* parent = 0);
 
42
        const QStringList& directories() const;
 
43
 
 
44
    signals:
 
45
        void changed(const QStringList& list);
 
46
 
 
47
    public slots:
 
48
        void setDirectories(QStringList list);
 
49
 
 
50
    private slots:
 
51
        void add();
 
52
        void remove();
 
53
        void removeAll();
 
54
 
 
55
    private:
 
56
        void updateListWidget();
 
57
        QStringList m_directories;
 
58
};
 
59
 
 
60
#endif // __ROMDIRECTORIESLISTWIDGET_H__
 
61