diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 15:56:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 15:56:40 -0600 |
commit | e16866e072f94410321d70daedbcb855ea878cac (patch) | |
tree | ee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /tdeui/ktextbrowser.cpp | |
parent | a58c20c1a7593631a1b50213c805507ebc16adaf (diff) | |
download | tdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip |
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'tdeui/ktextbrowser.cpp')
-rw-r--r-- | tdeui/ktextbrowser.cpp | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/tdeui/ktextbrowser.cpp b/tdeui/ktextbrowser.cpp new file mode 100644 index 000000000..6b3685a81 --- /dev/null +++ b/tdeui/ktextbrowser.cpp @@ -0,0 +1,145 @@ +/* This file is part of the KDE Libraries + * Copyright (C) 1999-2000 Espen Sand (espen@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 <tqpopupmenu.h> +#include <kapplication.h> +#include <kglobalsettings.h> +#include <ktextbrowser.h> +#include <kcursor.h> +#include <kurl.h> +#include <kiconloader.h> + +KTextBrowser::KTextBrowser( TQWidget *parent, const char *name, + bool notifyClick ) + : TQTextBrowser( parent, name ), mNotifyClick(notifyClick) +{ + // + //1999-10-04 Espen Sand: Not required anymore ? + //connect( this, TQT_SIGNAL(highlighted(const TQString &)), + // this, TQT_SLOT(refChanged(const TQString &))); +} + +KTextBrowser::~KTextBrowser( void ) +{ +} + + +void KTextBrowser::setNotifyClick( bool notifyClick ) +{ + mNotifyClick = notifyClick; +} + + +bool KTextBrowser::isNotifyClick() const +{ + return mNotifyClick; +} + + +void KTextBrowser::setSource( const TQString& name ) +{ + if( name.isNull() ) + { + return; + } + + if( name.find('@') > -1 ) + { + if( !mNotifyClick ) + { + kapp->invokeMailer( KURL( name ) ); + } + else + { + emit mailClick( TQString::null, name ); + } + } + else + { + if( !mNotifyClick ) + { + kapp->invokeBrowser( name ); + } + else + { + emit urlClick( name ); + } + } +} + + +void KTextBrowser::keyPressEvent(TQKeyEvent *e) +{ + if( e->key() == Key_Escape ) + { + e->ignore(); + } + else if( e->key() == Key_F1 ) + { + e->ignore(); + } + else + { + TQTextBrowser::keyPressEvent(e); + } +} + +void KTextBrowser::viewportMouseMoveEvent( TQMouseEvent* e) +{ + // do this first so we get the right type of cursor + TQTextBrowser::viewportMouseMoveEvent(e); + + if ( viewport()->cursor().shape() == PointingHandCursor ) + viewport()->setCursor( KCursor::handCursor() ); +} + +void KTextBrowser::contentsWheelEvent( TQWheelEvent *e ) +{ + if ( KGlobalSettings::wheelMouseZooms() ) + TQTextBrowser::contentsWheelEvent( e ); + else // thanks, we don't want to zoom, so skip QTextEdit's impl. + TQScrollView::contentsWheelEvent( e ); +} + +TQPopupMenu *KTextBrowser::createPopupMenu( const TQPoint & pos ) +{ + enum { IdUndo, IdRedo, IdSep1, IdCut, IdCopy, IdPaste, IdClear, IdSep2, IdSelectAll }; + + TQPopupMenu *popup = TQTextBrowser::createPopupMenu( pos ); + + if ( isReadOnly() ) + popup->changeItem( popup->idAt(0), SmallIconSet("editcopy"), popup->text( popup->idAt(0) ) ); + else { + int id = popup->idAt(0); + popup->changeItem( id - IdUndo, SmallIconSet("undo"), popup->text( id - IdUndo) ); + popup->changeItem( id - IdRedo, SmallIconSet("redo"), popup->text( id - IdRedo) ); + popup->changeItem( id - IdCut, SmallIconSet("editcut"), popup->text( id - IdCut) ); + popup->changeItem( id - IdCopy, SmallIconSet("editcopy"), popup->text( id - IdCopy) ); + popup->changeItem( id - IdPaste, SmallIconSet("editpaste"), popup->text( id - IdPaste) ); + popup->changeItem( id - IdClear, SmallIconSet("editclear"), popup->text( id - IdClear) ); + } + + return popup; +} + +void KTextBrowser::virtual_hook( int, void* ) +{ /*BASE::virtual_hook( id, data );*/ } + +#include "ktextbrowser.moc" |