⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tutapp.h

📁 在linux下多媒体开发实例linux下多媒体开发
💻 H
字号:
// tutapp.h// definitions for guitar tutor application#ifndef TUTAPP_H#define TUTAPP_H#ifdef vDEBUG#include <v/vdebug.h>#endif#include <v/vapp.h>#include <v/vawinfo.h>#include "tcmdwin.h"class tutApp : public vApp{  friend int AppMain(int, char **);public:  tutApp(char* name) : vApp(name) { }  virtual ~tutApp() { }  virtual vWindow* NewAppWin(vWindow *win, char *name, int h, int w,			     vAppWinInfo *winInfo);  virtual void Exit(void);  virtual void CloseAppWin(vWindow *win);  virtual void AppCommand(vWindow *win, ItemVal id, ItemVal val,			  CmdType cType);protected:private:};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -