~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to lib/widgets/propeditor/pfontcombo.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2002-2004 by Alexander Dymo                             *
3
 
 *   cloudtemple@mskat.net                                                 *
4
 
 *                                                                         *
5
 
 *   This program is free software; you can redistribute it and/or modify  *
6
 
 *   it under the terms of the GNU Library General Public License as       *
7
 
 *   published by the Free Software Foundation; either version 2 of the    *
8
 
 *   License, or (at your option) any later version.                       *
9
 
 *                                                                         *
10
 
 *   This program is distributed in the hope that it will be useful,       *
11
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 
 *   GNU General Public License for more details.                          *
14
 
 *                                                                         *
15
 
 *   You should have received a copy of the GNU Library General Public     *
16
 
 *   License along with this program; if not, write to the                 *
17
 
 *   Free Software Foundation, Inc.,                                       *
18
 
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 
 ***************************************************************************/
20
 
#include "pfontcombo.h"
21
 
 
22
 
#ifndef PURE_QT
23
 
#include <kfontcombo.h>
24
 
#else
25
 
#include <qcombobox.h>
26
 
#endif
27
 
 
28
 
#include <qlayout.h>
29
 
 
30
 
#ifdef PURE_QT
31
 
#include <qfontdatabase.h>
32
 
#endif
33
 
 
34
 
namespace PropertyLib{
35
 
 
36
 
PFontCombo::PFontCombo(MultiProperty *property, QWidget *parent, const char *name)
37
 
    :PropertyWidget(property, parent, name)
38
 
{
39
 
    QHBoxLayout *l = new QHBoxLayout(this, 0, 0);
40
 
    m_edit = new KFontCombo(this);
41
 
    m_edit->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
42
 
    l->addWidget(m_edit);
43
 
    
44
 
    /*adymo: KFontCombo seems to have a bug: when it is not editable, the signals
45
 
    activated(int) and textChanged(const QString &) are not emitted*/
46
 
#ifdef PURE_QT
47
 
    QFontDatabase fonts;
48
 
    m_edit->insertStringList(fonts.families());
49
 
    connect(m_edit, SIGNAL(activated(const QString &)), this, SLOT(updateProperty(const QString&)));
50
 
#else
51
 
    connect(m_edit, SIGNAL(textChanged(const QString&)), this, SLOT(updateProperty(const QString&)));
52
 
#endif
53
 
}
54
 
 
55
 
QVariant PFontCombo::value() const
56
 
{
57
 
#ifndef PURE_QT
58
 
    return QVariant(m_edit->currentFont());
59
 
#else
60
 
    return QVariant(m_edit->currentText());
61
 
#endif
62
 
}
63
 
 
64
 
void PFontCombo::setValue(const QVariant &value, bool emitChange)
65
 
{
66
 
    disconnect(m_edit, SIGNAL(textChanged(const QString&)), this, SLOT(updateProperty(const QString&)));
67
 
#ifndef PURE_QT
68
 
    m_edit->setCurrentFont(value.toString());
69
 
#else
70
 
    m_edit->setCurrentText(value.toString());
71
 
#endif
72
 
    connect(m_edit, SIGNAL(textChanged(const QString&)), this, SLOT(updateProperty(const QString&)));
73
 
    if (emitChange)
74
 
        emit propertyChanged(m_property, value);
75
 
}
76
 
 
77
 
void PFontCombo::updateProperty(const QString &val)
78
 
{
79
 
    emit propertyChanged(m_property, QVariant(val));
80
 
}
81
 
 
82
 
}
83
 
 
84
 
#ifndef PURE_QT
85
 
#include "pfontcombo.moc"
86
 
#endif