source: smplayer/trunk/src/prefperformance.h@ 188

Last change on this file since 188 was 188, checked in by Silvan Scherrer, 8 years ago

SMPlayer: update trunk to version 17.1.0

  • Property svn:eol-style set to LF
File size: 2.4 KB
Line 
1/* smplayer, GUI front-end for mplayer.
2 Copyright (C) 2006-2017 Ricardo Villalba <rvm@users.sourceforge.net>
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
28class PrefPerformance : public PrefWidget, public Ui::PrefPerformance
29{
30 Q_OBJECT
31
32public:
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
45protected:
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#ifdef TV_SUPPORT
64 void setCacheForTV(int n);
65 int cacheForTV();
66#endif
67
68#ifdef Q_OS_WIN
69 void setPriority(int n);
70 int priority();
71#endif
72
73 void setFrameDrop(bool b);
74 bool frameDrop();
75
76 void setHardFrameDrop(bool b);
77 bool hardFrameDrop();
78
79 void setSkipLoop(Preferences::H264LoopFilter value);
80 Preferences::H264LoopFilter skipLoop();
81
82#if !SMART_DVD_CHAPTERS
83 void setFastChapterSeeking(bool b);
84 bool fastChapterSeeking();
85#endif
86
87#ifdef OBSOLETE_FAST_AUDIO_CHANGE
88 void setFastAudioSwitching(Preferences::OptionState value);
89 Preferences::OptionState fastAudioSwitching();
90#endif
91
92 void setThreads(int v);
93 int threads();
94
95 void setCoreavcUsage(bool b);
96 bool coreavcUsage();
97
98 void setHwdec(const QString & v);
99 QString hwdec();
100
101protected:
102 virtual void retranslateStrings();
103};
104
105#endif
Note: See TracBrowser for help on using the repository browser.