~ubuntu-branches/debian/squeeze/smplayer/squeeze

« back to all changes in this revision

Viewing changes to src/defaultgui.h

  • Committer: Bazaar Package Importer
  • Author(s): Breuil Cyril
  • Date: 2007-06-24 16:35:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070624163529-hhckbmd24uicada7
Tags: 0.5.20-0ubuntu1
* New upstream release
* Change Maintainer Email

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
        Q_OBJECT
39
39
 
40
40
public:
41
 
 
42
 
        DefaultGui( QString file = "", QWidget* parent = 0, const char* name = 0, 
 
41
        DefaultGui( QStringList files, QWidget* parent = 0, const char* name = 0, 
43
42
                WFlags fl = WType_TopLevel );
44
43
        ~DefaultGui();
45
44
 
66
65
    virtual void aboutToExitCompactMode();
67
66
 
68
67
        virtual void resizeEvent( QResizeEvent * );
69
 
        virtual void closeEvent( QCloseEvent * e );
 
68
        /* virtual void closeEvent( QCloseEvent * e ); */
70
69
 
71
70
protected slots:
72
71
        virtual void languageChange();
118
117
#if DOCK_PLAYLIST
119
118
        bool playlist_was_visible;
120
119
#endif
 
120
 
 
121
        int floating_control_width; // Percentage of screen
121
122
};
122
123