mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 02:42:55 +00:00
remove some Q3 support remains
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
2298738735
commit
85ba1c5877
15 changed files with 1 additions and 55 deletions
|
@ -80,7 +80,6 @@
|
||||||
#cmakedefine QT_NO_PRINTDIALOG
|
#cmakedefine QT_NO_PRINTDIALOG
|
||||||
#cmakedefine QT_NO_PRINTPREVIEWDIALOG
|
#cmakedefine QT_NO_PRINTPREVIEWDIALOG
|
||||||
#cmakedefine QT_NO_PROGRESSDIALOG
|
#cmakedefine QT_NO_PROGRESSDIALOG
|
||||||
#cmakedefine QT_NO_TABDIALOG
|
|
||||||
#cmakedefine QT_NO_WIZARD
|
#cmakedefine QT_NO_WIZARD
|
||||||
|
|
||||||
/* File I/O */
|
/* File I/O */
|
||||||
|
|
|
@ -639,11 +639,6 @@
|
||||||
#define QT_NO_SVG
|
#define QT_NO_SVG
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Q3TabDialog
|
|
||||||
#if !defined(QT_NO_TABDIALOG) && (defined(QT_NO_TABBAR))
|
|
||||||
#define QT_NO_TABDIALOG
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// QTextCodecPlugin
|
// QTextCodecPlugin
|
||||||
#if !defined(QT_NO_TEXTCODECPLUGIN) && (defined(QT_NO_TEXTCODEC) || defined(QT_NO_LIBRARY))
|
#if !defined(QT_NO_TEXTCODECPLUGIN) && (defined(QT_NO_TEXTCODEC) || defined(QT_NO_LIBRARY))
|
||||||
#define QT_NO_TEXTCODECPLUGIN
|
#define QT_NO_TEXTCODECPLUGIN
|
||||||
|
|
|
@ -651,13 +651,6 @@ Requires: COMBOBOX SPINBOX STACKEDWIDGET
|
||||||
Name: QInputDialog
|
Name: QInputDialog
|
||||||
SeeAlso: ???
|
SeeAlso: ???
|
||||||
|
|
||||||
Feature: TABDIALOG
|
|
||||||
Description: Supports a stack of tabbed widgets.
|
|
||||||
Section: Dialogs
|
|
||||||
Requires: TABBAR
|
|
||||||
Name: Q3TabDialog
|
|
||||||
SeeAlso: ???
|
|
||||||
|
|
||||||
Feature: ERRORMESSAGE
|
Feature: ERRORMESSAGE
|
||||||
Description: Supports an error message display dialog.
|
Description: Supports an error message display dialog.
|
||||||
Section: Dialogs
|
Section: Dialogs
|
||||||
|
|
|
@ -190,7 +190,6 @@ private:
|
||||||
friend class QApplication;
|
friend class QApplication;
|
||||||
friend class QApplicationPrivate;
|
friend class QApplicationPrivate;
|
||||||
friend class QETWidget;
|
friend class QETWidget;
|
||||||
friend class Q3AccelManager;
|
|
||||||
friend class QShortcutMap;
|
friend class QShortcutMap;
|
||||||
friend class QWidget;
|
friend class QWidget;
|
||||||
friend class QWidgetPrivate;
|
friend class QWidgetPrivate;
|
||||||
|
|
|
@ -308,7 +308,6 @@ private:
|
||||||
friend class QThreadData;
|
friend class QThreadData;
|
||||||
friend class QApplication;
|
friend class QApplication;
|
||||||
friend class QApplicationPrivate;
|
friend class QApplicationPrivate;
|
||||||
friend class Q3AccelManager;
|
|
||||||
friend class QShortcutMap;
|
friend class QShortcutMap;
|
||||||
friend class QETWidget;
|
friend class QETWidget;
|
||||||
friend class QGraphicsView;
|
friend class QGraphicsView;
|
||||||
|
|
|
@ -828,26 +828,6 @@ bool QPicture::exec(QPainter *painter, QDataStream &s, int nrecords)
|
||||||
}
|
}
|
||||||
painter->setBrush(brush);
|
painter->setBrush(brush);
|
||||||
break;
|
break;
|
||||||
// #ifdef Q_Q3PAINTER
|
|
||||||
// case QPicturePrivate::PdcSetTabStops:
|
|
||||||
// s >> i_16;
|
|
||||||
// painter->setTabStops(i_16);
|
|
||||||
// break;
|
|
||||||
// case QPicturePrivate::PdcSetTabArray:
|
|
||||||
// s >> i_16;
|
|
||||||
// if (i_16 == 0) {
|
|
||||||
// painter->setTabArray(0);
|
|
||||||
// } else {
|
|
||||||
// int *ta = new int[i_16];
|
|
||||||
// for (int i=0; i<i_16; i++) {
|
|
||||||
// s >> i1_16;
|
|
||||||
// ta[i] = i1_16;
|
|
||||||
// }
|
|
||||||
// painter->setTabArray(ta);
|
|
||||||
// delete [] ta;
|
|
||||||
// }
|
|
||||||
// break;
|
|
||||||
// #endif
|
|
||||||
case QPicturePrivate::PdcSetVXform:
|
case QPicturePrivate::PdcSetVXform:
|
||||||
s >> i_8;
|
s >> i_8;
|
||||||
painter->setViewTransformEnabled(i_8);
|
painter->setViewTransformEnabled(i_8);
|
||||||
|
@ -884,14 +864,6 @@ bool QPicture::exec(QPainter *painter, QDataStream &s, int nrecords)
|
||||||
// i_8 is always false due to updateXForm() in qpaintengine_pic.cpp
|
// i_8 is always false due to updateXForm() in qpaintengine_pic.cpp
|
||||||
painter->setTransform(matrix * worldMatrix, i_8);
|
painter->setTransform(matrix * worldMatrix, i_8);
|
||||||
break;
|
break;
|
||||||
// #ifdef Q_Q3PAINTER
|
|
||||||
// case QPicturePrivate::PdcSaveWMatrix:
|
|
||||||
// painter->saveWorldMatrix();
|
|
||||||
// break;
|
|
||||||
// case QPicturePrivate::PdcRestoreWMatrix:
|
|
||||||
// painter->restoreWorldMatrix();
|
|
||||||
// break;
|
|
||||||
// #endif
|
|
||||||
case QPicturePrivate::PdcSetClip:
|
case QPicturePrivate::PdcSetClip:
|
||||||
s >> i_8;
|
s >> i_8;
|
||||||
painter->setClipping(i_8);
|
painter->setClipping(i_8);
|
||||||
|
|
|
@ -110,7 +110,6 @@ private:
|
||||||
|
|
||||||
QExplicitlySharedDataPointer<QPicturePrivate> d_ptr;
|
QExplicitlySharedDataPointer<QPicturePrivate> d_ptr;
|
||||||
friend class QPicturePaintEngine;
|
friend class QPicturePaintEngine;
|
||||||
friend class Q3Picture;
|
|
||||||
friend class QAlphaPaintEngine;
|
friend class QAlphaPaintEngine;
|
||||||
friend class QPreviewPaintEngine;
|
friend class QPreviewPaintEngine;
|
||||||
|
|
||||||
|
|
|
@ -325,7 +325,6 @@ private:
|
||||||
friend class QWidget;
|
friend class QWidget;
|
||||||
friend class QWidgetPrivate;
|
friend class QWidgetPrivate;
|
||||||
friend class QETWidget;
|
friend class QETWidget;
|
||||||
friend class Q3AccelManager;
|
|
||||||
friend class QTranslator;
|
friend class QTranslator;
|
||||||
friend class QWidgetAnimator;
|
friend class QWidgetAnimator;
|
||||||
#ifndef QT_NO_SHORTCUT
|
#ifndef QT_NO_SHORTCUT
|
||||||
|
|
|
@ -200,7 +200,6 @@ private:
|
||||||
|
|
||||||
friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &in, const QKeySequence &ks);
|
friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &in, const QKeySequence &ks);
|
||||||
friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &in, QKeySequence &ks);
|
friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &in, QKeySequence &ks);
|
||||||
friend class Q3AccelManager;
|
|
||||||
friend class QShortcutMap;
|
friend class QShortcutMap;
|
||||||
friend class QShortcut;
|
friend class QShortcut;
|
||||||
|
|
||||||
|
|
|
@ -468,7 +468,6 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Q_DISABLE_COPY(QPainter)
|
Q_DISABLE_COPY(QPainter)
|
||||||
friend class Q3Painter;
|
|
||||||
|
|
||||||
QScopedPointer<QPainterPrivate> d_ptr;
|
QScopedPointer<QPainterPrivate> d_ptr;
|
||||||
|
|
||||||
|
|
|
@ -1149,7 +1149,7 @@ void QStyle::drawItemPixmap(QPainter *painter, const QRect &rect, int alignment,
|
||||||
|
|
||||||
\value SC_ToolButton Tool button (see also QToolButton).
|
\value SC_ToolButton Tool button (see also QToolButton).
|
||||||
\value SC_ToolButtonMenu Sub-control for opening a popup menu in a
|
\value SC_ToolButtonMenu Sub-control for opening a popup menu in a
|
||||||
tool button; see also Q3PopupMenu.
|
tool button; see also QMenu.
|
||||||
|
|
||||||
\value SC_TitleBarSysMenu System menu button (i.e., restore, close, etc.).
|
\value SC_TitleBarSysMenu System menu button (i.e., restore, close, etc.).
|
||||||
\value SC_TitleBarMinButton Minimize button.
|
\value SC_TitleBarMinButton Minimize button.
|
||||||
|
|
|
@ -58,7 +58,6 @@ QT_BEGIN_NAMESPACE
|
||||||
class QFontPrivate; /* don't touch */
|
class QFontPrivate; /* don't touch */
|
||||||
class QStringList;
|
class QStringList;
|
||||||
class QVariant;
|
class QVariant;
|
||||||
class Q3TextFormatCollection;
|
|
||||||
|
|
||||||
class Q_GUI_EXPORT QFont
|
class Q_GUI_EXPORT QFont
|
||||||
{
|
{
|
||||||
|
@ -310,7 +309,6 @@ private:
|
||||||
friend class QApplication;
|
friend class QApplication;
|
||||||
friend class QWidget;
|
friend class QWidget;
|
||||||
friend class QWidgetPrivate;
|
friend class QWidgetPrivate;
|
||||||
friend class Q3TextFormatCollection;
|
|
||||||
friend class QTextLayout;
|
friend class QTextLayout;
|
||||||
friend class QTextEngine;
|
friend class QTextEngine;
|
||||||
friend class QStackTextEngine;
|
friend class QStackTextEngine;
|
||||||
|
|
|
@ -194,7 +194,6 @@ private:
|
||||||
friend class QMenuBar;
|
friend class QMenuBar;
|
||||||
friend class QMenuBarPrivate;
|
friend class QMenuBarPrivate;
|
||||||
friend class QTornOffMenu;
|
friend class QTornOffMenu;
|
||||||
friend class Q3PopupMenu;
|
|
||||||
friend class QComboBox;
|
friend class QComboBox;
|
||||||
friend class QAction;
|
friend class QAction;
|
||||||
friend class QToolButtonPrivate;
|
friend class QToolButtonPrivate;
|
||||||
|
|
|
@ -174,7 +174,6 @@ private:
|
||||||
Q_PRIVATE_SLOT(d_func(), void _q_removeTab(int))
|
Q_PRIVATE_SLOT(d_func(), void _q_removeTab(int))
|
||||||
Q_PRIVATE_SLOT(d_func(), void _q_tabMoved(int, int))
|
Q_PRIVATE_SLOT(d_func(), void _q_tabMoved(int, int))
|
||||||
void setUpLayout(bool = false);
|
void setUpLayout(bool = false);
|
||||||
friend class Q3TabDialog;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // QT_NO_TABWIDGET
|
#endif // QT_NO_TABWIDGET
|
||||||
|
|
|
@ -109,7 +109,6 @@ QStringList AccessibleFactory::keys() const
|
||||||
list << QLatin1String("QStatusBar");
|
list << QLatin1String("QStatusBar");
|
||||||
list << QLatin1String("QProgressBar");
|
list << QLatin1String("QProgressBar");
|
||||||
list << QLatin1String("QMenuBar");
|
list << QLatin1String("QMenuBar");
|
||||||
list << QLatin1String("Q3PopupMenu");
|
|
||||||
list << QLatin1String("QMenu");
|
list << QLatin1String("QMenu");
|
||||||
list << QLatin1String("QHeaderView");
|
list << QLatin1String("QHeaderView");
|
||||||
list << QLatin1String("QTabBar");
|
list << QLatin1String("QTabBar");
|
||||||
|
@ -253,8 +252,6 @@ QAccessibleInterface *AccessibleFactory::create(const QString &classname, QObjec
|
||||||
#ifndef QT_NO_MENU
|
#ifndef QT_NO_MENU
|
||||||
} else if (classname == QLatin1String("QMenu")) {
|
} else if (classname == QLatin1String("QMenu")) {
|
||||||
iface = new QAccessibleMenu(widget);
|
iface = new QAccessibleMenu(widget);
|
||||||
} else if (classname == QLatin1String("Q3PopupMenu")) {
|
|
||||||
iface = new QAccessibleMenu(widget);
|
|
||||||
#endif
|
#endif
|
||||||
#ifndef QT_NO_ITEMVIEWS
|
#ifndef QT_NO_ITEMVIEWS
|
||||||
#ifdef Q_WS_X11
|
#ifdef Q_WS_X11
|
||||||
|
|
Loading…
Add table
Reference in a new issue