~ubuntu-branches/debian/experimental/smplayer/experimental

« back to all changes in this revision

Viewing changes to src/prefsubtitles.h

  • Committer: Bazaar Package Importer
  • Author(s): Maia Kozheva
  • Date: 2009-01-03 17:08:06 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090103170806-eodntb2slv6g2pb6
Tags: 0.6.6-0ubuntu1
* The "just before FF" release.
* New upstream release.
* debian/control: Bumped Standards-Version to 3.8.0.
* debian/copyright: Changed (C) to © to fix Lintian warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
        void setFontEncoding(QString s);
70
70
        QString fontEncoding();
71
71
 
 
72
        void setUseEnca(bool v);
 
73
        bool useEnca();
 
74
 
 
75
        void setEncaLang(QString s);
 
76
        QString encaLang();
 
77
 
72
78
        void setSubPos(int pos);
73
79
        int subPos();
74
80
 
75
81
        void setUseFontASS(bool v);
76
82
        bool useFontASS();
77
83
 
78
 
        void setAssColor( unsigned int color );
79
 
        unsigned int assColor();
80
 
 
81
 
        void setAssBorderColor( unsigned int color );
82
 
        unsigned int assBorderColor();
83
 
 
84
 
        void setAssStyles(QString styles);
85
 
        QString assStyles();
 
84
        void setAssLineSpacing(int spacing);
 
85
        int assLineSpacing();
86
86
 
87
87
        void setFontFuzziness(int n);
88
88
        int fontFuzziness();
90
90
        void setSubtitlesOnScreenshots(bool b);
91
91
        bool subtitlesOnScreenshots();
92
92
 
 
93
        void setFreetypeSupport(bool b);
 
94
        bool freetypeSupport();
 
95
 
 
96
protected slots:
 
97
        void on_ass_subs_button_toggled(bool b);
 
98
        void on_freetype_check_toggled(bool b);
 
99
        void checkBorderStyleCombo( int index );
 
100
 
93
101
protected:
94
102
        virtual void retranslateStrings();
95
103
 
96
 
protected slots:
97
 
        void on_colorButton_clicked();
98
 
        void on_borderButton_clicked();
99
 
 
100
104
private:
101
105
        Encodings * encodings;
102
 
        unsigned int ass_color, ass_border_color;
103
106
};
104
107
 
105
108
#endif