Skip to content

Commit

Permalink
Move WzPanelTabButton to widgets lib
Browse files Browse the repository at this point in the history
  • Loading branch information
past-due committed Oct 20, 2023
1 parent b84f7c9 commit b9fb6d8
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 53 deletions.
70 changes: 70 additions & 0 deletions lib/widget/paneltabbutton.cpp
Original file line number Diff line number Diff line change
@@ -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> WzPanelTabButton::make(const WzString& text)
{
auto button = std::make_shared<WzPanelTabButton>();
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);
}
}
37 changes: 37 additions & 0 deletions lib/widget/paneltabbutton.h
Original file line number Diff line number Diff line change
@@ -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<WzPanelTabButton> make(const WzString& text);
public:
void display(int xOffset, int yOffset) override;
private:
WzText wzText;
};

#endif // __INCLUDED_LIB_WIDGET_PANEL_TAB_BUTTON_H__
54 changes: 1 addition & 53 deletions src/hci/quickchat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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<WzPanelTabButton> make(const WzString& text)
{
auto button = std::make_shared<WzPanelTabButton>();
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)
Expand Down

0 comments on commit b9fb6d8

Please sign in to comment.