mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
change color
This commit is contained in:
parent
0148efa287
commit
50793bb1fc
8 changed files with 23 additions and 23 deletions
|
@ -815,9 +815,9 @@ AmsHumidityTipPopup::AmsHumidityTipPopup(wxWindow* parent)
|
||||||
main_sizer->Add(m_staticText_note, 0, wxALL | wxLEFT | wxRIGHT, 34);
|
main_sizer->Add(m_staticText_note, 0, wxALL | wxLEFT | wxRIGHT, 34);
|
||||||
|
|
||||||
m_button_confirm = new Button(this, _L("OK"));
|
m_button_confirm = new Button(this, _L("OK"));
|
||||||
StateColor btn_bg_green(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal));
|
StateColor btn_bg_green(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal));
|
||||||
m_button_confirm->SetBackgroundColor(btn_bg_green);
|
m_button_confirm->SetBackgroundColor(btn_bg_green);
|
||||||
m_button_confirm->SetBorderColor(wxColour(0, 174, 66));
|
m_button_confirm->SetBorderColor(wxColour(0, 150, 136));
|
||||||
m_button_confirm->SetTextColor(wxColour(0xFFFFFE));
|
m_button_confirm->SetTextColor(wxColour(0xFFFFFE));
|
||||||
m_button_confirm->SetSize(wxSize(FromDIP(72), FromDIP(24)));
|
m_button_confirm->SetSize(wxSize(FromDIP(72), FromDIP(24)));
|
||||||
m_button_confirm->SetMinSize(wxSize(FromDIP(72), FromDIP(24)));
|
m_button_confirm->SetMinSize(wxSize(FromDIP(72), FromDIP(24)));
|
||||||
|
|
|
@ -85,7 +85,7 @@ BonjourDialog::BonjourDialog(wxWindow *parent, Slic3r::PrinterTechnology tech)
|
||||||
auto button_sizer = new wxBoxSizer(wxHORIZONTAL);
|
auto button_sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||||
|
|
||||||
StateColor btn_bg_green(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
StateColor btn_bg_green(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal));
|
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal));
|
||||||
|
|
||||||
StateColor btn_bg_white(std::pair<wxColour, int>(wxColour(206, 206, 206), StateColor::Pressed), std::pair<wxColour, int>(wxColour(238, 238, 238), StateColor::Hovered),
|
StateColor btn_bg_white(std::pair<wxColour, int>(wxColour(206, 206, 206), StateColor::Pressed), std::pair<wxColour, int>(wxColour(238, 238, 238), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(*wxWHITE, StateColor::Normal));
|
std::pair<wxColour, int>(*wxWHITE, StateColor::Normal));
|
||||||
|
|
|
@ -170,10 +170,10 @@ void ExtrusionCalibration::create()
|
||||||
|
|
||||||
m_button_cali = new Button(m_step_1_panel, _L("Start calibration"));
|
m_button_cali = new Button(m_step_1_panel, _L("Start calibration"));
|
||||||
m_btn_bg_green = StateColor(std::pair<wxColour, int>(wxColour(238, 238, 238), StateColor::Disabled), std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
m_btn_bg_green = StateColor(std::pair<wxColour, int>(wxColour(238, 238, 238), StateColor::Disabled), std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal));
|
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal));
|
||||||
m_button_cali->SetBackgroundColor(m_btn_bg_green);
|
m_button_cali->SetBackgroundColor(m_btn_bg_green);
|
||||||
m_button_cali->SetFont(Label::Body_13);
|
m_button_cali->SetFont(Label::Body_13);
|
||||||
m_button_cali->SetBorderColor({ std::pair<wxColour, int>(wxColour(238, 238, 238), StateColor::Disabled), std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Enabled) });
|
m_button_cali->SetBorderColor({ std::pair<wxColour, int>(wxColour(238, 238, 238), StateColor::Disabled), std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Enabled) });
|
||||||
m_button_cali->SetTextColor({ std::pair<wxColour, int>(wxColour(172, 172, 172), StateColor::Disabled), std::pair<wxColour, int>(EXTRUSION_CALIBRATION_GREY200, StateColor::Enabled) });
|
m_button_cali->SetTextColor({ std::pair<wxColour, int>(wxColour(172, 172, 172), StateColor::Disabled), std::pair<wxColour, int>(EXTRUSION_CALIBRATION_GREY200, StateColor::Enabled) });
|
||||||
m_button_cali->SetCornerRadius(FromDIP(12));
|
m_button_cali->SetCornerRadius(FromDIP(12));
|
||||||
m_button_cali->SetMinSize(wxSize(-1, FromDIP(24)));
|
m_button_cali->SetMinSize(wxSize(-1, FromDIP(24)));
|
||||||
|
@ -181,9 +181,9 @@ void ExtrusionCalibration::create()
|
||||||
|
|
||||||
m_cali_cancel = new Button(m_step_1_panel, _L("Cancel"));
|
m_cali_cancel = new Button(m_step_1_panel, _L("Cancel"));
|
||||||
m_btn_bg_green = StateColor(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
m_btn_bg_green = StateColor(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal));
|
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal));
|
||||||
m_cali_cancel->SetBackgroundColor(m_btn_bg_green);
|
m_cali_cancel->SetBackgroundColor(m_btn_bg_green);
|
||||||
m_cali_cancel->SetBorderColor(wxColour(0, 174, 66));
|
m_cali_cancel->SetBorderColor(wxColour(0, 150, 136));
|
||||||
m_cali_cancel->SetTextColor(EXTRUSION_CALIBRATION_GREY200);
|
m_cali_cancel->SetTextColor(EXTRUSION_CALIBRATION_GREY200);
|
||||||
m_cali_cancel->SetMinSize(EXTRUSION_CALIBRATION_BUTTON_SIZE);
|
m_cali_cancel->SetMinSize(EXTRUSION_CALIBRATION_BUTTON_SIZE);
|
||||||
m_cali_cancel->SetCornerRadius(FromDIP(12));
|
m_cali_cancel->SetCornerRadius(FromDIP(12));
|
||||||
|
@ -256,10 +256,10 @@ void ExtrusionCalibration::create()
|
||||||
// save button
|
// save button
|
||||||
m_button_save_result = new Button(m_step_2_panel, _L("Save"));
|
m_button_save_result = new Button(m_step_2_panel, _L("Save"));
|
||||||
m_btn_bg_green = StateColor(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
m_btn_bg_green = StateColor(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal));
|
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal));
|
||||||
m_button_save_result->SetBackgroundColor(m_btn_bg_green);
|
m_button_save_result->SetBackgroundColor(m_btn_bg_green);
|
||||||
m_button_save_result->SetFont(Label::Body_13);
|
m_button_save_result->SetFont(Label::Body_13);
|
||||||
m_button_save_result->SetBorderColor(wxColour(0, 174, 66));
|
m_button_save_result->SetBorderColor(wxColour(0, 150, 136));
|
||||||
m_button_save_result->SetTextColor(EXTRUSION_CALIBRATION_GREY200);
|
m_button_save_result->SetTextColor(EXTRUSION_CALIBRATION_GREY200);
|
||||||
m_button_save_result->SetMinSize(EXTRUSION_CALIBRATION_BUTTON_SIZE);
|
m_button_save_result->SetMinSize(EXTRUSION_CALIBRATION_BUTTON_SIZE);
|
||||||
m_button_save_result->SetCornerRadius(FromDIP(12));
|
m_button_save_result->SetCornerRadius(FromDIP(12));
|
||||||
|
|
|
@ -25,7 +25,7 @@ static const ImU32 BACKGROUND_COLOR_DARK = IM_COL32(65, 65, 71, 255);
|
||||||
static const ImU32 BACKGROUND_COLOR_LIGHT = IM_COL32(255, 255, 255, 255);
|
static const ImU32 BACKGROUND_COLOR_LIGHT = IM_COL32(255, 255, 255, 255);
|
||||||
static const ImU32 GROOVE_COLOR_DARK = IM_COL32(45, 45, 49, 255);
|
static const ImU32 GROOVE_COLOR_DARK = IM_COL32(45, 45, 49, 255);
|
||||||
static const ImU32 GROOVE_COLOR_LIGHT = IM_COL32(206, 206, 206, 255);
|
static const ImU32 GROOVE_COLOR_LIGHT = IM_COL32(206, 206, 206, 255);
|
||||||
static const ImU32 BRAND_COLOR = IM_COL32(0, 174, 66, 255);
|
static const ImU32 BRAND_COLOR = IM_COL32(0, 150, 136, 255);
|
||||||
|
|
||||||
|
|
||||||
static int m_tick_value = -1;
|
static int m_tick_value = -1;
|
||||||
|
|
|
@ -47,7 +47,7 @@ PlateSettingsDialog::PlateSettingsDialog(wxWindow* parent, wxWindowID id, const
|
||||||
|
|
||||||
auto sizer_button = new wxBoxSizer(wxHORIZONTAL);
|
auto sizer_button = new wxBoxSizer(wxHORIZONTAL);
|
||||||
StateColor btn_bg_green(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
StateColor btn_bg_green(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal));
|
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal));
|
||||||
|
|
||||||
StateColor btn_bg_white(std::pair<wxColour, int>(wxColour(206, 206, 206), StateColor::Pressed), std::pair<wxColour, int>(wxColour(238, 238, 238), StateColor::Hovered),
|
StateColor btn_bg_white(std::pair<wxColour, int>(wxColour(206, 206, 206), StateColor::Pressed), std::pair<wxColour, int>(wxColour(238, 238, 238), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(*wxWHITE, StateColor::Normal));
|
std::pair<wxColour, int>(*wxWHITE, StateColor::Normal));
|
||||||
|
|
|
@ -71,7 +71,7 @@ PrivacyUpdateDialog::PrivacyUpdateDialog(wxWindow* parent, wxWindowID id, const
|
||||||
|
|
||||||
auto sizer_button = new wxBoxSizer(wxHORIZONTAL);
|
auto sizer_button = new wxBoxSizer(wxHORIZONTAL);
|
||||||
StateColor btn_bg_green(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
StateColor btn_bg_green(std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed), std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal));
|
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal));
|
||||||
|
|
||||||
StateColor btn_bg_white(std::pair<wxColour, int>(wxColour(206, 206, 206), StateColor::Pressed), std::pair<wxColour, int>(wxColour(220, 220, 220), StateColor::Hovered),
|
StateColor btn_bg_white(std::pair<wxColour, int>(wxColour(206, 206, 206), StateColor::Pressed), std::pair<wxColour, int>(wxColour(220, 220, 220), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(wxColour(238, 238, 238), StateColor::Normal));
|
std::pair<wxColour, int>(wxColour(238, 238, 238), StateColor::Normal));
|
||||||
|
|
|
@ -36,13 +36,13 @@ static const wxColour STATIC_BOX_LINE_COL = wxColour(238, 238, 238);
|
||||||
static const wxColour BUTTON_NORMAL1_COL = wxColour(238, 238, 238);
|
static const wxColour BUTTON_NORMAL1_COL = wxColour(238, 238, 238);
|
||||||
static const wxColour BUTTON_NORMAL2_COL = wxColour(206, 206, 206);
|
static const wxColour BUTTON_NORMAL2_COL = wxColour(206, 206, 206);
|
||||||
static const wxColour BUTTON_PRESS_COL = wxColour(172, 172, 172);
|
static const wxColour BUTTON_PRESS_COL = wxColour(172, 172, 172);
|
||||||
static const wxColour BUTTON_HOVER_COL = wxColour(0, 174, 66);
|
static const wxColour BUTTON_HOVER_COL = wxColour(0, 150, 136);
|
||||||
|
|
||||||
static const wxColour DISCONNECT_TEXT_COL = wxColour(171, 172, 172);
|
static const wxColour DISCONNECT_TEXT_COL = wxColour(171, 172, 172);
|
||||||
static const wxColour NORMAL_TEXT_COL = wxColour(48,58,60);
|
static const wxColour NORMAL_TEXT_COL = wxColour(48,58,60);
|
||||||
static const wxColour NORMAL_FAN_TEXT_COL = wxColour(107, 107, 107);
|
static const wxColour NORMAL_FAN_TEXT_COL = wxColour(107, 107, 107);
|
||||||
static const wxColour WARNING_INFO_BG_COL = wxColour(255, 111, 0);
|
static const wxColour WARNING_INFO_BG_COL = wxColour(255, 111, 0);
|
||||||
static const wxColour STAGE_TEXT_COL = wxColour(0, 174, 66);
|
static const wxColour STAGE_TEXT_COL = wxColour(0, 150, 136);
|
||||||
|
|
||||||
static const wxColour GROUP_STATIC_LINE_COL = wxColour(206, 206, 206);
|
static const wxColour GROUP_STATIC_LINE_COL = wxColour(206, 206, 206);
|
||||||
|
|
||||||
|
@ -478,12 +478,12 @@ wxBoxSizer *StatusBasePanel::create_project_task_page(wxWindow *parent)
|
||||||
m_staticText_progress_percent = new wxStaticText(penel_text, wxID_ANY, L("0"), wxDefaultPosition, wxDefaultSize, 0);
|
m_staticText_progress_percent = new wxStaticText(penel_text, wxID_ANY, L("0"), wxDefaultPosition, wxDefaultSize, 0);
|
||||||
m_staticText_progress_percent->SetFont(::Label::Head_18);
|
m_staticText_progress_percent->SetFont(::Label::Head_18);
|
||||||
m_staticText_progress_percent->SetMaxSize(wxSize(-1, FromDIP(20)));
|
m_staticText_progress_percent->SetMaxSize(wxSize(-1, FromDIP(20)));
|
||||||
m_staticText_progress_percent->SetForegroundColour(wxColour(0, 174, 66));
|
m_staticText_progress_percent->SetForegroundColour(wxColour(0, 150, 136));
|
||||||
|
|
||||||
m_staticText_progress_percent_icon = new wxStaticText(penel_text, wxID_ANY, L("%"), wxDefaultPosition, wxDefaultSize, 0);
|
m_staticText_progress_percent_icon = new wxStaticText(penel_text, wxID_ANY, L("%"), wxDefaultPosition, wxDefaultSize, 0);
|
||||||
m_staticText_progress_percent_icon->SetFont(::Label::Body_11);
|
m_staticText_progress_percent_icon->SetFont(::Label::Body_11);
|
||||||
m_staticText_progress_percent_icon->SetMaxSize(wxSize(-1, FromDIP(13)));
|
m_staticText_progress_percent_icon->SetMaxSize(wxSize(-1, FromDIP(13)));
|
||||||
m_staticText_progress_percent_icon->SetForegroundColour(wxColour(0, 174, 66));
|
m_staticText_progress_percent_icon->SetForegroundColour(wxColour(0, 150, 136));
|
||||||
|
|
||||||
sizer_percent->Add(m_staticText_progress_percent, 0, 0, 0);
|
sizer_percent->Add(m_staticText_progress_percent, 0, 0, 0);
|
||||||
|
|
||||||
|
@ -807,7 +807,7 @@ wxBoxSizer *StatusBasePanel::create_misc_control(wxWindow *parent)
|
||||||
m_switch_nozzle_fan->SetTextColor(StateColor(std::make_pair(DISCONNECT_TEXT_COL, (int) StateColor::Disabled), std::make_pair(NORMAL_FAN_TEXT_COL, (int) StateColor::Normal)));
|
m_switch_nozzle_fan->SetTextColor(StateColor(std::make_pair(DISCONNECT_TEXT_COL, (int) StateColor::Disabled), std::make_pair(NORMAL_FAN_TEXT_COL, (int) StateColor::Normal)));
|
||||||
|
|
||||||
m_switch_nozzle_fan->Bind(wxEVT_ENTER_WINDOW, [this](auto& e) {
|
m_switch_nozzle_fan->Bind(wxEVT_ENTER_WINDOW, [this](auto& e) {
|
||||||
m_fan_panel->SetBackgroundColor(wxColour(0, 174, 66));
|
m_fan_panel->SetBackgroundColor(wxColour(0, 150, 136));
|
||||||
});
|
});
|
||||||
|
|
||||||
m_switch_nozzle_fan->Bind(wxEVT_LEAVE_WINDOW, [this, parent](auto& e) {
|
m_switch_nozzle_fan->Bind(wxEVT_LEAVE_WINDOW, [this, parent](auto& e) {
|
||||||
|
@ -827,7 +827,7 @@ wxBoxSizer *StatusBasePanel::create_misc_control(wxWindow *parent)
|
||||||
StateColor(std::make_pair(DISCONNECT_TEXT_COL, (int) StateColor::Disabled), std::make_pair(NORMAL_FAN_TEXT_COL, (int) StateColor::Normal)));
|
StateColor(std::make_pair(DISCONNECT_TEXT_COL, (int) StateColor::Disabled), std::make_pair(NORMAL_FAN_TEXT_COL, (int) StateColor::Normal)));
|
||||||
|
|
||||||
m_switch_printing_fan->Bind(wxEVT_ENTER_WINDOW, [this](auto& e) {
|
m_switch_printing_fan->Bind(wxEVT_ENTER_WINDOW, [this](auto& e) {
|
||||||
m_fan_panel->SetBackgroundColor(wxColour(0, 174, 66));
|
m_fan_panel->SetBackgroundColor(wxColour(0, 150, 136));
|
||||||
});
|
});
|
||||||
|
|
||||||
m_switch_printing_fan->Bind(wxEVT_LEAVE_WINDOW, [this, parent](auto& e) {
|
m_switch_printing_fan->Bind(wxEVT_LEAVE_WINDOW, [this, parent](auto& e) {
|
||||||
|
@ -847,7 +847,7 @@ wxBoxSizer *StatusBasePanel::create_misc_control(wxWindow *parent)
|
||||||
StateColor(std::make_pair(DISCONNECT_TEXT_COL, (int)StateColor::Disabled), std::make_pair(NORMAL_FAN_TEXT_COL, (int)StateColor::Normal)));
|
StateColor(std::make_pair(DISCONNECT_TEXT_COL, (int)StateColor::Disabled), std::make_pair(NORMAL_FAN_TEXT_COL, (int)StateColor::Normal)));
|
||||||
|
|
||||||
m_switch_cham_fan->Bind(wxEVT_ENTER_WINDOW, [this](auto& e) {
|
m_switch_cham_fan->Bind(wxEVT_ENTER_WINDOW, [this](auto& e) {
|
||||||
m_fan_panel->SetBackgroundColor(wxColour(0, 174, 66));
|
m_fan_panel->SetBackgroundColor(wxColour(0, 150, 136));
|
||||||
});
|
});
|
||||||
|
|
||||||
m_switch_cham_fan->Bind(wxEVT_LEAVE_WINDOW, [this, parent](auto& e) {
|
m_switch_cham_fan->Bind(wxEVT_LEAVE_WINDOW, [this, parent](auto& e) {
|
||||||
|
|
|
@ -58,11 +58,11 @@ wxBoxSizer* WipingDialog::create_btn_sizer(long flags)
|
||||||
StateColor ok_btn_bg(
|
StateColor ok_btn_bg(
|
||||||
std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed),
|
std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed),
|
||||||
std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal)
|
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal)
|
||||||
);
|
);
|
||||||
|
|
||||||
StateColor ok_btn_bd(
|
StateColor ok_btn_bd(
|
||||||
std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal)
|
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal)
|
||||||
);
|
);
|
||||||
|
|
||||||
StateColor ok_btn_text(
|
StateColor ok_btn_text(
|
||||||
|
@ -87,11 +87,11 @@ wxBoxSizer* WipingDialog::create_btn_sizer(long flags)
|
||||||
StateColor calc_btn_bg(
|
StateColor calc_btn_bg(
|
||||||
std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed),
|
std::pair<wxColour, int>(wxColour(27, 136, 68), StateColor::Pressed),
|
||||||
std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
std::pair<wxColour, int>(wxColour(61, 203, 115), StateColor::Hovered),
|
||||||
std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal)
|
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal)
|
||||||
);
|
);
|
||||||
|
|
||||||
StateColor calc_btn_bd(
|
StateColor calc_btn_bd(
|
||||||
std::pair<wxColour, int>(wxColour(0, 174, 66), StateColor::Normal)
|
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal)
|
||||||
);
|
);
|
||||||
|
|
||||||
StateColor calc_btn_text(
|
StateColor calc_btn_text(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue