📄 metal.h
字号:
/****************************************************************************** $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -