Source Code (Use browser search to find items of interest.)
Class Index
kdelibs'KTextBrowser (./kdelibs/kdeui/ktextbrowser.h:38)
class KTextBrowser : public QTextBrowser
{
Q_OBJECT
public:
/**
* Constructor.
*
* @param parent Parent of the widget.
* @param name Widget name.
* @param notifyClick @p true causes signals to be emitted.
*/
KTextBrowser( QWidget *parent=0, const char *name=0,
bool notifyClick=false );
/**
* Destructor.
*/
~KTextBrowser( void );
/**
* Decide whether a click on a link should be handled internally
* or if a signal should be emitted.
*
* @param notifyClick @p true causes signals to be emitted.
*/
void setNotifyClick( bool notifyClick );
protected:
/**
Reimplemented to NOT set the source but to do the special handling.
Do not call.
*/
void setSource(const QString& name);
/**
* Makes sure Key_Escape is ignored
*/
virtual void keyPressEvent(QKeyEvent *e);
signals:
/**
* Emitted when a mail link has been activated and the widget has
* been configured to emit the signal.
*
* @param name The destination name. It is @ref QString::null at the moment.
* @param address The destination address.
*/
void mailClick( const QString &name, const QString &address );
/**
* Emitted if @ref mailClick() is not emitted and the widget has been
* configured to emit the signal.
*
* @param url The destination address.
*/
void urlClick( const QString &url );
private:
bool mNotifyClick;
class KTextBrowserPrivate;
KTextBrowserPrivate *d;
};
kdelibs'KTextBrowser::KTextBrowser() (./kdelibs/kdeui/ktextbrowser.cpp:38)
KTextBrowser::KTextBrowser( QWidget *parent, const char *name,
bool notifyClick )
: QTextBrowser( parent, name ), mNotifyClick(notifyClick)
{
//
//1999-10-04 Espen Sand: Not required anymore ?
//connect( this, SIGNAL(highlighted(const QString &)),
// this, SLOT(refChanged(const QString &)));
}
kdelibs'KTextBrowser::~KTextBrowser() (./kdelibs/kdeui/ktextbrowser.cpp:48)
KTextBrowser::~KTextBrowser( void )
{
}
kdelibs'KTextBrowser::setNotifyClick() (./kdelibs/kdeui/ktextbrowser.cpp:53)
void KTextBrowser::setNotifyClick( bool notifyClick )
{
mNotifyClick = notifyClick;
}
kdelibs'KTextBrowser::setSource() (./kdelibs/kdeui/ktextbrowser.cpp:59)
void KTextBrowser::setSource( const QString& name )
{
if( name.isNull() == true )
{
return;
}
if( name.contains('@') == true )
{
if( mNotifyClick == false )
{
kapp->invokeMailer( name, QString::null );
}
else
{
emit mailClick( QString::null, name );
}
}
else
{
if( mNotifyClick == false )
{
kapp->invokeBrowser( name );
}
else
{
emit urlClick( name );
}
}
}
kdelibs'KTextBrowser::keyPressEvent() (./kdelibs/kdeui/ktextbrowser.cpp:91)
void KTextBrowser::keyPressEvent(QKeyEvent *e)
{
if( e->key() == Key_Escape )
{
e->ignore();
}
else if( e->key() == Key_F1 )
{
e->ignore();
}
else
{
QTextBrowser::keyPressEvent(e);
}
}