~ubuntu-branches/debian/sid/smplayer/sid

« back to all changes in this revision

Viewing changes to src/prefsubtitles.h

  • Committer: Bazaar Package Importer
  • Author(s): Matvey Kozhev
  • Date: 2008-01-31 13:44:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080131134453-nc4dwsn5pkiw5s9h
Tags: 0.6.0~rc1-1
* New upstream release.
* debian/control:
  - Build-depend on CDBS.
  - Updated upstream homepage.
* debian/copyright:
  - Updated download address.
* debian/rules:
  - Migrated to CDBS.
  - Tweaked get-orig-source to work with release candidates.
* debian/docs:
  - Removed Translations.txt, upstream removed it from the tarball.
  - Added Release_notes.txt.
* debian/manpages, debian/smplayer.1:
  - Deleted, manpage merged upstream.
* debian/smplayer.install:
  - Install usr/share/man.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  smplayer, GUI front-end for mplayer.
2
 
    Copyright (C) 2007 Ricardo Villalba <rvm@escomposlinux.org>
 
2
    Copyright (C) 2006-2008 Ricardo Villalba <rvm@escomposlinux.org>
3
3
 
4
4
    This program is free software; you can redistribute it and/or modify
5
5
    it under the terms of the GNU General Public License as published by
21
21
 
22
22
#include "ui_prefsubtitles.h"
23
23
#include "prefwidget.h"
24
 
#include "config.h"
25
24
 
26
25
class Preferences;
27
26
class Encodings;
58
57
        void setFontAutoscale(int n);
59
58
        int fontAutoscale();
60
59
 
61
 
        void setFontTextscale(int n);
62
 
        int fontTextscale();
 
60
        void setFontTextscale(double n);
 
61
        double fontTextscale();
 
62
 
 
63
        void setAssFontScale(double n);
 
64
        double assFontScale();
63
65
 
64
66
        void setAutoloadSub(bool v);
65
67
        bool autoloadSub();
88
90
        void setSubtitlesOnScreenshots(bool b);
89
91
        bool subtitlesOnScreenshots();
90
92
 
91
 
#if USE_SUBFONT
92
 
        void setUseSubfont(bool b);
93
 
        bool useSubfont();
94
 
#endif
95
 
 
96
93
protected:
97
94
        virtual void retranslateStrings();
98
95