mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-26 10:29:34 -05:00
* Split filters into libraries where applicable. Took 23 minutes Took 2 minutes * Include filter string. Took 5 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
91 lines
2.7 KiB
C++
91 lines
2.7 KiB
C++
/**
|
|
* @file view_zone.h
|
|
* @ingroup GameGraphicsZones
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef ZONEVIEWERZONE_H
|
|
#define ZONEVIEWERZONE_H
|
|
|
|
#include "logic/view_zone_logic.h"
|
|
#include "select_zone.h"
|
|
|
|
#include <QGraphicsLayoutItem>
|
|
#include <QLoggingCategory>
|
|
#include <libcockatrice/filters/filter_string.h>
|
|
#include <libcockatrice/protocol/pb/commands.pb.h>
|
|
|
|
inline Q_LOGGING_CATEGORY(ViewZoneLog, "view_zone");
|
|
|
|
class ZoneViewWidget;
|
|
class Response;
|
|
class ServerInfo_Card;
|
|
class QGraphicsSceneWheelEvent;
|
|
|
|
/**
|
|
* A CardZone that is a view into another CardZone.
|
|
* If this zone is writable, then modifications to this zone will be reflected in the underlying zone.
|
|
*
|
|
* Most interactions with StackZones are handled through a zone view.
|
|
* For example, viewing the deck/graveyard/exile is handled through a view.
|
|
*
|
|
* Handles both limited reveals (eg. look at top X cards) and full zone reveals (eg. searching the deck).
|
|
*/
|
|
class ZoneViewZone : public SelectZone, public QGraphicsLayoutItem
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(QGraphicsLayoutItem)
|
|
private:
|
|
static constexpr int HORIZONTAL_PADDING = 12;
|
|
static constexpr int VERTICAL_PADDING = 5;
|
|
|
|
QRectF bRect, optimumRect;
|
|
int minRows;
|
|
FilterString filterString = FilterString("");
|
|
CardList::SortOption groupBy, sortBy;
|
|
bool pileView;
|
|
|
|
struct GridSize
|
|
{
|
|
int rows;
|
|
int cols;
|
|
};
|
|
|
|
GridSize positionCardsForDisplay(CardList &cards, CardList::SortOption pileOption = CardList::NoSort);
|
|
|
|
void
|
|
handleDropEvent(const QList<CardDragItem *> &dragItems, CardZoneLogic *startZone, const QPoint &dropPoint) override;
|
|
|
|
public:
|
|
ZoneViewZone(ZoneViewZoneLogic *_logic, QGraphicsItem *parent);
|
|
QRectF boundingRect() const override;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
|
|
void reorganizeCards() override;
|
|
void initializeCards(const QList<const ServerInfo_Card *> &cardList = QList<const ServerInfo_Card *>());
|
|
void setGeometry(const QRectF &rect) override;
|
|
QRectF getOptimumRect() const
|
|
{
|
|
return optimumRect;
|
|
}
|
|
public slots:
|
|
void addToViews();
|
|
void removeFromViews();
|
|
void close();
|
|
void setFilterString(const QString &_filterString);
|
|
void setGroupBy(CardList::SortOption _groupBy);
|
|
void setSortBy(CardList::SortOption _sortBy);
|
|
void setPileView(int _pileView);
|
|
private slots:
|
|
void zoneDumpReceived(const Response &r);
|
|
signals:
|
|
void closed();
|
|
void optimumRectChanged();
|
|
void wheelEventReceived(QGraphicsSceneWheelEvent *event);
|
|
|
|
protected:
|
|
QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint = QSizeF()) const override;
|
|
void wheelEvent(QGraphicsSceneWheelEvent *event) override;
|
|
};
|
|
|
|
#endif
|