2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:43:35 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-08-27 12:12:34 +00:00
|
|
|
#include <memory>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/app.h>
|
2009-03-20 18:25:36 +00:00
|
|
|
|
|
|
|
class CFrame;
|
2014-02-22 22:36:30 +00:00
|
|
|
class wxLocale;
|
|
|
|
|
2014-07-08 13:58:25 +00:00
|
|
|
extern CFrame* main_frame;
|
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
// Define a new application
|
2009-03-20 18:25:36 +00:00
|
|
|
class DolphinApp : public wxApp
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
2009-03-20 18:25:36 +00:00
|
|
|
public:
|
2016-10-28 01:50:09 +00:00
|
|
|
bool IsActiveThreadsafe() const { return m_is_active; }
|
2016-06-24 08:43:46 +00:00
|
|
|
CFrame* GetCFrame();
|
2011-01-20 03:26:51 +00:00
|
|
|
|
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
bool OnInit() override;
|
|
|
|
int OnExit() override;
|
|
|
|
void OnInitCmdLine(wxCmdLineParser& parser) override;
|
|
|
|
bool OnCmdLineParsed(wxCmdLineParser& parser) override;
|
|
|
|
void OnFatalException() override;
|
|
|
|
bool Initialize(int& c, wxChar** v) override;
|
2015-08-27 10:59:23 +00:00
|
|
|
|
2015-06-21 19:28:49 +00:00
|
|
|
#ifdef __APPLE__
|
2016-06-24 08:43:46 +00:00
|
|
|
void MacOpenFile(const wxString& fileName) override;
|
2015-06-21 19:28:49 +00:00
|
|
|
#endif
|
2010-07-07 22:00:41 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void OnEndSession(wxCloseEvent& event);
|
|
|
|
void InitLanguageSupport();
|
|
|
|
void AfterInit();
|
2016-10-28 01:50:09 +00:00
|
|
|
void OnActivate(wxActivateEvent& ev);
|
2016-06-24 08:43:46 +00:00
|
|
|
void OnIdle(wxIdleEvent&);
|
|
|
|
|
|
|
|
bool m_batch_mode = false;
|
|
|
|
bool m_confirm_stop = false;
|
2016-10-28 01:50:09 +00:00
|
|
|
bool m_is_active = true;
|
2016-06-24 08:43:46 +00:00
|
|
|
bool m_load_file = false;
|
|
|
|
bool m_play_movie = false;
|
|
|
|
bool m_use_debugger = false;
|
|
|
|
bool m_use_logger = false;
|
|
|
|
bool m_select_video_backend = false;
|
|
|
|
bool m_select_audio_emulation = false;
|
|
|
|
wxString m_confirm_setting;
|
|
|
|
wxString m_video_backend_name;
|
|
|
|
wxString m_audio_emulation_name;
|
|
|
|
wxString m_user_path;
|
|
|
|
wxString m_file_to_load;
|
|
|
|
wxString m_movie_file;
|
|
|
|
std::unique_ptr<wxLocale> m_locale;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2009-03-20 18:25:36 +00:00
|
|
|
DECLARE_APP(DolphinApp);
|