1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/client/mainmenu/CStatisticScreen.cpp

40 lines
1.5 KiB
C++
Raw Normal View History

2024-08-11 22:44:16 +02:00
/*
* CStatisticScreen.cpp, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#include "StdInc.h"
#include "CStatisticScreen.h"
2024-08-12 01:07:58 +02:00
#include "../CGameInfo.h"
2024-08-11 22:44:16 +02:00
#include "../gui/CGuiHandler.h"
#include "../gui/WindowHandler.h"
2024-08-12 01:07:58 +02:00
#include "../gui/Shortcut.h"
2024-08-11 22:44:16 +02:00
#include "../widgets/Images.h"
2024-08-12 01:07:58 +02:00
#include "../widgets/GraphicalPrimitiveCanvas.h"
#include "../widgets/TextControls.h"
#include "../widgets/Buttons.h"
2024-08-11 22:44:16 +02:00
#include "../../lib/gameState/GameStatistics.h"
2024-08-12 01:07:58 +02:00
#include "../../lib/texts/CGeneralTextHandler.h"
2024-08-11 22:44:16 +02:00
CStatisticScreen::CStatisticScreen(StatisticDataSet statistic)
: CWindowObject(BORDERED)
{
OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
pos = center(Rect(0, 0, 800, 600));
filledBackground = std::make_shared<FilledTexturePlayerColored>(ImagePath::builtin("DiBoxBck"), Rect(0, 0, pos.w, pos.h));
2024-08-12 01:07:58 +02:00
filledBackground->setPlayerColor(PlayerColor(1));
2024-08-11 22:44:16 +02:00
2024-08-12 01:07:58 +02:00
layout.push_back(std::make_shared<CMultiLineLabel>(Rect(0, 0, 800, 30), FONT_BIG, ETextAlignment::CENTER, Colors::YELLOW, CGI->generaltexth->translate("vcmi.statisticWindow.statistic")));
layout.push_back(std::make_shared<TransparentFilledRectangle>(Rect(10, 30, 780, 530), ColorRGBA(0, 0, 0, 64), ColorRGBA(64, 80, 128, 255), 1));
layout.push_back(std::make_shared<CButton>(Point(725, 564), AnimationPath::builtin("MUBCHCK"), CButton::tooltip(), [this](){ close(); }, EShortcut::GLOBAL_ACCEPT));
2024-08-11 22:54:19 +02:00
}