Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
printing_selector_card_selection_widget.h
Go to the documentation of this file.
1
6
7#ifndef PRINTING_SELECTOR_CARD_SELECTION_WIDGET_H
8#define PRINTING_SELECTOR_CARD_SELECTION_WIDGET_H
9
10#include "printing_selector.h"
11
12#include <QHBoxLayout>
13#include <QPushButton>
14#include <QWidget>
15
17{
18 Q_OBJECT
19
20public:
22
23 void connectSignals();
24
25public slots:
26 void selectSetForCards();
27
28private:
31 QPushButton *previousCardButton;
33 QPushButton *nextCardButton;
34};
35
36#endif // PRINTING_SELECTOR_CARD_SELECTION_WIDGET_H
void selectSetForCards()
Definition printing_selector_card_selection_widget.cpp:48
QPushButton * previousCardButton
Definition printing_selector_card_selection_widget.h:31
void connectSignals()
Connects the signals from the buttons to the appropriate slots in the parent widget.
Definition printing_selector_card_selection_widget.cpp:42
PrintingSelector * parent
Definition printing_selector_card_selection_widget.h:29
PrintingSelectorCardSelectionWidget(PrintingSelector *parent)
Constructs a PrintingSelectorCardSelectionWidget for navigating through cards in the deck.
Definition printing_selector_card_selection_widget.cpp:13
QHBoxLayout * cardSelectionBarLayout
Definition printing_selector_card_selection_widget.h:30
QPushButton * selectSetForCardsButton
Definition printing_selector_card_selection_widget.h:32
QPushButton * nextCardButton
Definition printing_selector_card_selection_widget.h:33
Definition printing_selector.h:30
TODO: Document this.