metal.h

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

H
45
字号
/****************************************************************************** $Id: qt/examples/themes/metal.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 METAL_H#define METAL_H#include <qwindowsstyle.h>#include <qpalette.h>class MetalStyle : public QWindowsStyle{public:    MetalStyle();    void polish( QApplication*);    void unPolish( QApplication*);    void polish( QWidget* );    void unPolish( QWidget* );    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 );    void drawPushButton( QPushButton* btn, QPainter *p);    void drawPushButtonLabel( QPushButton* btn, QPainter *p);    void drawPanel( QPainter *p, int x, int y, int w, int h,		    const QColorGroup &, bool sunken,		    int lineWidth, const QBrush *fill );private:    QPalette oldPalette;};#endif

⌨️ 快捷键说明

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