v4timelinehdr.h
来自「gaca源码」· C头文件 代码 · 共 37 行
H
37 行
/*
V4TimeLineHdr.h
Defines the class for printing hearder information on the timeline (frame numbers...)
*/
#ifndef _V4TimeLineHdr_
#define _V4TimeLineHdr_
#include "../safe_include.h"
#include <wx/wx.h>
#include "V4TimeLineLine.h" // parent class
class V4TimeLine;
class V4TimeLineHdr : public V4TimeLineLine {
public:
// Constructor
V4TimeLineHdr(V4TimeLine * parent, unsigned int pos=0);
// Destructor
~V4TimeLineHdr();
// inherited
virtual unsigned char GetType();
private:
wxStaticText * lbl; // holds the title string
DECLARE_EVENT_TABLE();
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?