1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/* This file is part of the KDE project
*
* Copyright (C) 2008 Bernhard Beschow <bbeschow AT cs DOT tu-berlin DOT de>
*
* 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 "khtmlviewbar.h"
#include "khtmlview.h"
#include "khtmlviewbarwidget.h"
#include <kdebug.h>
#include <QtGui/QBoxLayout>
#include <QtGui/QKeyEvent>
KHTMLViewBar::KHTMLViewBar( Position position, KHTMLView *view, QWidget *parent ) :
QWidget( parent ),
m_view( view ),
m_permanentBarWidget( 0 )
{
const QBoxLayout::Direction direction = ( position == Top ? QBoxLayout::TopToBottom : QBoxLayout::BottomToTop );
setLayout( new QBoxLayout( direction, this ) );
layout()->setContentsMargins( 0, 0, 0, 0 );
layout()->setSpacing( 0 );
}
void KHTMLViewBar::addBarWidget (KHTMLViewBarWidget *newBarWidget)
{
if (hasWidget(newBarWidget)) {
kDebug(6050) << "this bar widget is already added";
return;
}
// add new widget, invisible...
newBarWidget->hide();
layout()->addWidget( newBarWidget );
connect(newBarWidget, SIGNAL(hideMe()), SLOT(hideCurrentBarWidget()));
kDebug(6050) << "add barwidget " << newBarWidget;
}
void KHTMLViewBar::addPermanentBarWidget (KHTMLViewBarWidget *barWidget)
{
// remove old widget from layout (if any)
if (m_permanentBarWidget) {
m_permanentBarWidget->hide();
layout()->removeWidget(m_permanentBarWidget);
}
layout()->addWidget(barWidget /*, 0, Qt::AlignBottom*/ ); // FIXME
m_permanentBarWidget = barWidget;
m_permanentBarWidget->show();
setViewBarVisible(true);
}
void KHTMLViewBar::removePermanentBarWidget (KHTMLViewBarWidget *barWidget)
{
if (m_permanentBarWidget != barWidget) {
kDebug(6050) << "no such permanent widget exists in bar";
return;
}
if (!m_permanentBarWidget)
return;
m_permanentBarWidget->hide();
layout()->removeWidget(m_permanentBarWidget);
m_permanentBarWidget = 0;
}
bool KHTMLViewBar::hasPermanentWidget (KHTMLViewBarWidget *barWidget ) const
{
return (m_permanentBarWidget == barWidget);
}
void KHTMLViewBar::showBarWidget (KHTMLViewBarWidget *barWidget)
{
// raise correct widget
// TODO m_stack->setCurrentWidget (barWidget);
barWidget->show();
// if we have any permanent widget, bar is always visible,
// no need to show it
if (!m_permanentBarWidget) {
setViewBarVisible(true);
}
}
bool KHTMLViewBar::hasWidget(KHTMLViewBarWidget* wid) const
{
Q_UNUSED(wid);
return layout()->count() != 0;
}
void KHTMLViewBar::hideCurrentBarWidget ()
{
// m_stack->hide();
// if we have any permanent widget, bar is always visible,
// no need to hide it
if (!m_permanentBarWidget) {
setViewBarVisible(false);
}
m_view->setFocus();
kDebug(6050)<<"hide barwidget";
}
void KHTMLViewBar::setViewBarVisible (bool visible)
{
setVisible( visible );
}
void KHTMLViewBar::keyPressEvent(QKeyEvent* event)
{
if (event->key() == Qt::Key_Escape) {
hideCurrentBarWidget();
return;
}
QWidget::keyPressEvent(event);
}
void KHTMLViewBar::hideEvent(QHideEvent* event)
{
Q_UNUSED(event);
// if (!event->spontaneous())
// m_view->setFocus();
}
|