1 /****************************************************************************
2 **
3 ** Copyright (C) 2015 The Qt Company Ltd.
4 ** Contact: http://www.qt.io/licensing/
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and The Qt Company. For licensing terms
14 ** and conditions see http://www.qt.io/terms-conditions. For further
15 ** information use the contact form at http://www.qt.io/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 or version 3 as published by the Free
20 ** Software Foundation and appearing in the file LICENSE.LGPLv21 and
21 ** LICENSE.LGPLv3 included in the packaging of this file. Please review the
22 ** following information to ensure the GNU Lesser General Public License
23 ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
24 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
25 **
26 ** As a special exception, The Qt Company gives you certain additional
27 ** rights. These rights are described in The Qt Company LGPL Exception
28 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
29 **
30 ** GNU General Public License Usage
31 ** Alternatively, this file may be used under the terms of the GNU
32 ** General Public License version 3.0 as published by the Free Software
33 ** Foundation and appearing in the file LICENSE.GPL included in the
34 ** packaging of this file.  Please review the following information to
35 ** ensure the GNU General Public License version 3.0 requirements will be
36 ** met: http://www.gnu.org/copyleft/gpl.html.
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 
42 #include <qglobal.h>
43 
44 // ### Qt 5: eliminate this file
45 
46 /*
47     This is evil. MSVC doesn't let us remove private symbols, nor change their
48     visibility; yet there are some symbols we really needed to make public, e.g.,
49     ~QColorDialog(), and then there were some totally needless symbols in our
50     header files, e.g., setSelectedAlpha(). So we define a new version of
51     QColorDialog & Co. with only the private symbols that we removed from the
52     public header files. The friends are there only to prevent potential compiler
53     warnings.
54 
55     It would have been nicer to export the missing symbols as mangled "C" symbols
56     instead but unfortunately MSVC uses out-of-reach characters like @ and . in
57     their mangled C++ symbols.
58 */
59 
60 #if QT_VERSION < 0x050000 && defined(Q_CC_MSVC)
61 
62 QT_BEGIN_NAMESPACE
63 
64 #include <QtGui/QColor>
65 #include <QtGui/QFont>
66 
67 class QColorDialogPrivate;
68 class QFontDialogPrivate;
69 class QInputDialogPrivate;
70 class QWidget;
71 
72 class Q_GUI_EXPORT QColorDialog
73 {
74 private:
75     explicit QColorDialog(QWidget *, bool);
76     ~QColorDialog();
77 
78     void setColor(const QColor &);
79     QColor color() const;
80     bool selectColor(const QColor &);
81     void setSelectedAlpha(int);
82     int selectedAlpha() const;
83 
84     friend class QColorDialogPrivate;
85 };
86 
QColorDialog(QWidget *,bool)87 QColorDialog::QColorDialog(QWidget *, bool) {}
~QColorDialog()88 QColorDialog::~QColorDialog() {}
setColor(const QColor &)89 void QColorDialog::setColor(const QColor &) {}
color() const90 QColor QColorDialog::color() const { return QColor(); }
selectColor(const QColor &)91 bool QColorDialog::selectColor(const QColor &) { return false; }
setSelectedAlpha(int)92 void QColorDialog::setSelectedAlpha(int) {}
selectedAlpha() const93 int QColorDialog::selectedAlpha() const { return 0; }
94 
95 class Q_GUI_EXPORT QFontDialog
96 {
97 private:
98     explicit QFontDialog(QWidget *, bool, Qt::WindowFlags);
99     ~QFontDialog();
100 
101     QFont font() const;
102     void setFont(const QFont &);
103     void updateFamilies();
104     void updateStyles();
105     void updateSizes();
106 
107     static QFont getFont(bool *, const QFont *, QWidget *);
108 
109     friend class QFontDialogPrivate;
110 };
111 
QFontDialog(QWidget *,bool,Qt::WindowFlags)112 QFontDialog::QFontDialog(QWidget *, bool, Qt::WindowFlags) {}
~QFontDialog()113 QFontDialog::~QFontDialog() {}
font() const114 QFont QFontDialog::font() const { return QFont(); }
setFont(const QFont &)115 void QFontDialog::setFont(const QFont &) { }
updateFamilies()116 void QFontDialog::updateFamilies() {}
updateStyles()117 void QFontDialog::updateStyles() {}
updateSizes()118 void QFontDialog::updateSizes() {}
getFont(bool *,const QFont *,QWidget *)119 QFont QFontDialog::getFont(bool *, const QFont *, QWidget *) { return QFont(); }
120 
121 class Q_GUI_EXPORT QInputDialog
122 {
123 private:
124     enum Type { LineEdit, SpinBox, DoubleSpinBox, ComboBox, EditableComboBox };
125 
126     QInputDialog(const QString &, QWidget *, Type, Qt::WindowFlags);
127     QInputDialog(const QString &, const QString &, QWidget *, QWidget *, Qt::WindowFlags);
128     ~QInputDialog();
129 };
130 
QInputDialog(const QString &,QWidget *,Type,Qt::WindowFlags)131 QInputDialog::QInputDialog(const QString &, QWidget *, Type, Qt::WindowFlags) {}
QInputDialog(const QString &,const QString &,QWidget *,QWidget *,Qt::WindowFlags)132 QInputDialog::QInputDialog(const QString &, const QString &, QWidget *, QWidget *, Qt::WindowFlags) {}
~QInputDialog()133 QInputDialog::~QInputDialog() {}
134 
135 QT_END_NAMESPACE
136 
137 #endif
138