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

Last change on this file since 176 was 176, checked in by Silvan Scherrer, 9 years ago

smplayer: update trunk to version 16.4

  • Property svn:eol-style set to LF
File size: 2.4 KB
Line 
1/* smplayer, GUI front-end for mplayer.
2 Copyright (C) 2006-2016 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 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#ifdef OBSOLETE_FAST_AUDIO_CHANGE
84 void setFastAudioSwitching(Preferences::OptionState value);
85 Preferences::OptionState fastAudioSwitching();
86#endif
87
88 void setThreads(int v);
89 int threads();
90
91 void setCoreavcUsage(bool b);
92 bool coreavcUsage();
93
94 void setHwdec(const QString & v);
95 QString hwdec();
96
97protected:
98 virtual void retranslateStrings();
99};
100
101#endif
Note: See TracBrowser for help on using the repository browser.