source: smplayer/trunk/src/prefsubtitles.h@ 165

Last change on this file since 165 was 165, checked in by Silvan Scherrer, 11 years ago

SMPlayer: update trunk to latest 0.8.7

  • Property svn:eol-style set to LF
File size: 2.8 KB
Line 
1/* smplayer, GUI front-end for mplayer.
2 Copyright (C) 2006-2014 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 _PREFSUBTITLES_H_
20#define _PREFSUBTITLES_H_
21
22#include "ui_prefsubtitles.h"
23#include "prefwidget.h"
24
25class Preferences;
26class Encodings;
27
28class PrefSubtitles : public PrefWidget, public Ui::PrefSubtitles
29{
30 Q_OBJECT
31
32public:
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
45protected:
46 virtual void createHelp();
47
48 void setFontName(QString font_name);
49 QString fontName();
50
51 void setFontFile(QString font_file);
52 QString fontFile();
53
54 void setUseFontconfig(bool b);
55 bool useFontconfig();
56
57 void setFontAutoscale(int n);
58 int fontAutoscale();
59
60 void setFontTextscale(double n);
61 double fontTextscale();
62
63 void setAssFontScale(double n);
64 double assFontScale();
65
66 void setAutoloadSub(bool v);
67 bool autoloadSub();
68
69 void setFontEncoding(QString s);
70 QString fontEncoding();
71
72 void setUseEnca(bool v);
73 bool useEnca();
74
75 void setEncaLang(QString s);
76 QString encaLang();
77
78 void setSubPos(int pos);
79 int subPos();
80
81 void setUseFontASS(bool v);
82 bool useFontASS();
83
84 void setAssLineSpacing(int spacing);
85 int assLineSpacing();
86
87 void setForceAssStyles(bool b);
88 bool forceAssStyles();
89
90 void setCustomizedAssStyle(QString style) { forced_ass_style = style; };
91 QString customizedAssStyle() { return forced_ass_style; };
92
93 void setFontFuzziness(int n);
94 int fontFuzziness();
95
96 void setSubtitlesOnScreenshots(bool b);
97 bool subtitlesOnScreenshots();
98
99 void setFreetypeSupport(bool b);
100 bool freetypeSupport();
101
102protected slots:
103 void on_ass_subs_button_toggled(bool b);
104 void on_ass_customize_button_clicked();
105 void on_freetype_check_toggled(bool b);
106 void on_windowsfontdir_check_toggled(bool b);
107 void checkBorderStyleCombo( int index );
108
109protected:
110 virtual void retranslateStrings();
111
112private:
113 Encodings * encodings;
114 QString forced_ass_style;
115};
116
117#endif
Note: See TracBrowser for help on using the repository browser.