tscreen.h

来自「ears-0.32, linux下有用的语音信号处理工具包」· C头文件 代码 · 共 35 行

H
35
字号
#ifndef Tscreen_h#define Tscreen_h#pragma interface#include <string>#include <map.h>#include <list.h>#include "screen.h"typedef map<string, string, less<string> > SSMap;typedef list<string> SList;class tscreen : public screen          // main screen of the train_ears program{public:  tscreen();   // init and draw screen  virtual ~tscreen();  // clear screen, reset state as was before  virtual void close();    void cfg_set (const SSMap&);         // prepare config window, draw it  bool config (string&, string&);      // change config, put it in strings  void cfg_redraw();    void help() { ui_->show_file ("HELP.train_ears"); }private:  win_hdl menu_w_, cfg_w_;  class InfoCfg* cfg_i_;  SList menu_l_;  void show_menu();  };#endif

⌨️ 快捷键说明

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