1 | /* smplayer, GUI front-end for mplayer.
|
---|
2 | Copyright (C) 2006-2011 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 _PREFDRIVES_H_
|
---|
20 | #define _PREFDRIVES_H_
|
---|
21 |
|
---|
22 | #include "ui_prefdrives.h"
|
---|
23 | #include "prefwidget.h"
|
---|
24 | #include "config.h"
|
---|
25 |
|
---|
26 | class Preferences;
|
---|
27 |
|
---|
28 | class PrefDrives : public PrefWidget, public Ui::PrefDrives
|
---|
29 | {
|
---|
30 | Q_OBJECT
|
---|
31 |
|
---|
32 | public:
|
---|
33 | PrefDrives( QWidget * parent = 0, Qt::WindowFlags f = 0 );
|
---|
34 | ~PrefDrives();
|
---|
35 |
|
---|
36 | virtual QString sectionName();
|
---|
37 | virtual QPixmap sectionIcon();
|
---|
38 |
|
---|
39 | // Pass data to the dialog
|
---|
40 | void setData(Preferences * pref);
|
---|
41 |
|
---|
42 | // Apply changes
|
---|
43 | void getData(Preferences * pref);
|
---|
44 |
|
---|
45 | protected:
|
---|
46 | virtual void createHelp();
|
---|
47 |
|
---|
48 | void setDVDDevice( QString dir );
|
---|
49 | QString dvdDevice();
|
---|
50 |
|
---|
51 | void setCDRomDevice( QString dir );
|
---|
52 | QString cdromDevice();
|
---|
53 |
|
---|
54 | #if DVDNAV_SUPPORT
|
---|
55 | void setUseDVDNav(bool b);
|
---|
56 | bool useDVDNav();
|
---|
57 | #endif
|
---|
58 |
|
---|
59 | void updateDriveCombos(bool detect_cd_devices = false);
|
---|
60 |
|
---|
61 | protected slots:
|
---|
62 | void on_check_drives_button_clicked();
|
---|
63 |
|
---|
64 | protected:
|
---|
65 | virtual void retranslateStrings();
|
---|
66 | };
|
---|
67 |
|
---|
68 | #endif
|
---|