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 _PREFPERFORMANCE_H_
|
---|
20 | #define _PREFPERFORMANCE_H_
|
---|
21 |
|
---|
22 | #include "ui_prefperformance.h"
|
---|
23 | #include "prefwidget.h"
|
---|
24 |
|
---|
25 | #include "preferences.h"
|
---|
26 | #include "config.h"
|
---|
27 |
|
---|
28 | class PrefPerformance : public PrefWidget, public Ui::PrefPerformance
|
---|
29 | {
|
---|
30 | Q_OBJECT
|
---|
31 |
|
---|
32 | public:
|
---|
33 | PrefPerformance( QWidget * parent = 0, Qt::WindowFlags f = 0 );
|
---|
34 | ~PrefPerformance();
|
---|
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 setCacheForFiles(int n);
|
---|
49 | int cacheForFiles();
|
---|
50 |
|
---|
51 | void setCacheForStreams(int n);
|
---|
52 | int cacheForStreams();
|
---|
53 |
|
---|
54 | void setCacheForDVDs(int n);
|
---|
55 | int cacheForDVDs();
|
---|
56 |
|
---|
57 | void setCacheForAudioCDs(int n);
|
---|
58 | int cacheForAudioCDs();
|
---|
59 |
|
---|
60 | void setCacheForVCDs(int n);
|
---|
61 | int cacheForVCDs();
|
---|
62 |
|
---|
63 | void setCacheForTV(int n);
|
---|
64 | int cacheForTV();
|
---|
65 |
|
---|
66 | void setPriority(int n);
|
---|
67 | int priority();
|
---|
68 |
|
---|
69 | void setFrameDrop(bool b);
|
---|
70 | bool frameDrop();
|
---|
71 |
|
---|
72 | void setHardFrameDrop(bool b);
|
---|
73 | bool hardFrameDrop();
|
---|
74 |
|
---|
75 | void setSkipLoop(Preferences::H264LoopFilter value);
|
---|
76 | Preferences::H264LoopFilter skipLoop();
|
---|
77 |
|
---|
78 | #if !SMART_DVD_CHAPTERS
|
---|
79 | void setFastChapterSeeking(bool b);
|
---|
80 | bool fastChapterSeeking();
|
---|
81 | #endif
|
---|
82 |
|
---|
83 | void setFastAudioSwitching(Preferences::OptionState value);
|
---|
84 | Preferences::OptionState fastAudioSwitching();
|
---|
85 |
|
---|
86 | void setThreads(int v);
|
---|
87 | int threads();
|
---|
88 |
|
---|
89 | void setCoreavcUsage(bool b);
|
---|
90 | bool coreavcUsage();
|
---|
91 |
|
---|
92 | protected:
|
---|
93 | virtual void retranslateStrings();
|
---|
94 | };
|
---|
95 |
|
---|
96 | #endif
|
---|