[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 PREFSUBTITLES_H
|
---|
| 20 | #define PREFSUBTITLES_H
|
---|
[112] | 21 |
|
---|
| 22 | #include "ui_prefsubtitles.h"
|
---|
| 23 | #include "prefwidget.h"
|
---|
| 24 |
|
---|
| 25 | class Preferences;
|
---|
| 26 | class Encodings;
|
---|
| 27 |
|
---|
| 28 | class PrefSubtitles : public PrefWidget, public Ui::PrefSubtitles
|
---|
| 29 | {
|
---|
| 30 | Q_OBJECT
|
---|
| 31 |
|
---|
| 32 | public:
|
---|
| 33 | PrefSubtitles( QWidget * parent = 0, Qt::WindowFlags f = 0 );
|
---|
| 34 | ~PrefSubtitles();
|
---|
| 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 setAssFontScale(double n);
|
---|
| 49 | double assFontScale();
|
---|
| 50 |
|
---|
| 51 | void setAutoloadSub(bool v);
|
---|
| 52 | bool autoloadSub();
|
---|
| 53 |
|
---|
| 54 | void setFontEncoding(QString s);
|
---|
| 55 | QString fontEncoding();
|
---|
| 56 |
|
---|
| 57 | void setUseEnca(bool v);
|
---|
| 58 | bool useEnca();
|
---|
| 59 |
|
---|
| 60 | void setEncaLang(QString s);
|
---|
| 61 | QString encaLang();
|
---|
| 62 |
|
---|
| 63 | void setAssLineSpacing(int spacing);
|
---|
| 64 | int assLineSpacing();
|
---|
| 65 |
|
---|
| 66 | void setForceAssStyles(bool b);
|
---|
| 67 | bool forceAssStyles();
|
---|
| 68 |
|
---|
| 69 | void setCustomizedAssStyle(QString style) { forced_ass_style = style; };
|
---|
| 70 | QString customizedAssStyle() { return forced_ass_style; };
|
---|
| 71 |
|
---|
| 72 | void setFontFuzziness(int n);
|
---|
| 73 | int fontFuzziness();
|
---|
| 74 |
|
---|
| 75 | void setSubtitlesOnScreenshots(bool b);
|
---|
| 76 | bool subtitlesOnScreenshots();
|
---|
| 77 |
|
---|
| 78 | void setFreetypeSupport(bool b);
|
---|
| 79 | bool freetypeSupport();
|
---|
| 80 |
|
---|
| 81 | protected slots:
|
---|
[176] | 82 | /* void on_ass_subs_button_toggled(bool b); */
|
---|
[112] | 83 | void on_ass_customize_button_clicked();
|
---|
| 84 | void on_freetype_check_toggled(bool b);
|
---|
[176] | 85 | #ifdef FONTS_HACK
|
---|
[165] | 86 | void on_windowsfontdir_check_toggled(bool b);
|
---|
[176] | 87 | #endif
|
---|
[112] | 88 | void checkBorderStyleCombo( int index );
|
---|
| 89 |
|
---|
| 90 | protected:
|
---|
| 91 | virtual void retranslateStrings();
|
---|
| 92 |
|
---|
| 93 | private:
|
---|
| 94 | Encodings * encodings;
|
---|
| 95 | QString forced_ass_style;
|
---|
| 96 | };
|
---|
| 97 |
|
---|
| 98 | #endif
|
---|