[112] | 1 | /* smplayer, GUI front-end for mplayer.
|
---|
[188] | 2 | Copyright (C) 2006-2017 Ricardo Villalba <rvm@users.sourceforge.net>
|
---|
[112] | 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 |
|
---|
[176] | 19 | #ifndef PREFPERFORMANCE_H
|
---|
| 20 | #define PREFPERFORMANCE_H
|
---|
[112] | 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 |
|
---|
[181] | 63 | #ifdef TV_SUPPORT
|
---|
[112] | 64 | void setCacheForTV(int n);
|
---|
| 65 | int cacheForTV();
|
---|
[181] | 66 | #endif
|
---|
[112] | 67 |
|
---|
[181] | 68 | #ifdef Q_OS_WIN
|
---|
[112] | 69 | void setPriority(int n);
|
---|
| 70 | int priority();
|
---|
[181] | 71 | #endif
|
---|
[112] | 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 |
|
---|
[176] | 87 | #ifdef OBSOLETE_FAST_AUDIO_CHANGE
|
---|
[112] | 88 | void setFastAudioSwitching(Preferences::OptionState value);
|
---|
| 89 | Preferences::OptionState fastAudioSwitching();
|
---|
[176] | 90 | #endif
|
---|
[112] | 91 |
|
---|
| 92 | void setThreads(int v);
|
---|
| 93 | int threads();
|
---|
| 94 |
|
---|
| 95 | void setCoreavcUsage(bool b);
|
---|
| 96 | bool coreavcUsage();
|
---|
| 97 |
|
---|
[176] | 98 | void setHwdec(const QString & v);
|
---|
| 99 | QString hwdec();
|
---|
[124] | 100 |
|
---|
[112] | 101 | protected:
|
---|
| 102 | virtual void retranslateStrings();
|
---|
| 103 | };
|
---|
| 104 |
|
---|
| 105 | #endif
|
---|