summaryrefslogtreecommitdiff
path: root/noncore/styles/fresh/fresh.h
authorsandman <sandman>2002-10-04 01:54:04 (UTC)
committer sandman <sandman>2002-10-04 01:54:04 (UTC)
commit3ba387cb218f45f72c00d8b64ea46d75e19fb3de (patch) (side-by-side diff)
treeef166da4a0e837f5424ba2990a5f2225a3f0dd10 /noncore/styles/fresh/fresh.h
parent4a6ccb87f45065bc37f801adb61c3462f870cb92 (diff)
downloadopie-3ba387cb218f45f72c00d8b64ea46d75e19fb3de.zip
opie-3ba387cb218f45f72c00d8b64ea46d75e19fb3de.tar.gz
opie-3ba387cb218f45f72c00d8b64ea46d75e19fb3de.tar.bz2
Added two styles from Qtopia 1.6
Diffstat (limited to 'noncore/styles/fresh/fresh.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/fresh/fresh.h100
1 files changed, 100 insertions, 0 deletions
diff --git a/noncore/styles/fresh/fresh.h b/noncore/styles/fresh/fresh.h
new file mode 100644
index 0000000..b4be7f3
--- a/dev/null
+++ b/noncore/styles/fresh/fresh.h
@@ -0,0 +1,100 @@
+/**********************************************************************
+** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
+**
+** This file is part of the Qtopia Environment.
+**
+** This file may be distributed and/or modified under the terms of the
+** GNU General Public License version 2 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file.
+**
+** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+**
+** See http://www.trolltech.com/gpl/ for GPL licensing information.
+**
+** Contact info@trolltech.com if any conditions of this licensing are
+** not clear to you.
+**
+**********************************************************************/
+
+#ifndef FRESHSTYLE_H
+#define FRESHSTYLE_H
+
+#include <qwindowsstyle.h>
+#include <qpe/styleinterface.h>
+
+class Q_EXPORT FreshStyle : public QWindowsStyle
+{
+public:
+ FreshStyle();
+ virtual ~FreshStyle();
+ virtual void polish( QPalette &p );
+ virtual void polish( QWidget *w );
+ virtual void unPolish( QWidget *w );
+
+ int defaultFrameWidth () const;
+ void drawPanel ( QPainter * p, int x, int y, int w, int h,
+ const QColorGroup &, bool sunken=FALSE, int lineWidth = 1, const QBrush * fill = 0 );
+ void drawButton( QPainter *p, int x, int y, int w, int h,
+ const QColorGroup &g, bool sunken, const QBrush* fill );
+ void drawButtonMask ( QPainter * p, int x, int y, int w, int h );
+ void drawBevelButton( QPainter *p, int x, int y, int w, int h,
+ const QColorGroup &g, bool sunken=FALSE, const QBrush* fill=0 );
+ QRect comboButtonRect( int x, int y, int w, int h);
+ QRect comboButtonFocusRect( int x, int y, int w, int h);
+ void drawComboButton( QPainter *p, int x, int y, int w, int h,
+ const QColorGroup &g, bool sunken, bool, bool enabled,
+ const QBrush *fill );
+ void drawExclusiveIndicator ( QPainter * p, int x, int y, int w, int h,
+ const QColorGroup & g, bool on, bool down = FALSE, bool enabled = TRUE );
+ void drawIndicator ( QPainter * p, int x, int y, int w, int h,
+ const QColorGroup & g, int state, bool down = FALSE, bool enabled = TRUE );
+ void scrollBarMetrics( const QScrollBar*, int&, int&, int&, int&);
+ void drawScrollBarControls( QPainter*, const QScrollBar*, int sliderStart, uint controls, uint activeControl );
+ ScrollControl scrollBarPointOver( const QScrollBar* sb, int sliderStart, const QPoint& p );
+ void drawRiffles( QPainter* p, int x, int y, int w, int h,
+ const QColorGroup &g, bool horizontal );
+ int sliderLength() const;
+ void drawSlider( QPainter *p, int x, int y, int w, int h,
+ const QColorGroup &g, Orientation, bool tickAbove, bool tickBelow );
+ void drawSliderMask( QPainter *p, int x, int y, int w, int h,
+ Orientation, bool tickAbove, bool tickBelow );
+ void drawSliderGrooveMask( QPainter *p, int x, int y, int w, int h,
+ const QColorGroup& , QCOORD c, Orientation orient );
+ void drawTab( QPainter *, const QTabBar *, QTab *, bool selected );
+ int extraPopupMenuItemWidth( bool checkable, int maxpmw, QMenuItem*, const QFontMetrics& );
+ int popupMenuItemHeight( bool checkable, QMenuItem*, const QFontMetrics& );
+ void drawPopupMenuItem( QPainter* p, bool checkable, int maxpmw, int tab, QMenuItem* mi,
+ const QPalette& pal,
+ bool act, bool enabled, int x, int y, int w, int h);
+
+ int buttonMargin() const;
+ QSize scrollBarExtent() const;
+
+private: // Disabled copy constructor and operator=
+#if defined(Q_DISABLE_COPY)
+ FreshStyle( const FreshStyle & );
+ FreshStyle& operator=( const FreshStyle & );
+#endif
+};
+
+
+class FreshStyleImpl : public StyleInterface
+{
+public:
+ FreshStyleImpl();
+ virtual ~FreshStyleImpl();
+
+ QRESULT queryInterface( const QUuid&, QUnknownInterface** );
+ Q_REFCOUNT
+
+ virtual QStyle *style();
+ virtual QString name() const;
+
+private:
+ FreshStyle *fresh;
+ ulong ref;
+};
+
+#endif // FRESHSTYLE_H