qprinter.h
来自「pixil 最新的嵌入linux 應用程序集,別的地方很難下載」· C头文件 代码 · 共 21 行
H
21 行
#ifndef __QPRINTER_H#define __QPRINTER_H#include "fltk-qbase.h"#include "qpaintdevice.h"class QWidget;class QPrinter : public QPaintDevice{ public: enum PageSize { A4,B5,Letter,Legal,Executive }; enum Orientation { Portrait, Landscape }; bool setup(QWidget * parent = 0) { return true; } PageSize pageSize() const { return Letter; } Orientation orientation() const { return Portrait; } bool newPage() { return true; }};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?