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

📄 flnxdouble_blink_window.h

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -