wood.h

来自「《Linux程序设计权威指南》一书qt下的源码」· C头文件 代码 · 共 57 行

H
57
字号
/****************************************************************************** $Id: qt/examples/themes/wood.h   2.2.0-beta1   edited 2000-08-02 $**** Definition of something or other**** Created : 979899**** Copyright (C) 1997 by Troll Tech AS.  All rights reserved.******************************************************************************/#ifndef WOOD_H#define WOOD_H#include <qwindowsstyle.h>#include <qpalette.h>class NorwegianWoodStyle : public QWindowsStyle{public:    NorwegianWoodStyle( int sbext = -1 );    void polish( QApplication*);    void polish( QWidget* );    void unPolish( QWidget* );    void unPolish( QApplication*);    void drawButton( QPainter *p, int x, int y, int w, int h,			     const QColorGroup &g, bool sunken = FALSE,			     const QBrush *fill = 0 );    void drawBevelButton( QPainter *p, int x, int y, int w, int h,			  const QColorGroup &g, bool sunken = FALSE,			  const QBrush *fill = 0 );    QRect buttonRect( int x, int y, int w, int h);    void drawButtonMask( QPainter *p, 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 editable,				    bool /*enabled */,				    const QBrush *fb );    void drawPushButton( QPushButton* btn, QPainter *p);    void drawPushButtonLabel( QPushButton* btn, QPainter *p);    void drawScrollBarControls( QPainter*,  const QScrollBar*, int sliderStart, uint controls, uint activeControl );private:    void drawSemicircleButton(QPainter *p, const QRect &r, int dir, 			      bool sunken, const QColorGroup &g );    QPalette oldPalette;    QPixmap *sunkenDark;    QPixmap *sunkenLight;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?