2009-03-18 17:17:58 +00:00
|
|
|
// 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 LOGWINDOW_H_
|
|
|
|
#define LOGWINDOW_H_
|
2009-03-20 18:25:36 +00:00
|
|
|
#include "Main.h" // for wxGetApp
|
2009-03-18 17:17:58 +00:00
|
|
|
#include "LogManager.h"
|
|
|
|
#include "IniFile.h"
|
2009-03-20 22:51:59 +00:00
|
|
|
#include "Thread.h"
|
2009-03-18 17:17:58 +00:00
|
|
|
#include <queue>
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
IDM_LOG,
|
|
|
|
IDM_CLEARLOG,
|
|
|
|
IDM_LOGCHECKS,
|
|
|
|
IDM_OPTIONS,
|
|
|
|
IDM_TOGGLEALL,
|
|
|
|
IDM_WRITEFILE,
|
|
|
|
IDM_WRITECONSOLE,
|
2009-03-20 21:23:36 +00:00
|
|
|
IDM_WRITEWINDOW,
|
2009-03-18 17:17:58 +00:00
|
|
|
IDTM_UPDATELOG,
|
|
|
|
IDM_VERBOSITY,
|
2009-03-19 02:29:50 +00:00
|
|
|
IDM_SUBMITCMD
|
2009-03-18 17:17:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class wxTextCtrl;
|
|
|
|
class wxCheckListBox;
|
|
|
|
class wxString;
|
|
|
|
|
2009-03-20 19:12:04 +00:00
|
|
|
// Uses multiple inheritance - only sane because LogListener is a pure virtual interface.
|
|
|
|
class CLogWindow : public wxDialog, LogListener
|
2009-03-18 17:17:58 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CLogWindow(wxWindow* parent);
|
|
|
|
~CLogWindow();
|
|
|
|
void NotifyUpdate();
|
|
|
|
|
|
|
|
void SaveSettings();
|
|
|
|
void LoadSettings();
|
|
|
|
void Log(LogTypes::LOG_LEVELS, const char *text);
|
|
|
|
|
|
|
|
private:
|
2009-03-20 21:23:36 +00:00
|
|
|
wxTextCtrl *m_log, *m_cmdline;
|
|
|
|
bool m_writeFile, m_writeConsole, m_writeWindow;
|
|
|
|
wxCheckBox *m_writeFileCB, *m_writeConsoleCB, *m_writeWindowCB;
|
2009-03-18 17:17:58 +00:00
|
|
|
wxTimer *m_logTimer;
|
|
|
|
wxCheckListBox* m_checks;
|
|
|
|
wxRadioBox *m_verbosity;
|
|
|
|
FileLogListener *m_fileLog;
|
|
|
|
ConsoleListener *m_console;
|
|
|
|
LogManager *m_logManager;
|
2009-03-19 02:43:48 +00:00
|
|
|
std::queue<std::pair<u8, wxString> > msgQueue;
|
2009-03-18 17:17:58 +00:00
|
|
|
|
2009-03-20 22:51:59 +00:00
|
|
|
Common::CriticalSection m_logSection;
|
|
|
|
|
2009-03-18 17:17:58 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
void CreateGUIControls();
|
2009-03-20 18:46:50 +00:00
|
|
|
void OnClose(wxCloseEvent& event);
|
2009-03-18 17:17:58 +00:00
|
|
|
void OnSubmit(wxCommandEvent& event);
|
|
|
|
void OnOptionsCheck(wxCommandEvent& event);
|
|
|
|
void OnLogCheck(wxCommandEvent& event);
|
|
|
|
void OnClear(wxCommandEvent& event);
|
|
|
|
void OnToggleAll(wxCommandEvent& event);
|
|
|
|
void OnLogTimer(wxTimerEvent& WXUNUSED(event));
|
|
|
|
|
2009-03-21 01:40:30 +00:00
|
|
|
void ToggleLog(int _logType, bool enable);
|
2009-03-18 17:17:58 +00:00
|
|
|
void UpdateChecks();
|
|
|
|
void UpdateLog();
|
|
|
|
|
2009-03-20 19:12:04 +00:00
|
|
|
// LogListener
|
|
|
|
const char *getName() const { return "LogWindow"; }
|
2009-03-18 17:17:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /*LOGWINDOW_H_*/
|