/usr/include/mgl2/fltk.h is in libmgl-dev 2.2.2.1-3+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | /***************************************************************************
* window.h is part of Math Graphic Library
* Copyright (C) 2007-2014 Alexey Balakin <mathgl.abalakin@gmail.ru> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Library General Public License as *
* published by the Free Software Foundation; either version 3 of the *
* License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
//-----------------------------------------------------------------------------
#ifndef _MGL_FLTK_H_
#define _MGL_FLTK_H_
#include <mgl2/abstract.h>
//-----------------------------------------------------------------------------
#ifdef __cplusplus
extern "C" {
#endif
/// Creates FLTK window for plotting
HMGL MGL_EXPORT mgl_create_graph_fltk(int (*draw)(HMGL gr, void *p), const char *title, void *par, void (*load)(void *p));
uintptr_t MGL_EXPORT mgl_create_graph_fltk_(const char *title, int);
/// Run main FLTK loop for event handling.
int MGL_EXPORT mgl_fltk_run();
int MGL_EXPORT mgl_fltk_run_();
/// Run main FLTK loop for event handling in separate thread.
int MGL_EXPORT mgl_fltk_thr();
#ifdef __cplusplus
}
//-----------------------------------------------------------------------------
#include <mgl2/wnd.h>
//-----------------------------------------------------------------------------
/// Wrapper class for windows displaying graphics
class MGL_EXPORT mglFLTK : public mglWnd
{
public:
mglFLTK(const char *title="MathGL") : mglWnd()
{ gr = mgl_create_graph_fltk(0,title,0,0); }
mglFLTK(int (*draw)(HMGL gr, void *p), const char *title="MathGL", void *par=NULL, void (*load)(void *p)=0) : mglWnd()
{ gr = mgl_create_graph_fltk(draw,title,par,load); }
mglFLTK(int (*draw)(mglGraph *gr), const char *title="MathGL") : mglWnd()
{ gr = mgl_create_graph_fltk(draw?mgl_draw_graph:0,title,(void*)draw,0); }
mglFLTK(mglDraw *draw, const char *title="MathGL") : mglWnd()
{ gr = mgl_create_graph_fltk(draw?mgl_draw_class:0,title,draw,mgl_reload_class);
mgl_set_click_func(gr, mgl_click_class); }
int Run() { return mgl_fltk_run(); } ///< Run main loop for event handling
int RunThr() { return mgl_fltk_thr(); } ///< Run main loop for event handling in separate thread
};
//-----------------------------------------------------------------------------
#ifdef __MWERKS__
# define FL_DLL
#endif
#include <FL/Fl.H>
#include <Fl/Fl_Window.H>
#include <Fl/Fl_Scroll.H>
#include <FL/Fl_Button.H>
#include <FL/Fl_Counter.H>
#include <FL/Fl_Menu_Bar.H>
class mglCanvas;
//-----------------------------------------------------------------------------
/// Class is FLTK widget which display MathGL graphics
class MGL_EXPORT Fl_MathGL : public Fl_Widget
{
public:
Fl_Valuator *tet_val; ///< pointer to external tet-angle validator
Fl_Valuator *phi_val; ///< pointer to external phi-angle validator
Fl_MathGL(int x, int y, int w, int h, const char *label=0);
~Fl_MathGL();
/// Update (redraw) plot
virtual void update();
/// Set angles for additional plot rotation
inline void set_angle(mreal t, mreal p){ tet = t; phi = p; }
/// Set bitwise flags for general state (1-Alpha, 2-Light)
inline void set_flag(int f) { flag = f; }
/// Set flags for handling mouse
void set_graph(HMGL gr); ///< Set grapher object
inline void set_graph(mglGraph *Gr)
{ set_graph(Gr->Self()); }
/// Get pointer to grapher
inline HMGL get_graph() { return (HMGL)gr; }
/// Set drawing functions and its parameter
inline void set_draw(int (*func)(mglBase *gr, void *par), void *par)
{ if(draw_cl) delete draw_cl; draw_cl=0; draw_func=func; draw_par=par; }
inline void set_draw(mglDraw *dr) { if(draw_cl) delete draw_cl; draw_cl=dr; draw_func=0; }
inline void set_draw(int (*dr)(mglGraph *gr))
{ set_draw(dr?mgl_draw_graph:0,(void*)dr); }
void set_state(bool z, bool r) { zoom = z; rotate = r; }
/// Set zoom in/out region
inline void set_zoom(mreal X1, mreal Y1, mreal X2, mreal Y2)
{ x1 = X1; x2 = X2; y1 = Y1; y2 = Y2; update(); }
/// Get zoom region
inline void get_zoom(mreal *X1, mreal *Y1, mreal *X2, mreal *Y2)
{ *X1 = x1; *X2 = x2; *Y1 = y1; *Y2 = y2; }
/// Set popup menu pointer
inline void set_popup(const Fl_Menu_Item *pmenu, Fl_Widget *wdg, void *v)
{ popup = pmenu; wpar = wdg; vpar = v; }
inline void zoom_region(mreal xx1,mreal xx2,mreal yy1, mreal yy2)
{ x1=xx1; y1=yy1; x2=xx2; y2=yy2; }
protected:
mglCanvas *gr; ///< pointer to grapher
void *draw_par; ///< Parameters for drawing function mglCanvasWnd::DrawFunc.
/// Drawing function for window procedure. It should return the number of frames.
int (*draw_func)(mglBase *gr, void *par);
mglDraw *draw_cl;
const Fl_Menu_Item *popup; ///< pointer to popup menu items
Fl_Widget *wpar; ///< widget for popup menu
void *vpar; ///< parameter for popup menu
mreal tet,phi; ///< rotation angles
bool rotate; ///< flag for handle mouse
bool zoom; ///< flag for zoom by mouse
bool wire;
mreal x1,x2,y1,y2; ///< zoom region
int flag; ///< bitwise flag for general state (1-Alpha, 2-Light)
int x0,y0,xe,ye; ///< mouse position
char pos[128];
virtual void draw(); ///< quick drawing function
int handle(int code); ///< handle mouse events
void resize(int x, int y, int w, int h); ///< resize control
};
//-----------------------------------------------------------------------------
class MGL_EXPORT Fl_MGLView : public Fl_Window
{
public:
Fl_MathGL *FMGL; ///< Control which draw graphics
Fl_Scroll *scroll;
Fl_Menu_Bar *menu;
void *par; ///< Parameter for handling animation
void (*next)(void*); ///< Callback function for next frame
void (*prev)(void*); ///< Callback function for prev frame
mreal (*delay)(void*); ///< Callback function for delay
void (*reload)(void*); ///< Callback function for reloading
void toggle_alpha() { toggle(alpha, alpha_bt, "Graphics/Alpha"); }
void toggle_light() { toggle(light, light_bt, "Graphics/Light"); }
void toggle_sshow() { toggle(sshow, anim_bt, "Graphics/Slideshow"); }
void toggle_grid() { toggle(grid, grid_bt, "Graphics/Grid"); }
void toggle_zoom() { toggle(zoom, zoom_bt); }
void toggle_rotate(){ toggle(rotate, rotate_bt); }
void setoff_zoom() { setoff(zoom, zoom_bt); }
void setoff_rotate(){ setoff(rotate, rotate_bt); }
bool is_sshow() { return sshow; }
void adjust()
{ mgl_set_size(FMGL->get_graph(),scroll->w(),scroll->h()); FMGL->size(scroll->w(),scroll->h()); update(); }
Fl_MGLView(int x, int y, int w, int h, const char *label=0);
~Fl_MGLView();
void update(); ///< Update picture by calling user drawing function
protected:
Fl_Button *alpha_bt, *light_bt, *rotate_bt, *anim_bt, *zoom_bt, *grid_bt;
// Fl_Counter *tet, *phi;
int grid, alpha, light; ///< Current states of wire, alpha, light switches (toggle buttons)
int sshow, rotate, zoom;///< Current states of slideshow, rotate, zoom switches (toggle buttons)
void toggle(int &val, Fl_Button *b, const char *txt=NULL);
void setoff(int &val, Fl_Button *b, const char *txt=NULL);
};
//-----------------------------------------------------------------------------
void MGL_EXPORT mgl_ask_fltk(const wchar_t *quest, wchar_t *res);
void MGL_EXPORT mgl_makemenu_fltk(Fl_Menu_ *m, Fl_MGLView *w);
//-----------------------------------------------------------------------------
#endif
#endif
|