view include/main.h @ 16:e60175dc675e v2.1

Added tag 13, v2.1 for changeset df439f9831d2
author pyon@macmini
date Sun, 23 Oct 2011 21:33:02 +0900
parents 9b0840b0be7e
children f3463815c2c9
line wrap: on
line source

// Filename   : main.h
// Last Change: 22-Oct-2011.
//
#include "wx/wx.h"
#include "wx/config.h"
#include "wx/fileconf.h"

#define MYAPPNAME wxT("AMover2")

#define VER 2
#define REV 1
#define BLD 20111027

// private classes
// Define a new application type, each program should derive a class from wxApp
class MyApp : public wxApp
{
    DECLARE_CLASS( MyApp )
public:
    MyApp();
    ~MyApp();

    virtual bool OnInit();
    virtual int  OnExit();
    void ConfInit();
    void InitLog();
    void WriteLog( wxString msg );

    wxFileConfig *config;
    wxString      conf_file;
    wxRect        rect;

    wxString      workdir;
    wxString      lmin;
    wxString      lmax;
    wxString      zmin;
    wxString      zmax;
};

DECLARE_APP(MyApp)