summaryrefslogtreecommitdiff
path: root/src/mplayerwindow.h
diff options
context:
space:
mode:
authorAlessio Treglia <alessio@debian.org>2012-02-16 11:08:45 +0100
committerAlessio Treglia <alessio@debian.org>2012-02-16 11:08:45 +0100
commit65a64d260e05c7bf8d3bdf82e796637dc820e574 (patch)
tree600c2becea7f28fdefff51200bb3ed33514e4cc7 /src/mplayerwindow.h
parent1d323e54ee434609cf035598486075c9a918a2d3 (diff)
Imported Upstream version 0.7.0
Diffstat (limited to 'src/mplayerwindow.h')
-rw-r--r--src/mplayerwindow.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mplayerwindow.h b/src/mplayerwindow.h
index 6ad6472..793176a 100644
--- a/src/mplayerwindow.h
+++ b/src/mplayerwindow.h
@@ -1,5 +1,5 @@
/* smplayer, GUI front-end for mplayer.
- Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org>
+ Copyright (C) 2006-2012 Ricardo Villalba <rvm@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -135,8 +135,6 @@ public:
MplayerWindow( QWidget* parent = 0, Qt::WindowFlags f = 0);
~MplayerWindow();
- void showLogo( bool b);
-
MplayerLayer * videoLayer() { return mplayerlayer; };
void setResolution( int w, int h);
@@ -166,6 +164,10 @@ public:
virtual bool eventFilter( QObject * watched, QEvent * event );
public slots:
+ void setLogoVisible(bool b);
+ void showLogo() { setLogoVisible(true); };
+ void hideLogo() { setLogoVisible(false); };
+
void moveLeft();
void moveRight();
void moveUp();