~ubuntu-branches/ubuntu/precise/smplayer/precise

« back to all changes in this revision

Viewing changes to src/prefgeneral.h

  • Committer: Bazaar Package Importer
  • Author(s): Maia Kozheva
  • Date: 2009-11-04 12:45:38 UTC
  • mfrom: (1.1.10 upstream) (3.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091104124538-hm6jc89qrg3l2sm8
Tags: 0.6.8-1
* New upstream release. (Closes: #543156)
* Added /usr/share/pixmaps to debian/menu. (Closes: #526353)
* debian/control: Bumped Standards-Version to 3.8.3.
* debian/rules:
  - Removed VERSION variables, not relevant anymore.
  - Removed dh_desktop.
* Removed 01_gl_translation.patch, fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
        void setMplayerPath( QString path );
61
61
        QString mplayerPath();
62
62
 
 
63
        void setUseScreenshots(bool b);
 
64
        bool useScreenshots();
 
65
 
63
66
        void setScreenshotDir( QString path );
64
67
        QString screenshotDir();
65
68
 
103
106
        void setStartInFullscreen(bool b);
104
107
        bool startInFullscreen();
105
108
 
 
109
#ifdef Q_OS_WIN
 
110
        void setAvoidScreensaver(bool b);
 
111
        bool avoidScreensaver();
 
112
        
 
113
        void setTurnScreensaverOff(bool b);
 
114
        bool turnScreensaverOff();
 
115
#else
106
116
        void setDisableScreensaver(bool b);
107
117
        bool disableScreensaver();
 
118
#endif
108
119
 
109
120
        void setBlackbordersOnFullscreen(bool b);
110
121
        bool blackbordersOnFullscreen();
112
123
        void setAutoq(int n);
113
124
        int autoq();
114
125
 
 
126
        void setGlobalVolume(bool b);
 
127
        bool globalVolume();
 
128
 
 
129
        void setAutoSyncFactor(int factor);
 
130
        int autoSyncFactor();
 
131
 
 
132
        void setAutoSyncActivated(bool b);
 
133
        bool autoSyncActivated();
 
134
 
 
135
        void setMc(double value);
 
136
        double mc();
 
137
 
 
138
        void setMcActivated(bool b);
 
139
        bool mcActivated();
 
140
 
115
141
        void setSoftVol(bool b);
116
142
        bool softVol();
117
143
 
145
171
        void setAmplification(int n);
146
172
        int amplification();
147
173
 
148
 
        void setInitialVolume(int v);
149
 
        int initialVolume();
150
 
 
151
 
        void setDontChangeVolume(bool b);
152
 
        bool dontChangeVolume();
153
 
 
154
 
        // Use -volume option
155
 
        void setUseVolume(Preferences::OptionState value);
156
 
        Preferences::OptionState useVolume();
157
 
 
158
174
        void setAudioChannels(int ID);
159
175
        int audioChannels();
160
176