v4timelineelt.h
来自「一个用于智能手机的多媒体库适合S60 WinCE的跨平台开发库」· C头文件 代码 · 共 48 行
H
48 行
/* V4TimeLineElt.h Class representing one line in the timeline A line consists in a label, giving the name of the object it represents, and an owner drawn zone where are represented the events*/#ifndef _V4TimeLineElt_#define _V4TimeLineElt_ #include "../safe_include.h"// wxWidgets includes#include <wx/wx.h>// Own includes#include "V4TimeLineLine.h"// include GPAC//#include "../safe_include.h" // definition des types de donn閑sclass V4TimeLine;class V4TimeLineElt : public V4TimeLineLine { public: // Constructor V4TimeLineElt(V4TimeLine * parent, unsigned int pos, unsigned long NodeID, wxString eltName, unsigned long frame=0); // Destructor ~V4TimeLineElt(); // inherited virtual unsigned char GetType(); // returns NodeID u32 GetNodeID(); private: wxTextCtrl * txt; wxStaticText * lbl; unsigned long NodeID;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?