Cockatrice 2026-01-14-Development-2.11.0-beta.46
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
visual_deck_editor_placeholder_widget.h
Go to the documentation of this file.
1#ifndef COCKATRICE_VISUAL_DECK_EDITOR_PLACEHOLDER_WIDGET_H
2#define COCKATRICE_VISUAL_DECK_EDITOR_PLACEHOLDER_WIDGET_H
3
4#include <QLabel>
5#include <QVBoxLayout>
6#include <QWidget>
7
9{
10 Q_OBJECT
11
12public:
13 explicit VisualDeckEditorPlaceholderWidget(QWidget *parent = nullptr);
14 void retranslateUi();
15
16private:
17 QVBoxLayout *mainLayout;
18 QLabel *imageLabel;
19 QLabel *textLabel;
20};
21
22#endif // COCKATRICE_VISUAL_DECK_EDITOR_PLACEHOLDER_WIDGET_H
void retranslateUi()
Definition visual_deck_editor_placeholder_widget.cpp:26
VisualDeckEditorPlaceholderWidget(QWidget *parent=nullptr)
Definition visual_deck_editor_placeholder_widget.cpp:3
QLabel * imageLabel
Definition visual_deck_editor_placeholder_widget.h:18
QVBoxLayout * mainLayout
Definition visual_deck_editor_placeholder_widget.h:17
QLabel * textLabel
Definition visual_deck_editor_placeholder_widget.h:19