qvseparator.h
来自「Windows上的MUD客户端程序」· C头文件 代码 · 共 32 行
H
32 行
#ifndef _QV_SEPARATOR_
#define _QV_SEPARATOR_
#include <QvSFEnum.h>
#include <QvGroup.h>
#include <QvSFBitMask.h>
class QvSeparator : public QvGroup {
QV_NODE_HEADER(QvSeparator);
public:
enum CullEnabled { // Possible values for culling
OFF, // Never cull
ON, // Always cull
AUTO, // Decide based on some heuristic
};
#if 0
enum CacheEnabled { // Possible values for caching // jwd for chaco added
OFF, // Never cache
ON, // Always cache
AUTO, // Decide based on some heuristic
};
#endif
// Fields
QvSFEnum renderCulling;
QvSFEnum renderCaching;
};
#endif /* _QV_SEPARATOR_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?