Changeset 162 in tspsg-svn for trunk/src/defaults.h


Ignore:
Timestamp:
Apr 14, 2011, 9:30:23 PM (13 years ago)
Author:
laleppa
Message:
  • NEW: Solution graph size can now be controlled using Output/GraphWidth? setting in tspsg.ini (see ticket:8). Value is in centimeters.
  • NEW: Support for embedded base64 encoded images when saving solution as HTML (closed ticket:4).
  • Renamed Output/ShowGraph? setting to Output/GenerateGraph?.
  • Made some other small tweaks and fixes.
  • FIX: Solution graph is still exported to HTML when graph generation is disabled (fixed bug:9).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/defaults.h

    r161 r162  
    5353 * \brief Default for "Use translucency effects"
    5454 */
    55 #ifdef Q_WS_WIN
     55#ifdef Q_WS_WIN32
    5656#   define DEF_USE_TRANSLUCENCY true
    5757#else
     
    7878//////// OUTPUT
    7979
    80 //! Default for "Show solution graph"
    81 #define DEF_SHOW_GRAPH true
     80//! Default for "Generate solution graph"
     81#define DEF_GENERATE_GRAPH true
    8282//! Default for "Save solution graph as"
    8383#define DEF_GRAPH_IMAGE_FORMAT "png"
    8484//! Default for "Draw solution graph in higher quality"
    8585#define DEF_HQ_GRAPH false
     86//! Default for "Embed solution graph into HTML"
     87#define DEF_EMBED_GRAPH_INTO_HTML false
     88//! Default solution graph size in centimeters (HQ size is this size * HQ_FACTOR)
     89#define DEF_GRAPH_WIDTH 4.5
    8690//! Default for "Show solution steps' matrices for every solution step"
    8791#define DEF_SHOW_MATRIX true
Note: See TracChangeset for help on using the changeset viewer.