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

« back to all changes in this revision

Viewing changes to src/playlistdock.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:
20
20
#define _PLAYLIST_DOCK_H_
21
21
 
22
22
#include <QDockWidget>
 
23
#include "guiconfig.h"
23
24
 
24
25
class PlaylistDock : public QDockWidget 
25
26
{
31
32
 
32
33
signals:
33
34
        void closed();
34
 
        void docked();
35
 
        void undocked();
 
35
#if QT_VERSION < 0x040300
 
36
        void visibilityChanged(bool visible);
 
37
#endif
36
38
 
37
39
protected:
38
 
        virtual void closeEvent( QCloseEvent * event );
 
40
        virtual void closeEvent( QCloseEvent * e );
 
41
#if QT_VERSION < 0x040300
39
42
        virtual void showEvent ( QShowEvent * event );
40
43
        virtual void hideEvent ( QHideEvent * event );
 
44
#endif
41
45
};
42
46
 
43
47
#endif