Skip to content
Snippets Groups Projects
Select Git revision
  • 5da1744233535cb95e9b4b15a2e750f8028b9480
  • master default protected
  • hierarchical-basis-refactor
  • hierarchical-basis
  • revert-ef4a3a4f
  • patch_releases_4_14
  • overlaps_tags_and_distributed_export
  • overlaps_tags_and_distributed_export_rebased
  • relaying
  • alphashapes
  • steplayer
  • bl
  • pluginMeshQuality
  • fixBugsAmaury
  • new_export_boris
  • oras_vs_osm
  • reassign_partitions
  • distributed_fwi
  • rename-classes
  • fix/fortran-api-example-t4
  • robust_partitions
  • gmsh_4_14_0
  • gmsh_4_13_1
  • gmsh_4_13_0
  • gmsh_4_12_2
  • gmsh_4_12_1
  • gmsh_4_12_0
  • gmsh_4_11_1
  • gmsh_4_11_0
  • gmsh_4_10_5
  • gmsh_4_10_4
  • gmsh_4_10_3
  • gmsh_4_10_2
  • gmsh_4_10_1
  • gmsh_4_10_0
  • gmsh_4_9_5
  • gmsh_4_9_4
  • gmsh_4_9_3
  • gmsh_4_9_2
  • gmsh_4_9_1
  • gmsh_4_9_0
41 results

findLinks.cpp

Blame
  • statisticsWindow.h 692 B
    // Gmsh - Copyright (C) 1997-2018 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to the public mailing list <gmsh@onelab.info>.
    
    #ifndef _STATISTICS_WINDOW_H_
    #define _STATISTICS_WINDOW_H_
    
    #include <FL/Fl_Window.H>
    #include <FL/Fl_Output.H>
    #include <FL/Fl_Button.H>
    #include <FL/Fl_Group.H>
    
    class statisticsWindow{
     public:
      Fl_Window *win;
      Fl_Output *value[50];
      Fl_Button *butt[8];
      Fl_Group *group[3];
      Fl_Box *memUsage;
      double quality[3][100];
     public:
      statisticsWindow(int deltaFontSize);
      void compute(bool elementQuality);
      void show();
    };
    
    void statistics_cb(Fl_Widget *w, void *data);
    
    #endif