22 lines
420 B
C++
22 lines
420 B
C++
#ifndef Fl_Window_H
|
|
#define Fl_Window_H
|
|
|
|
#include "Fl_Group.H"
|
|
#include <fltk/Window.h>
|
|
|
|
class Fl_Window : public fltk::Window {
|
|
|
|
public:
|
|
Fl_Window(int x, int y, int w, int h, const char*l = 0)
|
|
: fltk::Window(x,y,w,h,l) {begin();}
|
|
|
|
Fl_Window(int x, int y, const char*l = 0)
|
|
: fltk::Window(x,y,l) {begin();}
|
|
|
|
void border(bool v) {
|
|
if (!v) clear_border(); // set_border does not work
|
|
}
|
|
};
|
|
|
|
#endif
|
|
|