diff --git a/lib/widget/paneltabbutton.cpp b/lib/widget/paneltabbutton.cpp new file mode 100644 index 00000000000..b48118ffde8 --- /dev/null +++ b/lib/widget/paneltabbutton.cpp @@ -0,0 +1,70 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 2023 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 for more details. + + You should have received a copy of the GNU General Public License + along with Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +#include "lib/ivis_opengl/pieblitfunc.h" +#include "paneltabbutton.h" + +constexpr int QCFORM_PANEL_TABS_PADDING = 20; +constexpr int QCFORM_PANEL_TABS_HEIGHT = 20; +const PIELIGHT WZCOL_PANELTABS_FILL_COLOR = pal_RGBA(25, 0, 110, 220); +const PIELIGHT WZCOL_PANELTABS_FILL_COLOR_DARK = pal_RGBA(10, 0, 70, 250); +const PIELIGHT WZCOL_PANELTABS_BORDER_LIGHT = pal_RGBA(255, 255, 255, 150); + +std::shared_ptr WzPanelTabButton::make(const WzString& text) +{ + auto button = std::make_shared(); + button->setString(text); + button->FontID = font_regular; + int minButtonWidthForText = iV_GetTextWidth(text, button->FontID); + button->setGeometry(0, 0, minButtonWidthForText + QCFORM_PANEL_TABS_PADDING, QCFORM_PANEL_TABS_HEIGHT); + return button; +} + +void WzPanelTabButton::display(int xOffset, int yOffset) +{ + int x0 = x() + xOffset; + int y0 = y() + yOffset; + int x1 = x0 + width(); + int y1 = y0 + height(); + + bool haveText = !pText.isEmpty(); + + bool isDown = (getState() & (WBUT_DOWN | WBUT_LOCK | WBUT_CLICKLOCK)) != 0; + bool isDisabled = (getState() & WBUT_DISABLE) != 0; + bool isHighlight = !isDisabled && ((getState() & WBUT_HIGHLIGHT) != 0); + + // Display the button. + auto light_border = WZCOL_PANELTABS_BORDER_LIGHT; + auto fill_color = isDown || isDisabled ? WZCOL_PANELTABS_FILL_COLOR_DARK : WZCOL_PANELTABS_FILL_COLOR; + iV_ShadowBox(x0, y0, x1, y1, 0, isDown || isHighlight ? light_border : WZCOL_FORM_DARK, isDown || isHighlight ? light_border : WZCOL_FORM_DARK, fill_color); + + if (haveText) + { + wzText.setText(pText, FontID); + int fw = wzText.width(); + int fx = x0 + (width() - fw) / 2; + int fy = y0 + (height() - wzText.lineSize()) / 2 - wzText.aboveBase(); + PIELIGHT textColor = (isDown) ? WZCOL_TEXT_BRIGHT : WZCOL_FORM_TEXT; + if (isDisabled) + { + textColor.byte.a = (textColor.byte.a / 2); + } + wzText.render(fx, fy, textColor); + } +} diff --git a/lib/widget/paneltabbutton.h b/lib/widget/paneltabbutton.h new file mode 100644 index 00000000000..fafaed4632b --- /dev/null +++ b/lib/widget/paneltabbutton.h @@ -0,0 +1,37 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 2023 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 for more details. + + You should have received a copy of the GNU General Public License + along with Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +#ifndef __INCLUDED_LIB_WIDGET_PANEL_TAB_BUTTON_H__ +#define __INCLUDED_LIB_WIDGET_PANEL_TAB_BUTTON_H__ + +#include "widget.h" +#include "button.h" +#include "lib/ivis_opengl/textdraw.h" + +class WzPanelTabButton : public W_BUTTON +{ +public: + static std::shared_ptr make(const WzString& text); +public: + void display(int xOffset, int yOffset) override; +private: + WzText wzText; +}; + +#endif // __INCLUDED_LIB_WIDGET_PANEL_TAB_BUTTON_H__ diff --git a/src/hci/quickchat.cpp b/src/hci/quickchat.cpp index 3037c116e65..570a4c094cc 100644 --- a/src/hci/quickchat.cpp +++ b/src/hci/quickchat.cpp @@ -30,6 +30,7 @@ #include "lib/widget/scrollablelist.h" #include "lib/widget/button.h" #include "lib/widget/multibutform.h" +#include "lib/widget/paneltabbutton.h" #include "lib/ivis_opengl/pieblitfunc.h" #include "lib/ivis_opengl/piepalette.h" #include "lib/netplay/netplay.h" @@ -2006,59 +2007,6 @@ void WzQuickChatPanel::run(W_CONTEXT *psContext) } } -// MARK: - - -constexpr int QCFORM_PANEL_TABS_PADDING = 20; - -class WzPanelTabButton : public W_BUTTON -{ -public: - static std::shared_ptr make(const WzString& text) - { - auto button = std::make_shared(); - button->setString(text); - button->FontID = font_regular; - int minButtonWidthForText = iV_GetTextWidth(text, button->FontID); - button->setGeometry(0, 0, minButtonWidthForText + QCFORM_PANEL_TABS_PADDING, QCFORM_PANEL_TABS_HEIGHT); - return button; - } -public: - void display(int xOffset, int yOffset) override - { - int x0 = x() + xOffset; - int y0 = y() + yOffset; - int x1 = x0 + width(); - int y1 = y0 + height(); - - bool haveText = !pText.isEmpty(); - - bool isDown = (getState() & (WBUT_DOWN | WBUT_LOCK | WBUT_CLICKLOCK)) != 0; - bool isDisabled = (getState() & WBUT_DISABLE) != 0; - bool isHighlight = !isDisabled && ((getState() & WBUT_HIGHLIGHT) != 0); - - // Display the button. - auto light_border = WZCOL_QUICKCHAT_TABS_BORDER_LIGHT; - auto fill_color = isDown || isDisabled ? WZCOL_QUICKCHAT_TABS_FILL_COLOR_DARK : WZCOL_QUICKCHAT_TABS_FILL_COLOR; - iV_ShadowBox(x0, y0, x1, y1, 0, isDown || isHighlight ? light_border : WZCOL_FORM_DARK, isDown || isHighlight ? light_border : WZCOL_FORM_DARK, fill_color); - - if (haveText) - { - wzText.setText(pText, FontID); - int fw = wzText.width(); - int fx = x0 + (width() - fw) / 2; - int fy = y0 + (height() - wzText.lineSize()) / 2 - wzText.aboveBase(); - PIELIGHT textColor = (isDown) ? WZCOL_TEXT_BRIGHT : WZCOL_FORM_TEXT; - if (isDisabled) - { - textColor.byte.a = (textColor.byte.a / 2); - } - wzText.render(fx, fy, textColor); - } - } -private: - WzText wzText; -}; - // MARK: - WzQuickChatForm void WzQuickChatForm::released(W_CONTEXT *context, WIDGET_KEY mouseButton)