Skip to content
Snippets Groups Projects
Select Git revision
  • 1465069e128bec19f54c6e7ae4a37ca986154170
  • 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

AdaptiveViews.h

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    Options.h 39.17 KiB
    // Gmsh - Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to <gmsh@geuz.org>.
    
    #ifndef _OPTIONS_H_
    #define _OPTIONS_H_
    
    #include <string>
    #include "ColorTable.h"
    
    #define GMSH_SET       (1<<0)
    #define GMSH_GET       (1<<1)
    #define GMSH_GUI       (1<<2)
    
    #define GMSH_SESSIONRC (1<<0)
    #define GMSH_OPTIONSRC (1<<1)
    #define GMSH_FULLRC    (1<<2)
    
    // action is a combination of GMSH_SET, GMSH_GET, GMSH_GUI
    
    #define OPT_ARGS_STR   int num, int action, std::string val
    #define OPT_ARGS_NUM   int num, int action, double val
    #define OPT_ARGS_COL   int num, int action, unsigned int val
    
    // STRINGS
    
    std::string opt_general_axes_label0(OPT_ARGS_STR);
    std::string opt_general_axes_label1(OPT_ARGS_STR);
    std::string opt_general_axes_label2(OPT_ARGS_STR);
    std::string opt_general_axes_format0(OPT_ARGS_STR);
    std::string opt_general_axes_format1(OPT_ARGS_STR);
    std::string opt_general_axes_format2(OPT_ARGS_STR);
    std::string opt_general_background_image_filename(OPT_ARGS_STR);
    std::string opt_general_display(OPT_ARGS_STR);
    std::string opt_general_filename(OPT_ARGS_STR);
    std::string opt_general_default_filename(OPT_ARGS_STR);
    std::string opt_general_tmp_filename(OPT_ARGS_STR);
    std::string opt_general_error_filename(OPT_ARGS_STR);
    std::string opt_general_session_filename(OPT_ARGS_STR);
    std::string opt_general_options_filename(OPT_ARGS_STR);
    std::string opt_general_recent_file1(OPT_ARGS_STR);
    std::string opt_general_recent_file2(OPT_ARGS_STR);
    std::string opt_general_recent_file3(OPT_ARGS_STR);
    std::string opt_general_recent_file4(OPT_ARGS_STR);
    std::string opt_general_recent_file5(OPT_ARGS_STR);
    std::string opt_general_editor(OPT_ARGS_STR);
    std::string opt_general_web_browser(OPT_ARGS_STR);
    std::string opt_general_watch_file_pattern(OPT_ARGS_STR);
    std::string opt_general_gui_theme(OPT_ARGS_STR);
    std::string opt_general_graphics_font(OPT_ARGS_STR);
    std::string opt_general_graphics_font_title(OPT_ARGS_STR);
    std::string opt_solver_socket_name(OPT_ARGS_STR);
    std::string opt_solver_name(OPT_ARGS_STR);
    std::string opt_solver_name0(OPT_ARGS_STR);
    std::string opt_solver_name1(OPT_ARGS_STR);
    std::string opt_solver_name2(OPT_ARGS_STR);
    std::string opt_solver_name3(OPT_ARGS_STR);
    std::string opt_solver_name4(OPT_ARGS_STR);
    std::string opt_solver_executable(OPT_ARGS_STR);
    std::string opt_solver_executable0(OPT_ARGS_STR);
    std::string opt_solver_executable1(OPT_ARGS_STR);
    std::string opt_solver_executable2(OPT_ARGS_STR);
    std::string opt_solver_executable3(OPT_ARGS_STR);
    std::string opt_solver_executable4(OPT_ARGS_STR);
    std::string opt_solver_extra_arguments(OPT_ARGS_STR);
    std::string opt_solver_extra_arguments0(OPT_ARGS_STR);
    std::string opt_solver_extra_arguments1(OPT_ARGS_STR);
    std::string opt_solver_extra_arguments2(OPT_ARGS_STR);
    std::string opt_solver_extra_arguments3(OPT_ARGS_STR);