~ubuntu-branches/ubuntu/utopic/smplayer/utopic-proposed

« back to all changes in this revision

Viewing changes to src/filechooser.h

  • Committer: Bazaar Package Importer
  • Author(s): Matvey Kozhev
  • Date: 2008-05-13 10:12:30 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080513101230-3rx6z4ulb2zkyd2t
Tags: 0.6.0-1
* New upstream release.
* Bumped debian/compat to 6.
* debian/control:
  - Require debhelper >= 6.
  - Relaxed the dependency of smplayer-translations on smplayer
    to Recommends. (Closes: #478713)
* Dropped debian/smplayer.desktop, changes applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  smplayer, GUI front-end for mplayer.
 
2
    Copyright (C) 2006-2008 Ricardo Villalba <rvm@escomposlinux.org>
 
3
 
 
4
    This program is free software; you can redistribute it and/or modify
 
5
    it under the terms of the GNU General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, or
 
7
    (at your option) any later version.
 
8
 
 
9
    This program is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
    GNU General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU General Public License
 
15
    along with this program; if not, write to the Free Software
 
16
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
*/
 
18
 
 
19
#ifndef _FILECHOOSER_H_
 
20
#define _FILECHOOSER_H_
 
21
 
 
22
#include "ui_filechooser.h"
 
23
#include <QFileDialog>
 
24
 
 
25
class FileChooser : public QWidget, public Ui::FileChooser
 
26
{
 
27
    Q_OBJECT
 
28
        Q_PROPERTY(QString text READ text WRITE setText)
 
29
        Q_PROPERTY(QString caption READ caption WRITE setCaption)
 
30
        Q_PROPERTY(QString filter READ filter WRITE setFilter)
 
31
        Q_PROPERTY(DialogType dialogType READ dialogType WRITE setDialogType)
 
32
        Q_PROPERTY(QFileDialog::Options options READ options WRITE setOptions)
 
33
 
 
34
public:
 
35
        enum DialogType { GetFileName = 0, GetDirectory = 1 };
 
36
 
 
37
    FileChooser( QWidget* parent = 0 );
 
38
    ~FileChooser();
 
39
 
 
40
        QLineEdit * lineEdit();
 
41
        QToolButton * toolButton();
 
42
 
 
43
        QString text() const;
 
44
        QString caption() const { return _caption; };
 
45
        QString filter() const { return _filter; };
 
46
        DialogType dialogType() const { return _type; };
 
47
        QFileDialog::Options options() const { return _options; };
 
48
 
 
49
public slots:
 
50
        void setText(const QString & text);
 
51
        void setCaption(const QString & caption) { _caption = caption; };
 
52
        void setFilter(const QString & filter) { _filter = filter; };
 
53
        void setDialogType( DialogType type) { _type = type; };
 
54
        void setOptions( QFileDialog::Options options) { _options = options; };
 
55
 
 
56
protected slots:
 
57
        virtual void on_button_clicked();
 
58
 
 
59
protected:
 
60
        QString _caption;
 
61
        QString _filter;
 
62
        DialogType _type;
 
63
        QFileDialog::Options _options;
 
64
};
 
65
 
 
66
#endif