diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-01-07 07:50:23 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-01-07 07:50:36 +0100 |
| commit | 27c175dad8470229a512540edaae24787c65c3b7 (patch) | |
| tree | f2c248d20b8a94599f26c55913cec4f65d5524a2 /FL/Fl_Graphics_Driver.H | |
| parent | 9d474dfcdf32993fc93d2b1b87a2e8ba1cf927e5 (diff) | |
Add virtual void Fl_Graphics_Driver::set_status() and implement for X11 platform.
Diffstat (limited to 'FL/Fl_Graphics_Driver.H')
| -rw-r--r-- | FL/Fl_Graphics_Driver.H | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FL/Fl_Graphics_Driver.H b/FL/Fl_Graphics_Driver.H index 480b3c995..fe1e8d029 100644 --- a/FL/Fl_Graphics_Driver.H +++ b/FL/Fl_Graphics_Driver.H @@ -356,8 +356,10 @@ public: virtual float scale_font_for_PostScript(Fl_Font_Descriptor *desc, int s); // default implementation may be enough virtual float scale_bitmap_for_PostScript(); + // next 3 are related to X Input Method virtual void set_spot(int font, int size, int X, int Y, int W, int H, Fl_Window *win); virtual void reset_spot(); + virtual void set_status(int X, int Y, int W, int H); // each platform implements these 3 functions its own way virtual void add_rectangle_to_region(Fl_Region r, int x, int y, int w, int h); virtual Fl_Region XRectangleRegion(int x, int y, int w, int h); |
