~ubuntu-branches/debian/squeeze/gmsh/squeeze

« back to all changes in this revision

Viewing changes to Fltk/visibilityWindow.h

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme
  • Date: 2009-07-13 15:49:21 UTC
  • mfrom: (7.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090713154921-zer07j8wixwa07ig
Tags: 2.3.1.dfsg-4
[Christophe Prud'homme]
* Bug fix: "gmsh with cgns write support", thanks to Oliver Borm
  (Closes: #529972).
* debian/rules: make sure that Gmsh is built with occ support on all
  platforms thanks to Denis Barbier (#536435).

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
#define _VISIBILITY_WINDOW_H_
8
8
 
9
9
#include <FL/Fl_Window.H>
10
 
#include <FL/Fl_Group.H>
11
10
#include <FL/Fl_Choice.H>
12
11
#include <FL/Fl_Browser.H>
 
12
#include <FL/Fl_Multi_Browser.H>
13
13
#include <FL/Fl_Button.H>
14
14
#include <FL/Fl_Check_Button.H>
15
15
#include <FL/Fl_Input.H>
24
24
  Fl_Window *win;
25
25
  Fl_Choice *browser_type;
26
26
  Fl_Browser *browser;
 
27
  Fl_Multi_Browser *per_window;
27
28
#if defined(HAVE_TREE_BROWSER)
28
29
  Flu_Tree_Browser *tree;
29
30
  Fl_Button *tree_create;
34
35
 public:
35
36
  visibilityWindow(int deltaFontSize=0);
36
37
  void show(bool redrawOnly);
 
38
  void updatePerWindow(bool force=false);
37
39
};
38
40
 
39
41
void visibility_cb(Fl_Widget *w, void *data);