2007-07-23 15:01:38 +00:00
|
|
|
// Windows only defines
|
|
|
|
#ifdef WIN32
|
|
|
|
|
|
|
|
#define __WXMSW__
|
|
|
|
#define __WIN32__
|
|
|
|
|
|
|
|
// Windows 2000, XP, Server 2003
|
|
|
|
#define WINVER 0x0500
|
|
|
|
|
|
|
|
// Se uso la DLL del runtime C, allora "FORSE" uso anche la DLL di wxWidgets
|
|
|
|
#ifdef _DLL
|
|
|
|
#define WXUSINGDLL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Common defines
|
|
|
|
#ifndef NDEBUG
|
|
|
|
#define __WXDEBUG__
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <wx/wxprec.h>
|
|
|
|
|
2007-09-20 09:53:21 +00:00
|
|
|
#include <wx/dir.h>
|
|
|
|
#include <wx/fileconf.h>
|
|
|
|
#include <wx/filepicker.h>
|
|
|
|
#include <wx/gbsizer.h>
|
|
|
|
#include <wx/html/htmlwin.h>
|
|
|
|
#include <wx/mimetype.h>
|
|
|
|
#include <wx/progdlg.h>
|
|
|
|
#include <wx/radiobox.h>
|
|
|
|
#include <wx/txtstrm.h>
|
|
|
|
#include <wx/wfstream.h>
|
|
|
|
#include <wx/wizard.h>
|
|
|
|
#include <wx/zipstrm.h>
|
|
|
|
|
2009-01-19 10:27:20 +00:00
|
|
|
//roba per reperire i dati dal file oem.ini di configurazione del CD
|
|
|
|
wxString Product();
|
|
|
|
wxString Reseller();
|
|
|
|
wxString Appname();
|
|
|
|
wxString Licence();
|
|
|
|
wxString Logo();
|
|
|
|
wxString Icon();
|
2009-01-19 17:25:12 +00:00
|
|
|
wxString Theme();
|
2009-01-19 10:27:20 +00:00
|
|
|
|
|
|
|
#define PRODUCT Product()
|
|
|
|
#define RESELLER Reseller()
|
|
|
|
#define APPNAME Appname()
|
2008-10-23 13:52:38 +00:00
|
|
|
#define APPVERSION wxT("10.0")
|