~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to kmix/verticaltext.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * KMix -- KDE's full featured mini mixer
3
 
 *
4
 
 *
5
 
 * Copyright (C) 2003-2004 Christian Esken <esken@kde.org>
6
 
 *
7
 
 * This program is free software; you can redistribute it and/or
8
 
 * modify it under the terms of the GNU Library General Public
9
 
 * License as published by the Free Software Foundation; either
10
 
 * version 2 of the License, or (at your option) any later version.
11
 
 *
12
 
 * This program is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 
 * Library General Public License for more details.
16
 
 *
17
 
 * You should have received a copy of the GNU Library General Public
18
 
 * License along with this program; if not, write to the Free
19
 
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
 
 */
21
 
 
22
 
#include "verticaltext.h"
23
 
#include <QPainter>
24
 
#include <kdebug.h>
25
 
 
26
 
 
27
 
 
28
 
VerticalText::VerticalText(QWidget * parent, const QString& text, Qt::WFlags f) : QWidget(parent,f)
29
 
{
30
 
   m_labelText = text;
31
 
}
32
 
 
33
 
VerticalText::~VerticalText() {
34
 
}
35
 
 
36
 
 
37
 
void VerticalText::paintEvent ( QPaintEvent * /*event*/ ) {
38
 
    QPainter paint(this);
39
 
    paint.rotate(270);
40
 
    paint.translate(0,-4); // Silly "solution" to make underlengths work
41
 
 
42
 
    // Fix for bug 72520
43
 
   //-       paint.drawText(-height()+2,width(),name());
44
 
   //+       paint.drawText( -height()+2, width(), QString::fromUtf8(name()) );
45
 
   int posX =  -height();
46
 
   int posY = width();
47
 
   paint.drawText( posX, posY, m_labelText );
48
 
}
49
 
 
50
 
QSize VerticalText::sizeHint() const {
51
 
    const QFontMetrics& fontMetr = fontMetrics();
52
 
    QSize textSize(fontMetr.width(m_labelText), fontMetr.height());
53
 
    textSize.transpose();
54
 
    return textSize;
55
 
}
56
 
 
57
 
QSize VerticalText::minimumSizeHint() const
58
 
{
59
 
    const QFontMetrics& fontMetr = fontMetrics();
60
 
    QSize textSize(fontMetr.width("MMMM"), fontMetr.height());
61
 
    textSize.transpose();
62
 
    return textSize;
63
 
}
64
 
 
65
 
QSizePolicy VerticalText::sizePolicy () const
66
 
{
67
 
    return QSizePolicy(QSizePolicy::Fixed, QSizePolicy::MinimumExpanding);
68
 
}
69