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.
tdeedu/kig/modes/linkslabel.cpp

135 lines
3.8 KiB

// Copyright (C) 2002 Dominique Devriese <devriese@kde.org>
// 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 <tqlabel.h>
#include <kurllabel.h>
#include <tqlayout.h>
#include <vector>
#include <algorithm>
#include <functional>
#include <assert.h>
using namespace std;
class LinksLabel::Private
{
public:
TQHBoxLayout* layout;
std::vector<TQLabel*> labels;
std::vector<KURLLabel*> 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<const TQT_BASE_OBJECT_NAME*>(sender()));
std::vector<KURLLabel*>::iterator i = std::find( p->urllabels.begin(), p->urllabels.end(), static_cast<const KURLLabel*>(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<bool, TQString>( false, s ) );
}
void LinksLabel::addLink( const TQString& s, LinksLabelEditBuf& buf )
{
buf.data.push_back( std::pair<bool, TQString>( 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 ) );
}