summaryrefslogtreecommitdiffstats
path: root/src/part/toolbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/part/toolbar.cpp')
-rw-r--r--src/part/toolbar.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/part/toolbar.cpp b/src/part/toolbar.cpp
new file mode 100644
index 0000000..8939074
--- /dev/null
+++ b/src/part/toolbar.cpp
@@ -0,0 +1,44 @@
+// (C) 2005 Max Howell ([email protected])
+// See COPYING file for licensing information
+
+#include <kpushbutton.h>
+#include <qapplication.h>
+#include <qevent.h>
+#include "toolbar.h"
+
+
+MouseOverToolBar::MouseOverToolBar( QWidget *parent )
+ : KToolBar( parent )
+{
+ parent->installEventFilter( this );
+ move( 0, 0 ); //TODO necessary?
+ hide();
+
+ setPalette( QApplication::palette() ); //videoWindow palette has a black background
+}
+
+bool
+MouseOverToolBar::eventFilter( QObject *o, QEvent *e )
+{
+ Q_ASSERT( o == parent() );
+
+ switch( e->type() )
+ {
+ case QEvent::Resize:
+ resize( static_cast<QResizeEvent*>(e)->size().width(), sizeHint().height() );
+ break;
+
+ case QEvent::Enter:
+ show();
+ break;
+
+ case QEvent::Leave:
+ hide();
+ break;
+
+ default:
+ ;
+ }
+
+ return false;
+} \ No newline at end of file