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

« back to all changes in this revision

Viewing changes to src/preferencesdialog.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:
21
21
 
22
22
#include "ui_preferencesdialog.h"
23
23
 
 
24
/*
24
25
#ifdef Q_OS_WIN
25
26
#define USE_ASSOCIATIONS 1
26
27
#endif
 
28
*/
27
29
 
28
30
class QTextBrowser;
29
31
class QPushButton;
36
38
class PrefInterface;
37
39
class PrefInput;
38
40
class PrefAdvanced;
 
41
class PrefPlaylist;
39
42
class PrefAssociations;
40
43
 
41
44
class Preferences;
52
55
        PreferencesDialog( QWidget * parent = 0, Qt::WindowFlags f = 0 );
53
56
        ~PreferencesDialog();
54
57
 
 
58
        PrefGeneral * mod_general() { return page_general; };
55
59
        PrefInterface * mod_interface() { return page_interface; };
56
60
        PrefInput * mod_input() { return page_input; };
57
61
        PrefAdvanced * mod_advanced() { return page_advanced; };
91
95
        PrefSubtitles * page_subtitles;
92
96
        PrefInterface * page_interface;
93
97
        PrefInput * page_input;
 
98
        PrefPlaylist * page_playlist;
94
99
        PrefAdvanced * page_advanced;
95
100
 
96
101
#if USE_ASSOCIATIONS