mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-05-09 04:11:24 -05:00
Some checks are pending
Build Desktop / Configure (push) Waiting to run
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Debian, DEB, 11) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Debian, DEB, 13) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Debian, DEB, skip, 12) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Fedora, RPM, 43) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Fedora, RPM, skip, 42) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Servatrice_Debian, DEB, yes, skip, 11) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Ubuntu, DEB, 24.04) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Ubuntu, DEB, 26.04) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Ubuntu, DEB, skip, 22.04) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (yes, Arch, skip) (push) Blocked by required conditions
Build Desktop / ${{matrix.os}} ${{matrix.target}}${{ matrix.soc == 'Intel' && ' Intel' || '' }}${{ matrix.type == 'Debug' && ' Debug' || '' }} (7d, Ninja, 1, macOS, -macOS14, clang_64, qtimageformats qtmultimedia qtwebsockets, 6.11.*, macos-14, Apple, 14, Release, 1, … (push) Blocked by required conditions
Build Desktop / ${{matrix.os}} ${{matrix.target}}${{ matrix.soc == 'Intel' && ' Intel' || '' }}${{ matrix.type == 'Debug' && ' Debug' || '' }} (7d, Ninja, 1, macOS, -macOS15, clang_64, qtimageformats qtmultimedia qtwebsockets, 6.11.*, macos-15, Apple, 15, Release, 1, … (push) Blocked by required conditions
Build Desktop / ${{matrix.os}} ${{matrix.target}}${{ matrix.soc == 'Intel' && ' Intel' || '' }}${{ matrix.type == 'Debug' && ' Debug' || '' }} (7d, Ninja, 1, macOS, 13, -macOS13_Intel, clang_64, qtimageformats qtmultimedia qtwebsockets, 6.11.*, macos-15-intel, Intel, … (push) Blocked by required conditions
Build Desktop / ${{matrix.os}} ${{matrix.target}}${{ matrix.soc == 'Intel' && ' Intel' || '' }}${{ matrix.type == 'Debug' && ' Debug' || '' }} (7d, Ninja, macOS, clang_64, qtimageformats qtmultimedia qtwebsockets, 6.11.*, macos-15, Apple, 15, Debug, 1, 16.4) (push) Blocked by required conditions
Build Desktop / ${{matrix.os}} ${{matrix.target}}${{ matrix.soc == 'Intel' && ' Intel' || '' }}${{ matrix.type == 'Debug' && ' Debug' || '' }} (Visual Studio 17 2022, x64, 1, Windows, -Win10, win64_msvc2022_64, qtimageformats qtmultimedia qtwebsockets, 6.11.*, windows… (push) Blocked by required conditions
Build Docker Image / amd64 & arm64 (push) Waiting to run
* [DeckAnalytics] Add a checkbox to include/exclude sideboard for calculation Took 15 minutes * default to false, actually Took 2 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
76 lines
1.9 KiB
C++
76 lines
1.9 KiB
C++
/**
|
|
* @file deck_analytics_widget.h
|
|
* @ingroup DeckEditorAnalyticsWidgets
|
|
* @brief Main analytics widget container with resizable panels for deck statistics.
|
|
*/
|
|
|
|
#ifndef DECK_ANALYTICS_WIDGET_H
|
|
#define DECK_ANALYTICS_WIDGET_H
|
|
|
|
#include "abstract_analytics_panel_widget.h"
|
|
#include "deck_list_statistics_analyzer.h"
|
|
#include "resizable_panel.h"
|
|
|
|
#include <QCheckBox>
|
|
#include <QJsonObject>
|
|
#include <QScrollArea>
|
|
#include <QVBoxLayout>
|
|
#include <QVector>
|
|
#include <QWidget>
|
|
|
|
class LayoutInspector;
|
|
|
|
class DeckAnalyticsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public slots:
|
|
void updateDisplays();
|
|
|
|
public:
|
|
explicit DeckAnalyticsWidget(QWidget *parent, DeckListStatisticsAnalyzer *analyzer);
|
|
void retranslateUi();
|
|
void includeSideboardChanged(bool checked);
|
|
|
|
private slots:
|
|
void onAddPanel();
|
|
void onRemoveSelected();
|
|
void onPanelDropped(ResizablePanel *dragged, ResizablePanel *target, bool insertBefore);
|
|
void saveLayout();
|
|
void loadLayout();
|
|
void addDefaultPanels();
|
|
bool loadLayoutInternal();
|
|
void clearPanels();
|
|
|
|
protected:
|
|
bool eventFilter(QObject *obj, QEvent *event) override;
|
|
void selectWrapper(ResizablePanel *panel);
|
|
int indexOfSelectedWrapper() const;
|
|
|
|
private:
|
|
void addPanelInstance(const QString &typeId, AbstractAnalyticsPanelWidget *panel, const QJsonObject &cfg = {});
|
|
|
|
QVBoxLayout *layout;
|
|
QWidget *controlContainer;
|
|
QHBoxLayout *controlLayout;
|
|
|
|
QPushButton *addButton;
|
|
QPushButton *removeButton;
|
|
QPushButton *saveButton;
|
|
QPushButton *loadButton;
|
|
|
|
QCheckBox *includeSideboardCheckBox;
|
|
|
|
QScrollArea *scrollArea;
|
|
QWidget *panelContainer;
|
|
QVBoxLayout *panelLayout;
|
|
|
|
QVector<ResizablePanel *> panelWrappers;
|
|
ResizablePanel *selectedWrapper = nullptr;
|
|
|
|
DeckListStatisticsAnalyzer *statsAnalyzer;
|
|
LayoutInspector *insp = nullptr;
|
|
};
|
|
|
|
#endif // DECK_ANALYTICS_WIDGET_H
|