2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 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.
|
2009-08-31 23:09:50 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-08-03 03:20:44 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <mutex>
|
2009-08-31 23:09:50 +00:00
|
|
|
#include <queue>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
#include <wx/font.h>
|
|
|
|
#include <wx/panel.h>
|
2015-03-01 01:25:50 +00:00
|
|
|
#include <wx/timer.h>
|
2009-08-31 23:09:50 +00:00
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-06-05 23:29:54 +00:00
|
|
|
#include "Common/Logging/LogManager.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
|
|
|
|
class CFrame;
|
|
|
|
class wxBoxSizer;
|
|
|
|
class wxCheckBox;
|
|
|
|
class wxChoice;
|
|
|
|
class wxTextCtrl;
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2009-08-31 23:09:50 +00:00
|
|
|
// Uses multiple inheritance - only sane because LogListener is a pure virtual interface.
|
2009-09-07 21:37:27 +00:00
|
|
|
class CLogWindow : public wxPanel, LogListener
|
2009-08-31 23:09:50 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
CLogWindow(CFrame* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = wxTAB_TRAVERSAL,
|
|
|
|
const wxString& name = _("Log"));
|
2016-10-03 07:29:50 +00:00
|
|
|
~CLogWindow() override;
|
2009-08-31 23:09:50 +00:00
|
|
|
|
2016-10-03 07:29:50 +00:00
|
|
|
// Listeners must be removed explicitly before the window is closed to prevent crashes on OS X
|
|
|
|
// when closing via the Dock. (The Core is probably being shutdown before the window)
|
|
|
|
void RemoveAllListeners();
|
2016-06-24 08:43:46 +00:00
|
|
|
void SaveSettings();
|
|
|
|
void Log(LogTypes::LOG_LEVELS, const char* text) override;
|
2009-08-31 23:09:50 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
int x, y, winpos;
|
2010-07-27 22:12:19 +00:00
|
|
|
|
2009-08-31 23:09:50 +00:00
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
CFrame* Parent;
|
|
|
|
wxFont DefaultFont, MonoSpaceFont;
|
|
|
|
std::vector<wxFont> LogFont;
|
|
|
|
wxTimer m_LogTimer;
|
|
|
|
LogManager* m_LogManager;
|
|
|
|
std::queue<std::pair<u8, wxString>> msgQueue;
|
2017-06-13 12:35:42 +00:00
|
|
|
bool m_LogAccess;
|
2009-09-03 22:52:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Controls
|
|
|
|
wxBoxSizer* sBottom;
|
|
|
|
wxTextCtrl* m_Log;
|
|
|
|
wxTextCtrl* m_cmdline;
|
|
|
|
wxChoice* m_FontChoice;
|
|
|
|
wxCheckBox* m_WrapLine;
|
|
|
|
wxButton* m_clear_log_btn;
|
2009-08-31 23:09:50 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::mutex m_LogSection;
|
2009-08-31 23:09:50 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
wxTextCtrl* CreateTextCtrl(wxPanel* parent, wxWindowID id, long Style);
|
|
|
|
void CreateGUIControls();
|
|
|
|
void PopulateBottom();
|
|
|
|
void UnPopulateBottom();
|
|
|
|
void OnFontChange(wxCommandEvent& event);
|
|
|
|
void OnWrapLineCheck(wxCommandEvent& event);
|
|
|
|
void OnClear(wxCommandEvent& event);
|
|
|
|
void OnLogTimer(wxTimerEvent& WXUNUSED(event));
|
|
|
|
void UpdateLog();
|
2009-08-31 23:09:50 +00:00
|
|
|
};
|