mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-27 06:08:37 -05:00
Apply theme to bookmark panel, implement RGBA4f->wxColour operator
This commit is contained in:
parent
003758b799
commit
560caccbc7
@ -594,6 +594,7 @@ AppFrame::AppFrame() :
|
|||||||
waterfallCanvas->setLinesPerSecond(wflps);
|
waterfallCanvas->setLinesPerSecond(wflps);
|
||||||
|
|
||||||
ThemeMgr::mgr.setTheme(wxGetApp().getConfig()->getTheme());
|
ThemeMgr::mgr.setTheme(wxGetApp().getConfig()->getTheme());
|
||||||
|
bookmarkView->updateTheme();
|
||||||
|
|
||||||
int mpc =wxGetApp().getConfig()->getModemPropsCollapsed();
|
int mpc =wxGetApp().getConfig()->getModemPropsCollapsed();
|
||||||
|
|
||||||
@ -1035,6 +1036,7 @@ void AppFrame::OnMenu(wxCommandEvent& event) {
|
|||||||
spectrumAvgMeter->Refresh();
|
spectrumAvgMeter->Refresh();
|
||||||
gainCanvas->setThemeColors();
|
gainCanvas->setThemeColors();
|
||||||
modemProps->updateTheme();
|
modemProps->updateTheme();
|
||||||
|
bookmarkView->updateTheme();
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (event.GetId()) {
|
switch (event.GetId()) {
|
||||||
|
@ -30,26 +30,10 @@ void ModemProperties::OnShow(wxShowEvent & /* event */) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void ModemProperties::updateTheme() {
|
void ModemProperties::updateTheme() {
|
||||||
wxColour bgColor(
|
wxColour bgColor(ThemeMgr::mgr.currentTheme->generalBackground);
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->generalBackground.r * 255.0),
|
wxColour textColor(ThemeMgr::mgr.currentTheme->text);
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->generalBackground.g * 255.0),
|
wxColour btn(ThemeMgr::mgr.currentTheme->button);
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->generalBackground.b * 255.0));
|
wxColour btnHl(ThemeMgr::mgr.currentTheme->buttonHighlight);
|
||||||
|
|
||||||
wxColour textColor(
|
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->text.r * 255.0),
|
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->text.g * 255.0),
|
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->text.b * 255.0));
|
|
||||||
|
|
||||||
wxColour btn(
|
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->button.r * 255.0),
|
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->button.g * 255.0),
|
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->button.b * 255.0));
|
|
||||||
|
|
||||||
wxColour btnHl(
|
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->buttonHighlight.r * 255.0),
|
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->buttonHighlight.g * 255.0),
|
|
||||||
(unsigned char) (ThemeMgr::mgr.currentTheme->buttonHighlight.b * 255.0));
|
|
||||||
|
|
||||||
|
|
||||||
m_propertyGrid->SetEmptySpaceColour(bgColor);
|
m_propertyGrid->SetEmptySpaceColour(bgColor);
|
||||||
m_propertyGrid->SetCellBackgroundColour(bgColor);
|
m_propertyGrid->SetCellBackgroundColour(bgColor);
|
||||||
|
@ -337,7 +337,9 @@ void DemodulatorInstance::setDemodulatorType(std::string demod_type_in) {
|
|||||||
outp->setTitle(getDemodulatorType() + ": " + frequencyToStr(getFrequency()));
|
outp->setTitle(getDemodulatorType() + ": " + frequencyToStr(getFrequency()));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wxGetApp().getBookmarkMgr().updateActiveList();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string DemodulatorInstance::getDemodulatorType() {
|
std::string DemodulatorInstance::getDemodulatorType() {
|
||||||
|
@ -62,13 +62,13 @@ BookmarkPanel::BookmarkPanel( wxWindow* parent, wxWindowID id, const wxPoint& po
|
|||||||
bSizer1->Add( m_propPanel, 1, wxBOTTOM|wxEXPAND|wxTOP, 5 );
|
bSizer1->Add( m_propPanel, 1, wxBOTTOM|wxEXPAND|wxTOP, 5 );
|
||||||
|
|
||||||
m_bookmarkButton = new wxButton( this, wxID_ANY, wxT("Bookmark"), wxDefaultPosition, wxDefaultSize, 0 );
|
m_bookmarkButton = new wxButton( this, wxID_ANY, wxT("Bookmark"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
bSizer1->Add( m_bookmarkButton, 0, wxALL|wxEXPAND, 5 );
|
bSizer1->Add( m_bookmarkButton, 0, wxEXPAND, 5 );
|
||||||
|
|
||||||
m_activateButton = new wxButton( this, wxID_ANY, wxT("Activate"), wxDefaultPosition, wxDefaultSize, 0 );
|
m_activateButton = new wxButton( this, wxID_ANY, wxT("Activate"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
bSizer1->Add( m_activateButton, 0, wxALL|wxEXPAND, 5 );
|
bSizer1->Add( m_activateButton, 0, wxEXPAND, 5 );
|
||||||
|
|
||||||
m_removeButton = new wxButton( this, wxID_ANY, wxT("Remove"), wxDefaultPosition, wxDefaultSize, 0 );
|
m_removeButton = new wxButton( this, wxID_ANY, wxT("Remove"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
bSizer1->Add( m_removeButton, 0, wxALL|wxEXPAND, 5 );
|
bSizer1->Add( m_removeButton, 0, wxEXPAND, 5 );
|
||||||
|
|
||||||
|
|
||||||
this->SetSizer( bSizer1 );
|
this->SetSizer( bSizer1 );
|
||||||
|
@ -952,7 +952,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="1">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxALL|wxEXPAND</property>
|
<property name="flag">wxEXPAND</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxButton" expanded="1">
|
<object class="wxButton" expanded="1">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
@ -1040,7 +1040,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="1">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxALL|wxEXPAND</property>
|
<property name="flag">wxEXPAND</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxButton" expanded="1">
|
<object class="wxButton" expanded="1">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
@ -1128,7 +1128,7 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="sizeritem" expanded="1">
|
<object class="sizeritem" expanded="1">
|
||||||
<property name="border">5</property>
|
<property name="border">5</property>
|
||||||
<property name="flag">wxALL|wxEXPAND</property>
|
<property name="flag">wxEXPAND</property>
|
||||||
<property name="proportion">0</property>
|
<property name="proportion">0</property>
|
||||||
<object class="wxButton" expanded="1">
|
<object class="wxButton" expanded="1">
|
||||||
<property name="BottomDockable">1</property>
|
<property name="BottomDockable">1</property>
|
||||||
|
@ -20,6 +20,32 @@ void BookmarkView::onUpdateTimer( wxTimerEvent& event ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void BookmarkView::updateTheme() {
|
||||||
|
wxColour bgColor(ThemeMgr::mgr.currentTheme->generalBackground);
|
||||||
|
wxColour textColor(ThemeMgr::mgr.currentTheme->text);
|
||||||
|
wxColour btn(ThemeMgr::mgr.currentTheme->button);
|
||||||
|
wxColour btnHl(ThemeMgr::mgr.currentTheme->buttonHighlight);
|
||||||
|
|
||||||
|
m_treeView->SetBackgroundColour(bgColor);
|
||||||
|
m_treeView->SetForegroundColour(textColor);
|
||||||
|
|
||||||
|
m_propPanel->SetBackgroundColour(bgColor);
|
||||||
|
m_propPanel->SetForegroundColour(textColor);
|
||||||
|
|
||||||
|
m_labelLabel->SetForegroundColour(textColor);
|
||||||
|
m_frequencyVal->SetForegroundColour(textColor);
|
||||||
|
m_frequencyLabel->SetForegroundColour(textColor);
|
||||||
|
m_bandwidthVal->SetForegroundColour(textColor);
|
||||||
|
m_bandwidthLabel->SetForegroundColour(textColor);
|
||||||
|
m_modulationVal->SetForegroundColour(textColor);
|
||||||
|
m_modulationLabel->SetForegroundColour(textColor);
|
||||||
|
|
||||||
|
m_bookmarkButton->SetBackgroundColour(bgColor);
|
||||||
|
m_removeButton->SetBackgroundColour(bgColor);
|
||||||
|
m_activateButton->SetBackgroundColour(bgColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void BookmarkView::updateActiveList() {
|
void BookmarkView::updateActiveList() {
|
||||||
doUpdateActive = true;
|
doUpdateActive = true;
|
||||||
}
|
}
|
||||||
@ -53,7 +79,6 @@ void BookmarkView::doUpdateActiveList() {
|
|||||||
|
|
||||||
m_treeView->Enable();
|
m_treeView->Enable();
|
||||||
m_treeView->ExpandAll();
|
m_treeView->ExpandAll();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void BookmarkView::onTreeBeginLabelEdit( wxTreeEvent& event ) {
|
void BookmarkView::onTreeBeginLabelEdit( wxTreeEvent& event ) {
|
||||||
|
@ -10,6 +10,7 @@ public:
|
|||||||
|
|
||||||
void updateActiveList();
|
void updateActiveList();
|
||||||
void activeSelection(DemodulatorInstance *dsel);
|
void activeSelection(DemodulatorInstance *dsel);
|
||||||
|
void updateTheme();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
#include <map>
|
#include <map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <wx/colour.h>
|
||||||
|
|
||||||
#define COLOR_THEME_DEFAULT 0
|
#define COLOR_THEME_DEFAULT 0
|
||||||
#define COLOR_THEME_BW 1
|
#define COLOR_THEME_BW 1
|
||||||
@ -38,6 +39,14 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
RGBA4f operator*(float v) { return RGBA4f(r*v, g*v, b*v); }
|
RGBA4f operator*(float v) { return RGBA4f(r*v, g*v, b*v); }
|
||||||
|
|
||||||
|
operator wxColour() {
|
||||||
|
return wxColour(
|
||||||
|
(unsigned char) (r * 255.0),
|
||||||
|
(unsigned char) (g * 255.0),
|
||||||
|
(unsigned char) (b * 255.0));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user