mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
193 lines
5.4 KiB
C++
193 lines
5.4 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 2003 Daniel Molkentin <molkentin@kde.org>
|
|
Copyright (C) 2003 David Faure <faure@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "statusbarextension.h"
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
#include <kstatusbar.h>
|
|
#include <kmainwindow.h>
|
|
#include <kdebug.h>
|
|
#include <kglobal.h>
|
|
#include <kparts/part.h>
|
|
#include <kparts/event.h>
|
|
|
|
using namespace KParts;
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
// Helper Classes
|
|
///////////////////////////////////////////////////////////////////
|
|
|
|
class KParts::StatusBarItem {
|
|
public:
|
|
StatusBarItem() // for QValueList
|
|
: m_widget(0), m_visible(false)
|
|
{}
|
|
StatusBarItem( QWidget * widget, int stretch, bool permanent )
|
|
: m_widget(widget), m_stretch(stretch), m_permanent(permanent), m_visible(false)
|
|
{}
|
|
|
|
QWidget * widget() const { return m_widget; }
|
|
|
|
void ensureItemShown( KStatusBar * sb )
|
|
{
|
|
if ( m_widget && !m_visible )
|
|
{
|
|
if ( m_permanent )
|
|
sb->addPermanentWidget( m_widget, m_stretch );
|
|
else
|
|
sb->addWidget( m_widget, m_stretch );
|
|
m_visible = true;
|
|
m_widget->show();
|
|
}
|
|
}
|
|
void ensureItemHidden( KStatusBar * sb )
|
|
{
|
|
if ( m_widget && m_visible )
|
|
{
|
|
sb->removeWidget( m_widget );
|
|
m_visible = false;
|
|
m_widget->hide();
|
|
}
|
|
}
|
|
private:
|
|
QPointer<QWidget> m_widget;
|
|
int m_stretch;
|
|
bool m_permanent;
|
|
bool m_visible; // true when the item has been added to the statusbar
|
|
};
|
|
|
|
class KParts::StatusBarExtensionPrivate
|
|
{
|
|
public:
|
|
StatusBarExtensionPrivate(StatusBarExtension *q): q(q),
|
|
m_statusBar(0),
|
|
m_activated(true) {}
|
|
|
|
StatusBarExtension *q;
|
|
QList<StatusBarItem> m_statusBarItems; // Our statusbar items
|
|
KStatusBar* m_statusBar;
|
|
bool m_activated;
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
|
|
|
|
StatusBarExtension::StatusBarExtension(KParts::ReadOnlyPart *parent)
|
|
: QObject(parent), d(new StatusBarExtensionPrivate(this))
|
|
{
|
|
parent->installEventFilter(this);
|
|
}
|
|
|
|
StatusBarExtension::~StatusBarExtension()
|
|
{
|
|
KStatusBar * sb = d->m_statusBar;
|
|
for ( int i = d->m_statusBarItems.count () - 1; i >= 0 ; --i ) {
|
|
if ( d->m_statusBarItems[i].widget() ) {
|
|
if ( sb ) {
|
|
d->m_statusBarItems[i].ensureItemHidden( sb );
|
|
}
|
|
d->m_statusBarItems[i].widget()->deleteLater();
|
|
}
|
|
}
|
|
|
|
delete d;
|
|
}
|
|
|
|
StatusBarExtension *StatusBarExtension::childObject( QObject *obj )
|
|
{
|
|
return KGlobal::findDirectChild<KParts::StatusBarExtension*>(obj);
|
|
}
|
|
|
|
bool StatusBarExtension::eventFilter(QObject * watched, QEvent* ev)
|
|
{
|
|
if ( !GUIActivateEvent::test( ev ) ||
|
|
!::qobject_cast<KParts::ReadOnlyPart *>(watched) )
|
|
return QObject::eventFilter(watched, ev);
|
|
|
|
KStatusBar * sb = statusBar();
|
|
if ( !sb )
|
|
return QObject::eventFilter(watched, ev);
|
|
|
|
GUIActivateEvent *gae = static_cast<GUIActivateEvent*>(ev);
|
|
d->m_activated = gae->activated();
|
|
|
|
if ( d->m_activated )
|
|
{
|
|
QList<StatusBarItem>::iterator it = d->m_statusBarItems.begin();
|
|
for ( ; it != d->m_statusBarItems.end() ; ++it )
|
|
(*it).ensureItemShown( sb );
|
|
}
|
|
else
|
|
{
|
|
QList<StatusBarItem>::iterator it = d->m_statusBarItems.begin();
|
|
for ( ; it != d->m_statusBarItems.end() ; ++it )
|
|
(*it).ensureItemHidden( sb );
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
KStatusBar * StatusBarExtension::statusBar() const
|
|
{
|
|
if ( !d->m_statusBar ) {
|
|
KParts::ReadOnlyPart* part = qobject_cast<KParts::ReadOnlyPart*>(parent());
|
|
QWidget* w = part ? part->widget() : 0;
|
|
KMainWindow* mw = w ? qobject_cast<KMainWindow *>( w->window() ) : 0;
|
|
if ( mw )
|
|
d->m_statusBar = mw->statusBar();
|
|
}
|
|
return d->m_statusBar;
|
|
}
|
|
|
|
void StatusBarExtension::setStatusBar( KStatusBar* status )
|
|
{
|
|
d->m_statusBar = status;
|
|
}
|
|
|
|
void StatusBarExtension::addStatusBarItem( QWidget * widget, int stretch, bool permanent )
|
|
{
|
|
d->m_statusBarItems.append( StatusBarItem( widget, stretch, permanent ) );
|
|
StatusBarItem& it = d->m_statusBarItems.last();
|
|
KStatusBar * sb = statusBar();
|
|
if (sb && d->m_activated)
|
|
it.ensureItemShown( sb );
|
|
}
|
|
|
|
void StatusBarExtension::removeStatusBarItem( QWidget * widget )
|
|
{
|
|
KStatusBar * sb = statusBar();
|
|
QList<StatusBarItem>::iterator it = d->m_statusBarItems.begin();
|
|
for ( ; it != d->m_statusBarItems.end() ; ++it )
|
|
if ( (*it).widget() == widget )
|
|
{
|
|
if ( sb )
|
|
(*it).ensureItemHidden( sb );
|
|
d->m_statusBarItems.erase( it );
|
|
return;
|
|
}
|
|
|
|
kWarning(1000) << "StatusBarExtension::removeStatusBarItem. Widget not found : " << widget;
|
|
}
|
|
|
|
#include "moc_statusbarextension.cpp"
|
|
|
|
// vim: ts=2 sw=2 et
|