You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
2.8 KiB
96 lines
2.8 KiB
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2012 Timothy Pearson. All rights reserved.
|
|
**
|
|
** This file is part of the TDE Qt4 style interface
|
|
**
|
|
** This file may be used under the terms of the GNU General
|
|
** Public License versions 2.0 or 3.0 as published by the Free
|
|
** Software Foundation and appearing in the files LICENSE.GPL2
|
|
** and LICENSE.GPL3 included in the packaging of this file.
|
|
**
|
|
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
|
|
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
|
|
** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
|
|
** herein.
|
|
**
|
|
**********************************************************************/
|
|
|
|
#ifndef SIMPLESTYLE_H
|
|
#define SIMPLESTYLE_H
|
|
|
|
#include <QtGui/QWindowsStyle>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QPalette;
|
|
QT_END_NAMESPACE
|
|
|
|
class TQWidget;
|
|
class TQTabBar;
|
|
class TQRadioButton;
|
|
class TQProgressBar;
|
|
class TQPopupMenu;
|
|
class TQComboBox;
|
|
class TQSlider;
|
|
class TQScrollBar;
|
|
class TQSpinBox;
|
|
class TQSpinWidget;
|
|
class TQTitleBar;
|
|
class TQMenuBar;
|
|
|
|
enum TQt3WidgetType {
|
|
TQT3WT_NONE,
|
|
TQT3WT_TQProgressBar,
|
|
TQT3WT_TQTabBar,
|
|
TQT3WT_TQRadioButton,
|
|
TQT3WT_TQPopupMenu,
|
|
TQT3WT_TQComboBox,
|
|
TQT3WT_TQSlider,
|
|
TQT3WT_TQScrollBar,
|
|
TQT3WT_TQSpinBox,
|
|
TQT3WT_TQSpinWidget,
|
|
TQT3WT_TQTitleBar,
|
|
TQT3WT_TQMenuBar
|
|
};
|
|
|
|
class SimpleStyle : public QWindowsStyle
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SimpleStyle();
|
|
~SimpleStyle();
|
|
|
|
void polish(QPalette &palette);
|
|
void polish(QWidget *widget);
|
|
void unpolish(QWidget *widget);
|
|
bool eventFilter(QObject *obj, QEvent *ev);
|
|
|
|
void drawPrimitive(PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w = 0) const;
|
|
void drawControl(ControlElement element, const QStyleOption * option, QPainter * painter, const QWidget * widget = 0) const;
|
|
void drawComplexControl(ComplexControl control, const QStyleOptionComplex * option, QPainter * painter, const QWidget * widget = 0) const;
|
|
QRect subElementRect(SubElement element, const QStyleOption * option, const QWidget * widget = 0) const;
|
|
|
|
int pixelMetric(PixelMetric metric, const QStyleOption * option = 0, const QWidget * widget = 0) const;
|
|
|
|
private:
|
|
TQWidget* initializeInterfaceWidget(TQt3WidgetType wt, const QWidget * widget, const QStyleOption* qt4styleoptions = 0) const;
|
|
|
|
TQWidget* m_tqt3parent_widget;
|
|
TQWidget* m_tqt3generic_widget;
|
|
TQTabBar* m_tqt3tabbar_widget;
|
|
TQRadioButton* m_tqt3radiobutton_widget;
|
|
TQProgressBar* m_tqt3progressbar_widget;
|
|
TQPopupMenu* m_tqt3popupmenu_widget;
|
|
TQComboBox* m_tqt3combobox_widget;
|
|
TQSlider* m_tqt3slider_widget;
|
|
TQScrollBar* m_tqt3scrollbar_widget;
|
|
TQSpinBox* m_tqt3spinbox_widget;
|
|
TQSpinWidget* m_tqt3spinwidget_widget;
|
|
TQWidget* m_tqt3window_widget;
|
|
TQTitleBar* m_tqt3titlebar_widget;
|
|
TQMenuBar* m_tqt3menubar_widget;
|
|
};
|
|
|
|
#endif
|