okular/ui/presentationsearchbar.cpp
Pino Toscano cd62fb8d6a icon renamings:
- find-next -> edit-find-next
- find-previous -> edit-find-previous

svn path=/trunk/KDE/kdegraphics/okular/; revision=727831
2007-10-21 21:40:12 +00:00

148 lines
4.7 KiB
C++

/***************************************************************************
* Copyright (C) 2007 by Pino Toscano <pino@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include "presentationsearchbar.h"
#include <qevent.h>
#include <qlayout.h>
#include <qstyle.h>
#include <qstyleoption.h>
#include <qstylepainter.h>
#include <qtoolbutton.h>
#include <kicon.h>
#include <klocale.h>
#include <kpushbutton.h>
#include "searchlineedit.h"
#define SNAP_DELTA 15
class HandleDrag
: public QWidget
{
public:
HandleDrag( QWidget *parent = 0 )
: QWidget( parent )
{
setCursor( Qt::SizeAllCursor );
setFixedWidth( style()->pixelMetric( QStyle::PM_ToolBarHandleExtent ) );
installEventFilter( parent );
}
void paintEvent( QPaintEvent * )
{
QStyleOption opt;
opt.initFrom( this );
opt.state |= QStyle::State_Horizontal;
QStylePainter p( this );
p.drawPrimitive( QStyle::PE_IndicatorToolBarHandle, opt );
}
};
PresentationSearchBar::PresentationSearchBar( Okular::Document *document, QWidget *anchor, QWidget *parent )
: QWidget( parent ), m_anchor( anchor ), m_snapped( true )
{
setAutoFillBackground( true );
QHBoxLayout * lay = new QHBoxLayout( this );
lay->setMargin( 0 );
m_handle = new HandleDrag( this );
lay->addWidget( m_handle );
QToolButton * closeBtn = new QToolButton( this );
closeBtn->setIcon( KIcon( "fileclose" ) );
closeBtn->setIconSize( QSize( 24, 24 ) );
closeBtn->setToolTip( i18n( "Close" ) );
closeBtn->setAutoRaise( true );
lay->addWidget( closeBtn );
m_search = new SearchLineEdit( this, document );
m_search->setClearButtonShown( true );
m_search->setSearchCaseSensitivity( Qt::CaseInsensitive );
m_search->setSearchMinimumLength( 0 );
m_search->setSearchType( Okular::Document::NextMatch );
m_search->setSearchId( PRESENTATION_SEARCH_ID );
m_search->setSearchColor( qRgb( 255, 255, 64 ) );
m_search->setSearchMoveViewport( true );
lay->addWidget( m_search );
KPushButton * findNextBtn = new KPushButton( KIcon( "edit-find-next" ), i18n( "Find Next" ), this );
lay->addWidget( findNextBtn );
m_anchor->installEventFilter( this );
connect( closeBtn, SIGNAL( clicked() ), this, SLOT( close() ) );
connect( findNextBtn, SIGNAL( clicked() ), m_search, SLOT( findNext() ) );
}
PresentationSearchBar::~PresentationSearchBar()
{
}
void PresentationSearchBar::forceSnap()
{
m_point = QPoint( m_anchor->width() / 2, m_anchor->height() );
m_snapped = true;
move( m_point.x() - width() / 2, m_point.y() - height() );
}
void PresentationSearchBar::focusOnSearchEdit()
{
m_search->setFocus();
}
void PresentationSearchBar::resizeEvent( QResizeEvent * )
{
// if in snap mode, then force the snap and place ourselves correctly again
if ( m_snapped )
forceSnap();
}
bool PresentationSearchBar::eventFilter( QObject *obj, QEvent *e )
{
if ( obj == m_handle &&
( e->type() == QEvent::MouseButtonPress || e->type() == QEvent::MouseButtonRelease || e->type() == QEvent::MouseMove ) )
{
QMouseEvent *me = (QMouseEvent*)e;
if ( e->type() == QEvent::MouseButtonPress )
{
m_drag = m_handle->mapTo( this, me->pos() );
}
else if ( e->type() == QEvent::MouseButtonRelease )
{
m_drag = QPoint();
}
else if ( e->type() == QEvent::MouseMove )
{
QPoint snapdelta( width() / 2, height() );
QPoint delta = m_handle->mapTo( this, me->pos() ) - m_drag;
QPoint newpostemp = pos() + delta;
QPoint tmp = newpostemp + snapdelta - m_point;
QPoint newpos = abs( tmp.x() ) < SNAP_DELTA && abs( tmp.y() ) < SNAP_DELTA ? m_point - snapdelta : newpostemp;
m_snapped = newpos == ( m_point - snapdelta );
move( newpos );
}
return true;
}
if ( obj == m_anchor && e->type() == QEvent::Resize )
{
m_point = QPoint( m_anchor->width() / 2, m_anchor->height() );
if ( m_snapped )
move( m_point.x() - width() / 2, m_point.y() - height() );
}
return false;
}
#include "presentationsearchbar.moc"