From e2de64d6f1beb9e492daf5b886e19933c1fa41dd Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- arts/gui/kde/klabel_impl.cpp | 104 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 arts/gui/kde/klabel_impl.cpp (limited to 'arts/gui/kde/klabel_impl.cpp') diff --git a/arts/gui/kde/klabel_impl.cpp b/arts/gui/kde/klabel_impl.cpp new file mode 100644 index 00000000..f53de2e7 --- /dev/null +++ b/arts/gui/kde/klabel_impl.cpp @@ -0,0 +1,104 @@ +/* + Copyright ( C ) 2002 Arnold Krille + + 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., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + +*/ + +#include "klabel_impl.h" +#include "klabel_impl.moc" + +#include +#include + +using namespace Arts; +using namespace std; + +KLabel_impl::KLabel_impl( QFrame *widget ) : KFrame_impl( widget ? widget : new RotateLabel( 0 ) ) { + _label = static_cast( _qwidget ); +} + +string KLabel_impl::text() { + return _label->title().utf8().data(); +} + +void KLabel_impl::text( const string& newtext ) { + _label->title( QString::fromUtf8( newtext.c_str() ) ); +} + +long KLabel_impl::align() { return _label->align(); } +void KLabel_impl::align( long n ) { _label->align( n ); } + +void KLabel_impl::fontsize( long n ) { _label->fontsize( n ); } +void KLabel_impl::fontfamily( const std::string& n ) { _label->fontfamily( n.c_str() ); } + +Arts::TextBottom KLabel_impl::bottom() { return _label->bottom(); } +void KLabel_impl::bottom( Arts::TextBottom n ) { _label->bottom( n ); } + +REGISTER_IMPLEMENTATION( KLabel_impl ); + +RotateLabel::RotateLabel( QWidget* p, const char* n ) : QFrame( p,n ) { + _bottom = Arts::South; + _align = Arts::AlignCenter; +} +void RotateLabel::paintEvent( QPaintEvent* ) { + QPainter p( this ); + if ( _bottom == Arts::East ) { + p.rotate( 270 ); + p.drawText( QRect( 0,0, -height(), width() ), _align, _title ); + } else if ( _bottom == Arts::West ) { + p.rotate( 90 ); + p.drawText( QRect( 0,0, height(), -width() ), _align, _title ); + } else if ( _bottom == Arts::North ) { + p.rotate( 180 ); + p.drawText( QRect( 0,0, -width(), -height() ), _align, _title ); + } else { + p.drawText( QRect( 0,0, width(), height() ), _align, _title ); + } +} + +void RotateLabel::fontfamily( QString n ) { + QFont font = this->font(); + font.setFamily( n ); + this->setFont( font ); +} +void RotateLabel::fontsize( int n ) { + QFont font = this->font(); + font.setPixelSize( n ); + this->setFont( font ); +} + +void RotateLabel::title( QString n ) { + _title = n; + QSize size = this->fontMetrics().size( SingleLine, _title ); + if ( _bottom == Arts::East || _bottom == Arts::West ) + this->setMinimumSize( size.height(), size.width() ); + else + this->setMinimumSize( size ); +} + +void RotateLabel::align( long n ) { + _align=n; + repaint(); +} + +void RotateLabel::bottom( Arts::TextBottom bottom ) { + _bottom = bottom; + title( _title ); + repaint(); +} + +// vim: sw=4 ts=4 -- cgit v1.2.1