// Copyright (C) 2002 Dominique Devriese // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 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 // Lesser General Public License for more details. // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA // 02110-1301 USA #include "linkslabel.h" #include "linkslabel.moc" #include #include #include #include #include #include #include using namespace std; class LinksLabel::Private { public: TQHBoxLayout* layout; std::vector labels; std::vector urllabels; }; LinksLabel::LinksLabel( TQWidget* parent, const char* name ) : TQWidget( parent, name ) { p = new Private; p->layout = new TQHBoxLayout( this ); TQLabel* l = new TQLabel( TQString::fromUtf8( "Dit is een " ), this ); p->labels.push_back( l ); p->layout->addWidget( l ); KURLLabel* u = new KURLLabel( TQString::fromUtf8( "http://www.kde.org/" ), TQString::fromUtf8( "url"), this ); p->urllabels.push_back( u ); p->layout->addWidget( u ); l = new TQLabel( TQString::fromUtf8( " !" ), this ); p->labels.push_back( l ); p->layout->addWidget(l ); p->layout->activate(); } LinksLabel::~LinksLabel() { delete p; } void LinksLabel::urlClicked() { const TQObject* o = TQT_TQOBJECT_CONST(const_cast(sender())); std::vector::iterator i = std::find( p->urllabels.begin(), p->urllabels.end(), static_cast(TQT_TQWIDGET_CONST( o )) ); assert( i != p->urllabels.end() ); emit linkClicked( i - p->urllabels.begin() ); } LinksLabel::LinksLabelEditBuf LinksLabel::startEdit() { return LinksLabelEditBuf(); } void LinksLabel::addText( const TQString& s, LinksLabelEditBuf& buf ) { buf.data.push_back( std::pair( false, s ) ); } void LinksLabel::addLink( const TQString& s, LinksLabelEditBuf& buf ) { buf.data.push_back( std::pair( true, s ) ); } namespace { void deleteObj( TQWidget* o ) { delete o; } } void LinksLabel::applyEdit( LinksLabelEditBuf& buf ) { std::for_each( p->urllabels.begin(), p->urllabels.end(), deleteObj ); std::for_each( p->labels.begin(), p->labels.end(), deleteObj ); p->urllabels.clear(); p->labels.clear(); delete p->layout; p->layout = new TQHBoxLayout( this ); for ( LinksLabelEditBuf::vec::iterator i = buf.data.begin(); i != buf.data.end(); ++i ) { if ( i->first ) { // we need a KURLLabel... // the url is an unused stub... KURLLabel* l = new KURLLabel( TQString::fromUtf8( "http://edu.kde.org/kig" ), i->second, this ); p->urllabels.push_back( l ); p->layout->addWidget( l ); connect( l, TQT_SIGNAL( leftClickedURL() ), TQT_SLOT( urlClicked() ) ); } else { // we need a normal label... TQLabel* l = new TQLabel( i->second, this ); p->labels.push_back( l ); p->layout->addWidget( l ); }; }; TQSpacerItem* spacer = new TQSpacerItem( 40, 20, TQSizePolicy::Expanding, TQSizePolicy::Minimum ); p->layout->addItem( spacer ); p->layout->activate(); std::for_each( p->urllabels.begin(), p->urllabels.end(), mem_fun( &TQWidget::show ) ); std::for_each( p->labels.begin(), p->labels.end(), mem_fun( &TQWidget::show ) ); }