lscreen.h

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

H
29
字号
#ifndef Lscreen_h#define Lscreen_h#pragma interface#include "screen.h"typedef list<string> SList;class lscreen : public screen        // main screen of the listen program{public:  lscreen();   // init and draw screen  virtual ~lscreen();  // clear screen, reset state as was before  virtual void close();  void init (bool);  void show_menu();    void redraw_debug_info (SList&);  void help() { ui_->show_file ("HELP.listen"); }  void toggle_debug();private:  bool debug_f_;  win_hdl menu_w_, debug_w_;  SList menu_l_, debug_l_;};#endif

⌨️ 快捷键说明

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