164 lines
3.7 KiB
C
164 lines
3.7 KiB
C
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
// File description
|
|
/* ¯¯¯¯¯¯¯¯¯
|
|
|
|
This file is global in the DolphinWX and DebuggerWX projects.
|
|
|
|
////////////////////////*/
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
// Settings
|
|
// ¯¯¯¯¯¯¯¯¯
|
|
// Build with music modification. Define MUSICMOD here.
|
|
#include "../../../Branches/MusicMod/Main/Src/Setup.h"
|
|
//////////////////////////
|
|
|
|
|
|
#ifndef _GLOBALS_H
|
|
#define _GLOBALS_H
|
|
|
|
#include "Common.h"
|
|
|
|
enum
|
|
{
|
|
IDM_LOADSTATE = 200, // File menu
|
|
IDM_SAVESTATE,
|
|
IDM_SAVESLOT1,
|
|
IDM_SAVESLOT2,
|
|
IDM_SAVESLOT3,
|
|
IDM_SAVESLOT4,
|
|
IDM_SAVESLOT5,
|
|
IDM_SAVESLOT6,
|
|
IDM_SAVESLOT7,
|
|
IDM_SAVESLOT8,
|
|
IDM_SAVESLOT9,
|
|
IDM_SAVESLOT10,
|
|
IDM_LOADSLOT1,
|
|
IDM_LOADSLOT2,
|
|
IDM_LOADSLOT3,
|
|
IDM_LOADSLOT4,
|
|
IDM_LOADSLOT5,
|
|
IDM_LOADSLOT6,
|
|
IDM_LOADSLOT7,
|
|
IDM_LOADSLOT8,
|
|
IDM_LOADSLOT9,
|
|
IDM_LOADSLOT10,
|
|
IDM_PLAY,
|
|
IDM_STOP,
|
|
IDM_BROWSE,
|
|
|
|
IDM_MEMCARD, // Misc menu
|
|
IDM_CHEATS,
|
|
IDM_CHANGEDISC,
|
|
IDM_PROPERTIES,
|
|
|
|
IDM_HELPABOUT, // Help menu
|
|
IDM_HELPWEBSITE,
|
|
IDM_HELPGOOGLECODE,
|
|
|
|
#ifdef MUSICMOD // Music modification
|
|
IDM_MUTE,
|
|
IDM_MUSIC_PLAY,
|
|
IDS_VOLUME, IDS_VOLUME_LABEL, IDS_VOLUME_PANEL,
|
|
IDT_LOG,
|
|
#endif
|
|
|
|
IDM_CONFIG_MAIN,
|
|
IDM_CONFIG_GFX_PLUGIN,
|
|
IDM_CONFIG_DSP_PLUGIN,
|
|
IDM_CONFIG_PAD_PLUGIN,
|
|
IDM_CONFIG_WIIMOTE_PLUGIN,
|
|
IDM_TOGGLE_FULLSCREEN,
|
|
|
|
IDM_TOGGLE_DUALCORE, // Other
|
|
IDM_TOGGLE_SKIPIDLE,
|
|
IDM_TOGGLE_TOOLBAR,
|
|
IDM_TOGGLE_STATUSBAR,
|
|
IDM_NOTIFYMAPLOADED,
|
|
IDM_OPENCONTAININGFOLDER,
|
|
IDM_SETDEFAULTGCM,
|
|
IDM_DELETEGCM,
|
|
IDM_COMPRESSGCM,
|
|
IDM_MULTICOMPRESSGCM,
|
|
IDM_MULTIDECOMPRESSGCM,
|
|
IDM_UPDATELOGDISPLAY,
|
|
IDM_UPDATEDISASMDIALOG,
|
|
IDM_UPDATEGUI,
|
|
IDM_UPDATESTATUSBAR,
|
|
IDM_UPDATEBREAKPOINTS,
|
|
IDM_HOST_MESSAGE,
|
|
|
|
IDM_MPANEL, ID_STATUSBAR,
|
|
|
|
ID_TOOLBAR = 500,
|
|
LIST_CTRL = 1000
|
|
};
|
|
|
|
#define wxUSE_XPM_IN_MSW 1
|
|
#define USE_XPM_BITMAPS 1
|
|
|
|
// For compilers that support precompilation, includes <wx/wx.h>.
|
|
//#include <wx/wxprec.h>
|
|
|
|
//#ifndef WX_PRECOMP
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
#include <wx/wx.h>
|
|
//#endif
|
|
|
|
#include <wx/toolbar.h>
|
|
#include <wx/log.h>
|
|
#include <wx/image.h>
|
|
#include <wx/aboutdlg.h>
|
|
#include <wx/filedlg.h>
|
|
#include <wx/spinctrl.h>
|
|
#include <wx/srchctrl.h>
|
|
#include <wx/listctrl.h>
|
|
#include <wx/progdlg.h>
|
|
#include <wx/imagpng.h>
|
|
#include <wx/button.h>
|
|
#include <wx/stattext.h>
|
|
#include <wx/choice.h>
|
|
#include <wx/cmdline.h>
|
|
#include <wx/busyinfo.h>
|
|
|
|
// Define this to use XPMs everywhere (by default, BMPs are used under Win)
|
|
// BMPs use less space, but aren't compiled into the executable on other platforms
|
|
#if USE_XPM_BITMAPS && defined (__WXMSW__) && !wxUSE_XPM_IN_MSW
|
|
#error You need to enable XPM support to use XPM bitmaps with toolbar!
|
|
#endif // USE_XPM_BITMAPS
|
|
|
|
|
|
//
|
|
// custom message macro
|
|
//
|
|
#define EVT_HOST_COMMAND(id, fn) \
|
|
DECLARE_EVENT_TABLE_ENTRY(\
|
|
wxEVT_HOST_COMMAND, id, wxID_ANY, \
|
|
(wxObjectEventFunction)(wxEventFunction) wxStaticCastEvent(wxCommandEventFunction, &fn), \
|
|
(wxObject*) NULL \
|
|
),
|
|
|
|
extern const wxEventType wxEVT_HOST_COMMAND;
|
|
|
|
#endif // HAVE_WX
|
|
#endif // _GLOBALS_H
|