extraeffectsplugin.h
来自「c++ GUI Programming with QT4书中的源码」· C头文件 代码 · 共 21 行
H
21 行
#ifndef BASICEFFECTSPLUGIN_H#define BASICEFFECTSPLUGIN_H#include <QObject>#include "../textart/textartinterface.h"class ExtraEffectsPlugin : public QObject, public TextArtInterface{ Q_OBJECT Q_INTERFACES(TextArtInterface)public: QStringList effects() const; QPixmap applyEffect(const QString &effect, const QString &text, const QFont &font, const QSize &size, const QPen &pen, const QBrush &brush);};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?