Changeset 430bd7f7e9 in tspsg for src/globals.h


Ignore:
Timestamp:
Jul 31, 2009, 8:23:07 PM (15 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
ec54b4490b
Parents:
b5c9bcb585
Message:

+ Finished solving algorithm (needs thorough testing).
+ Solution can be saved to HTML or OpenDocument? format.
+ Added VERSIONINFO resource for windows builds.

  • Updated translations to have unified terminology everywhere.

NB: This will be the first public alpha build.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/globals.h

    rb5c9bcb585 r430bd7f7e9  
    11/*
    2  *  TSPSG - TSP Solver and Generator
     2 *  TSPSG: TSP Solver and Generator
    33 *  Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name>
    44 *
     
    2929#include <QtGui>
    3030
     31// Version info
     32#include "version.h"
    3133// OS detection
    3234#include "os.h"
     
    3840#define DEF_OFFSET 100
    3941#define DEF_FONT_FAMILY "Courier New"
    40 #define DEF_FONT_SIZE 12
     42#define DEF_FONT_SIZE 10
    4143#define DEF_FONT_COLOR Qt::black
    4244
     
    5456#define ZKT_VERSION quint8(1)
    5557
    56 // Decided, that static array with 100 of cities maximum hard limit
    57 // will be enough for most cases, but the code will be simplier than
    58 // when using dynamic lists. If you need more, just change this value
    59 // and recompile the program ;-)
    60 #define MAX_CITIES 100
    6158// This value means infinity :-)
    6259#ifndef INFINITY
     
    6461#endif
    6562// This is string, which represents infinite value in table
    66 #define INFSTR "-----"
     63#define INFSTR "---"
    6764
    6865#endif // GLOBALS_H
Note: See TracChangeset for help on using the changeset viewer.