// 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/ #ifndef __MEMCARD_MANAGER_h__ #define __MEMCARD_MANAGER_h__ #include #include #include #include #include #include #include "MemoryCards/GCMemcard.h" #undef MEMCARD_MANAGER_STYLE #define MEMCARD_MANAGER_STYLE wxCAPTION | wxSYSTEM_MENU | wxDIALOG_NO_PARENT | wxCLOSE_BOX | wxRESIZE_BORDER | wxMAXIMIZE_BOX class CMemcardManager : public wxDialog { public: CMemcardManager(wxWindow* parent, wxWindowID id = 1, const wxString& title = wxT("Memory Card Manager WARNING-Make backups before using, will probably mangle stuff!"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = MEMCARD_MANAGER_STYLE); virtual ~CMemcardManager(); private: DECLARE_EVENT_TABLE(); wxBoxSizer* sMain; wxButton* m_CopyRight; wxButton* m_CopyLeft; wxButton* m_FixChecksum; wxButton* m_DeleteRight; wxButton* m_DeleteLeft; wxStaticBoxSizer* sMemcard1; wxStaticBoxSizer* sMemcard2; wxFilePickerCtrl* m_Memcard1Path; wxFilePickerCtrl* m_Memcard2Path; wxListCtrl* m_MemcardList[2]; wxTimer* m_Timer; int nframe; enum { ID_COPYRIGHT = 1000, ID_COPYLEFT, ID_FIXCHECKSUM, ID_DELETERIGHT, ID_DELETELEFT, ID_MEMCARD1PATH, ID_MEMCARD2PATH, ID_MEMCARD1LIST, ID_MEMCARD2LIST, ID_DUMMY_VALUE_ //don't remove this value unless you have other enum values }; enum { COLUMN_BANNER = 0, COLUMN_TITLE, COLUMN_COMMENT, COLUMN_ICON, NUMBER_OF_COLUMN }; GCMemcard *memoryCard[2]; void CreateGUIControls(); void OnClose(wxCloseEvent& event); void CopyDeleteClick(wxCommandEvent& event); void ReloadMemcard(const char *fileName, int card); void OnPathChange(wxFileDirPickerEvent& event); void OnTimer(wxTimerEvent& event); }; #endif