summaryrefslogtreecommitdiff
path: root/library/qpemenubar.cpp
Side-by-side diff
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,8 +1,8 @@
/**********************************************************************
-** Copyright (C) 2001 Trolltech AS. All rights reserved.
+** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
**
-** This file is part of Qtopia Environment.
+** This file is part of the Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
@@ -246,23 +246,27 @@ bool QPEMenuToolFocusManager::eventFilter( QObject *object, QEvent *event )
}
}
} else if ( event->type() == QEvent::ChildInserted ) {
QChildEvent *ce = (QChildEvent *)event;
+ if ( ce->child()->isWidgetType() ) {
if ( ce->child()->inherits( "QMenuBar" ) ) {
addWidget( (QWidget *)ce->child() );
ce->child()->installEventFilter( this );
- } else if ( object->inherits( "QToolBar" ) && ce->child()->isWidgetType() ) {
+ } else if ( object->inherits( "QToolBar" ) ) {
addWidget( (QWidget *)ce->child() );
}
+ }
} else if ( event->type() == QEvent::ChildRemoved ) {
QChildEvent *ce = (QChildEvent *)event;
+ if ( ce->child()->isWidgetType() ) {
if ( ce->child()->inherits( "QMenuBar" ) ) {
removeWidget( (QWidget *)ce->child() );
ce->child()->removeEventFilter( this );
- } else if ( object->inherits( "QToolBar" ) && ce->child()->isWidgetType() ) {
+ } else if ( object->inherits( "QToolBar" ) ) {
removeWidget( (QWidget *)ce->child() );
}
}
+ }
return FALSE;
}
@@ -278,9 +282,8 @@ void QPEMenuToolFocusManager::deactivate()
\obsolete
This class is obsolete. Use QMenuBar instead.
- \sa QMenuBar
*/
/*!
Constructs a QPEMenuBar just as you would construct
@@ -305,20 +308,18 @@ void QPEMenuBar::keyPressEvent( QKeyEvent *e )
{
QMenuBar::keyPressEvent( e );
}
-
-void QPEMenuBar::activateItem( int index )
-{
+/*!
+ \internal
+*/
+void QPEMenuBar::activateItem( int index ) {
activateItemAt( index );
}
-
-void QPEMenuBar::goodbye()
-{
+void QPEMenuBar::goodbye() {
activateItemAt(-1);
- for ( unsigned int i = 0; i < count(); i++ ) {
+ for ( uint i = 0; i < count(); i++ ) {
QMenuItem *mi = findItem( idAt(i) );
- if ( mi->popup() ) {
+ if (mi->popup() )
mi->popup()->hide();
}
}
-}