1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 Eran Ifrah
// file name : theme_handler.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "cl_aui_tb_are.h"
#include "drawingutils.h"
#include "editor_config.h"
#include "event_notifier.h"
#include "frame.h"
#include "globals.h"
#include "theme_handler.h"
#include "workspace_pane.h"
#include <algorithm>
#include <wx/aui/framemanager.h>
#include <wx/image.h>
#include <wx/listbox.h>
#include <wx/listctrl.h>
#include "clSystemSettings.h"
#include <queue>
#ifdef __WXMAC__
#include <wx/srchctrl.h>
#endif
#define CHECK_POINTER(p) \
if(!p) return;
ThemeHandler::ThemeHandler()
{
EventNotifier::Get()->Bind(wxEVT_CL_THEME_CHANGED, &ThemeHandler::OnEditorThemeChanged, this);
EventNotifier::Get()->Bind(wxEVT_INIT_DONE, &ThemeHandler::OnInitDone, this);
EventNotifier::Get()->Bind(wxEVT_CMD_COLOURS_FONTS_UPDATED, &ThemeHandler::OnColoursChanged, this);
}
ThemeHandler::~ThemeHandler()
{
EventNotifier::Get()->Unbind(wxEVT_CL_THEME_CHANGED, &ThemeHandler::OnEditorThemeChanged, this);
EventNotifier::Get()->Unbind(wxEVT_INIT_DONE, &ThemeHandler::OnInitDone, this);
EventNotifier::Get()->Unbind(wxEVT_CMD_COLOURS_FONTS_UPDATED, &ThemeHandler::OnColoursChanged, this);
}
void ThemeHandler::OnEditorThemeChanged(wxCommandEvent& e) { e.Skip(); }
void ThemeHandler::OnInitDone(wxCommandEvent& e)
{
e.Skip();
m_helper.reset(new ThemeHandlerHelper(clMainFrame::Get()));
m_helper->UpdateColours(clMainFrame::Get());
// Fire "wxEVT_EDITOR_SETTINGS_CHANGED" to ensure that the notebook appearance is in sync with the settings
PostCmdEvent(wxEVT_EDITOR_SETTINGS_CHANGED);
}
void ThemeHandler::OnColoursChanged(clCommandEvent& e)
{
e.Skip();
// We do the actual update in the next iteration to ensure that the all new colours are updated
// in the clSystemSettings class
CallAfter(&ThemeHandler::UpdateColours);
}
#define IS_TYPEOF(Type, Win) (dynamic_cast<Type*>(Win))
void ThemeHandler::UpdateColours()
{
// Collect all toolbars
//std::queue<wxWindow*> q;
//q.push(clMainFrame::Get());
//wxColour bgColour = clSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
//wxColour fgColour = clSystemSettings::GetColour(wxSYS_COLOUR_BTNTEXT);
MSWSetWindowDarkTheme(clMainFrame::Get());
//while(!q.empty()) {
// wxWindow* w = q.front();
// q.pop();
// if(IS_TYPEOF(wxStaticText, w)) {
// wxStaticText* st = IS_TYPEOF(wxStaticText, w);
// st->SetBackgroundStyle(wxBG_STYLE_PAINT);
// st->SetBackgroundColour(bgColour);
// st->SetForegroundColour(fgColour);
// st->Refresh();
// }
// wxWindowList::compatibility_iterator iter = w->GetChildren().GetFirst();
// while(iter) {
// q.push(iter->GetData());
// iter = iter->GetNext();
// }
//}
}
void ThemeHandler::UpdateNotebookColours(wxWindow* parent) { m_helper->UpdateNotebookColours(parent); }
|