dolphin/Source/Core/DolphinWX/LogWindow.h

80 lines
1.9 KiB
C
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
2014-02-22 23:36:30 +01:00
#include <mutex>
#include <queue>
2014-02-22 23:36:30 +01:00
#include <utility>
#include <vector>
#include <wx/defs.h>
#include <wx/event.h>
#include <wx/font.h>
#include <wx/gdicmn.h>
#include <wx/panel.h>
#include <wx/string.h>
#include <wx/translation.h>
#include <wx/windowid.h>
#include "Common/CommonTypes.h"
#include "Common/Logging/LogManager.h"
2014-02-22 23:36:30 +01:00
class CFrame;
class wxBoxSizer;
class wxCheckBox;
class wxChoice;
class wxTextCtrl;
class wxTimer;
class wxTimerEvent;
// Uses multiple inheritance - only sane because LogListener is a pure virtual interface.
class CLogWindow : public wxPanel, LogListener
{
public:
CLogWindow(CFrame* parent,
wxWindowID id = wxID_ANY,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL,
const wxString& name = _("Log")
);
~CLogWindow();
void SaveSettings();
2014-03-08 01:54:44 +01:00
void Log(LogTypes::LOG_LEVELS, const char *text) override;
int x, y, winpos;
private:
CFrame* Parent;
wxFont DefaultFont, MonoSpaceFont;
std::vector<wxFont> LogFont;
wxTimer* m_LogTimer;
bool m_ignoreLogTimer;
LogManager* m_LogManager;
std::queue<std::pair<u8, wxString> > msgQueue;
2014-02-23 08:38:46 +01:00
bool m_writeFile, m_writeWindow, m_writeDebugger, m_LogAccess;
// Controls
wxBoxSizer* sBottom;
wxTextCtrl* m_Log;
wxTextCtrl* m_cmdline;
wxChoice* m_FontChoice;
wxCheckBox* m_WrapLine;
wxButton* m_clear_log_btn;
std::mutex m_LogSection;
wxTextCtrl* CreateTextCtrl(wxPanel* parent, wxWindowID id, long Style);
void CreateGUIControls();
void PopulateBottom();
void UnPopulateBottom();
void OnClose(wxCloseEvent& event);
void OnFontChange(wxCommandEvent& event);
void OnWrapLineCheck(wxCommandEvent& event);
void OnClear(wxCommandEvent& event);
void OnLogTimer(wxTimerEvent& WXUNUSED(event));
void UpdateLog();
};