flnxdouble_blink_window.h

来自「pixil 最新的嵌入linux 應用程序集,別的地方很難下載」· C头文件 代码 · 共 20 行

H
20
字号
#include <FL/Fl.H>#include <FL/Fl_Double_Window.H>class double_blink_window : public Fl_Double_Window {  void draw() {     cout << "parent: " << (void*)this << endl;    for ( int i=0; i < children(); i++ ) {      draw_child( *child(i) );      cout << "child: " << (void*)child(i) << endl;    }  }         public:  double_blink_window(int x, int y, int w, int h, const char *l=0)    : Fl_Double_Window(x,y,w,h,l) { resizable(this); }  double_blink_window(int w, int h, const char *l=0)    : Fl_Double_Window(w,h,l) { resizable(this); }};

⌨️ 快捷键说明

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