Skip to content
Snippets Groups Projects
Select Git revision
  • 611d0cf0d980607dfc1d1133fef1db0cca42f8cd
  • master default
  • cgnsUnstructured
  • partitioning
  • poppler
  • HighOrderBLCurving
  • gmsh_3_0_4
  • gmsh_3_0_3
  • gmsh_3_0_2
  • gmsh_3_0_1
  • gmsh_3_0_0
  • gmsh_2_16_0
  • gmsh_2_15_0
  • gmsh_2_14_1
  • gmsh_2_14_0
  • gmsh_2_13_2
  • gmsh_2_13_1
  • gmsh_2_12_0
  • gmsh_2_11_0
  • gmsh_2_10_1
  • gmsh_2_10_0
  • gmsh_2_9_3
  • gmsh_2_9_2
  • gmsh_2_9_1
  • gmsh_2_9_0
  • gmsh_2_8_6
26 results

dgResidual.cpp

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    pluginWindow.h 758 B
    // Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
    
    #ifndef PLUGIN_WINDOW_H
    #define PLUGIN_WINDOW_H
    
    #include <FL/Fl_Window.H>
    #include <FL/Fl_Hold_Browser.H>
    #include <FL/Fl_Multi_Browser.H>
    #include <FL/Fl_Check_Button.H>
    
    class GMSH_Plugin;
    
    class pluginWindow {
    public:
      Fl_Window *win;
      Fl_Hold_Browser *browser;
      Fl_Multi_Browser *view_browser;
      Fl_Check_Button *record;
      void _createDialogBox(GMSH_Plugin *p, int x, int y, int width, int height);
    
    public:
      pluginWindow(int deltaFontSize = 0);
      void show(int viewIndex);
      void resetViewBrowser();
    };
    
    void plugin_cb(Fl_Widget *w, void *data);
    
    #endif