source: smplayer/trunk/src/filechooser.h@ 97

Last change on this file since 97 was 93, checked in by Silvan Scherrer, 15 years ago

smplayer: 0.6.9

File size: 2.3 KB
Line 
1/* smplayer, GUI front-end for mplayer.
2 Copyright (C) 2006-2010 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
25class 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
34public:
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
49public 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
56signals:
57 void fileChanged(QString file);
58
59protected slots:
60 virtual void on_button_clicked();
61
62protected:
63 QString _caption;
64 QString _filter;
65 DialogType _type;
66 QFileDialog::Options _options;
67};
68
69#endif
Note: See TracBrowser for help on using the repository browser.