summaryrefslogtreecommitdiff
path: root/library/qpemenubar.cpp
Unidiff
Diffstat (limited to 'library/qpemenubar.cpp') (more/less context) (show whitespace changes)
-rw-r--r--library/qpemenubar.cpp29
1 files changed, 15 insertions, 14 deletions
diff --git a/library/qpemenubar.cpp b/library/qpemenubar.cpp
index bb3ad8d..f0171ba 100644
--- a/library/qpemenubar.cpp
+++ b/library/qpemenubar.cpp
@@ -1,5 +1,5 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2001 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
@@ -249,2 +249,3 @@ bool QPEMenuToolFocusManager::eventFilter( QObject *object, QEvent *event )
249 QChildEvent *ce = (QChildEvent *)event; 249 QChildEvent *ce = (QChildEvent *)event;
250 if ( ce->child()->isWidgetType() ) {
250 if ( ce->child()->inherits( "QMenuBar" ) ) { 251 if ( ce->child()->inherits( "QMenuBar" ) ) {
@@ -252,7 +253,9 @@ bool QPEMenuToolFocusManager::eventFilter( QObject *object, QEvent *event )
252 ce->child()->installEventFilter( this ); 253 ce->child()->installEventFilter( this );
253 } else if ( object->inherits( "QToolBar" ) && ce->child()->isWidgetType() ) { 254 } else if ( object->inherits( "QToolBar" ) ) {
254 addWidget( (QWidget *)ce->child() ); 255 addWidget( (QWidget *)ce->child() );
255 } 256 }
257 }
256 } else if ( event->type() == QEvent::ChildRemoved ) { 258 } else if ( event->type() == QEvent::ChildRemoved ) {
257 QChildEvent *ce = (QChildEvent *)event; 259 QChildEvent *ce = (QChildEvent *)event;
260 if ( ce->child()->isWidgetType() ) {
258 if ( ce->child()->inherits( "QMenuBar" ) ) { 261 if ( ce->child()->inherits( "QMenuBar" ) ) {
@@ -260,3 +263,3 @@ bool QPEMenuToolFocusManager::eventFilter( QObject *object, QEvent *event )
260 ce->child()->removeEventFilter( this ); 263 ce->child()->removeEventFilter( this );
261 } else if ( object->inherits( "QToolBar" ) && ce->child()->isWidgetType() ) { 264 } else if ( object->inherits( "QToolBar" ) ) {
262 removeWidget( (QWidget *)ce->child() ); 265 removeWidget( (QWidget *)ce->child() );
@@ -264,2 +267,3 @@ bool QPEMenuToolFocusManager::eventFilter( QObject *object, QEvent *event )
264 } 267 }
268 }
265 269
@@ -281,3 +285,2 @@ void QPEMenuToolFocusManager::deactivate()
281 285
282 \sa QMenuBar
283*/ 286*/
@@ -308,14 +311,13 @@ void QPEMenuBar::keyPressEvent( QKeyEvent *e )
308 311
309 312/*!
310void QPEMenuBar::activateItem( int index ) 313 \internal
311{ 314*/
315void QPEMenuBar::activateItem( int index ) {
312 activateItemAt( index ); 316 activateItemAt( index );
313} 317}
314 318void QPEMenuBar::goodbye() {
315void QPEMenuBar::goodbye()
316{
317 activateItemAt(-1); 319 activateItemAt(-1);
318 for ( unsigned int i = 0; i < count(); i++ ) { 320 for ( uint i = 0; i < count(); i++ ) {
319 QMenuItem *mi = findItem( idAt(i) ); 321 QMenuItem *mi = findItem( idAt(i) );
320 if ( mi->popup() ) { 322 if (mi->popup() )
321 mi->popup()->hide(); 323 mi->popup()->hide();
@@ -323,2 +325 @@ void QPEMenuBar::goodbye()
323 } }
324}