You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
4.6 KiB
158 lines
4.6 KiB
/*
|
|
* Copyright (c) 2002-2003 Jesper K. Pedersen <blackie@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 version 2 as published by the Free Software Foundation.
|
|
*
|
|
* 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.
|
|
**/
|
|
#ifndef TQT_ONLY
|
|
#include "textwidget.moc"
|
|
#endif
|
|
|
|
#include "textwidget.h"
|
|
#include "textregexp.h"
|
|
#include "selectablelineedit.h"
|
|
#include <tqlayout.h>
|
|
|
|
TextWidget::TextWidget(RegExpEditorWindow* editorWindow, TQWidget *parent,
|
|
const char *name)
|
|
:RegExpWidget(editorWindow, parent, name)
|
|
{
|
|
init( TQString::fromLocal8Bit("") );
|
|
}
|
|
|
|
TextWidget::TextWidget( TextRegExp* regexp, RegExpEditorWindow* editorWindow,
|
|
TQWidget* parent, const char* name )
|
|
: RegExpWidget( editorWindow, parent, name )
|
|
{
|
|
init(regexp->text());
|
|
}
|
|
|
|
void TextWidget::init( const TQString& txt )
|
|
{
|
|
TQHBoxLayout *lay = new TQHBoxLayout(this);
|
|
_edit = new SelectableLineEdit( this, this, "TextWidget::edit" );
|
|
_edit->setDragEnabled( false ); //otherwise TQLineEdit::mouseMoveEvent will set the cursor over and over again.
|
|
lay->addWidget(_edit);
|
|
|
|
_edit->setText( txt );
|
|
|
|
connect( _edit, TQT_SIGNAL( parentPleaseUpdate() ), this, TQT_SLOT(slotUpdate()) );
|
|
setFocusProxy( _edit );
|
|
_edit->installEventFilter( this );
|
|
connect( _edit, TQT_SIGNAL( textChanged( const TQString & ) ), _editorWindow, TQT_SLOT( emitChange() ) );
|
|
}
|
|
|
|
|
|
void TextWidget::slotUpdate()
|
|
{
|
|
// I need to force the parent to repaint, as the size change of this
|
|
// widget may not be enough for the parent to change size, and in that
|
|
// case the parent would not repaint, and the text widget would not be
|
|
// resized.
|
|
TQWidget *p = TQT_TQWIDGET(parent());
|
|
if (p)
|
|
p->repaint();
|
|
_editorWindow->updateContent( this );
|
|
}
|
|
|
|
TQSize TextWidget::sizeHint() const
|
|
{
|
|
return _edit->sizeHint();
|
|
}
|
|
|
|
void TextWidget::paintEvent( TQPaintEvent *e)
|
|
{
|
|
RegExpWidget::paintEvent(e);
|
|
}
|
|
|
|
void TextWidget::selectWidget( bool sel )
|
|
{
|
|
_edit->setSelected( sel );
|
|
}
|
|
|
|
bool TextWidget::updateSelection(bool parentSelected)
|
|
{
|
|
bool changed = RegExpWidget::updateSelection( parentSelected );
|
|
|
|
// I need to call this function all the time, else the rubber band will
|
|
// not be correctly deleted in the line edit.
|
|
_edit->setSelected( _isSelected );
|
|
return changed;
|
|
}
|
|
void TextWidget::updateAll()
|
|
{
|
|
_edit->update();
|
|
update();
|
|
}
|
|
|
|
void TextWidget::clearSelection()
|
|
{
|
|
_isSelected = false;
|
|
_edit->setSelected( false );
|
|
}
|
|
|
|
RegExp* TextWidget::regExp() const
|
|
{
|
|
return new TextRegExp( isSelected(), _edit->text() );
|
|
}
|
|
|
|
bool TextWidget::eventFilter( TQObject*, TQEvent* event)
|
|
{
|
|
// This is an event filter (in contrast to methods in SelectableLineEdit),
|
|
// otherwise lots of functions would need to be exported from TextWidget.
|
|
if ( event->type() == TQEvent::MouseButtonRelease ) {
|
|
if ( _editorWindow->isInserting() ) {
|
|
if ( acceptWidgetInsert( _editorWindow->insertType() ) ) {
|
|
mouseReleaseEvent( TQT_TQMOUSEEVENT(event) );
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
else if ( event->type() == TQEvent::MouseButtonPress ) {
|
|
if ( _editorWindow->isInserting() ) {
|
|
return true;
|
|
}
|
|
else if ( isSelected() ) {
|
|
TQMouseEvent* e = TQT_TQMOUSEEVENT( event );
|
|
TQMouseEvent ev( event->type(), mapTo(_editorWindow, e->pos()),
|
|
e->button(), e->state());
|
|
TQApplication::sendEvent( _editorWindow, &ev );
|
|
return true;
|
|
}
|
|
}
|
|
|
|
else if ( event->type() == TQEvent::Enter ) {
|
|
if ( _editorWindow->isInserting() ) {
|
|
if ( acceptWidgetInsert( _editorWindow->insertType() ) ) {
|
|
_edit->setCursor(crossCursor);
|
|
}
|
|
else {
|
|
_edit->setCursor(forbiddenCursor);
|
|
}
|
|
}
|
|
else if ( isSelected() ) {
|
|
_edit->setCursor( arrowCursor );
|
|
}
|
|
else {
|
|
_edit->setCursor( ibeamCursor );
|
|
}
|
|
}
|
|
else if ( event->type() == TQEvent::MouseButtonDblClick && _editorWindow->isInserting() ) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|