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

« back to all changes in this revision

Viewing changes to src/defaultgui.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:
23
23
#include "baseguiplus.h"
24
24
#include <QPoint>
25
25
 
26
 
class QLabel;
27
26
class QToolBar;
28
27
class QPushButton;
29
28
class QResizeEvent;
32
31
class TimeSliderAction;
33
32
class VolumeSliderAction;
34
33
class FloatingWidget;
35
 
class QLabel;
 
34
class TimeLabelAction;
36
35
 
37
36
#if MINI_ARROW_BUTTONS
38
37
class SeekingButton;
46
45
        DefaultGui( QWidget* parent = 0, Qt::WindowFlags flags = 0 );
47
46
        ~DefaultGui();
48
47
 
 
48
#if USE_MINIMUMSIZE
 
49
        virtual QSize minimumSizeHint () const;
 
50
#endif
 
51
 
49
52
public slots:
50
53
        //virtual void showPlaylist(bool b);
51
54
 
109
112
#endif
110
113
 
111
114
        FloatingWidget * floating_control;
112
 
        QLabel * time_label;
 
115
        TimeLabelAction * time_label_action;
113
116
 
114
117
        QMenu * toolbar_menu;
115
118
 
119
122
        bool fullscreen_toolbar2_was_visible;
120
123
        bool compact_toolbar1_was_visible;
121
124
        bool compact_toolbar2_was_visible;
122
 
 
123
 
        // Properties to save
124
 
        int floating_control_width; // Percentage of screen
125
 
        bool floating_control_animated;
126
125
};
127
126
 
128
127
#endif