fl_better_window.h

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

H
25
字号
#ifndef _FL_BETTER_WINDOW_H_#define _FL_BETTER_WINDOW_H_#include <FL/Fl_Window.H>class Fl_Better_Window : public Fl_Window{ public:  Fl_Better_Window (int x, int y, int w, int h, const char *l = 0)     : Fl_Window (x, y, w, h, l) {}  static int get_window_borders (Fl_Window *win,                                  int &left, int &right,                                  int &top, int &bottom);    int get_window_borders (int &left, int &right, 			  int &top, int &bottom)     {       return get_window_borders (this, left, right, top, bottom);    }  };#endif

⌨️ 快捷键说明

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