Move dialogs/ underneath interface/widgets since QDialog inherits from QWidget.

Took 22 minutes


Took 27 minutes
This commit is contained in:
Lukas Brübach 2025-10-09 07:46:51 +02:00
parent b8983f27ab
commit f95364ca62
50 changed files with 0 additions and 0 deletions

View file

@ -1,34 +0,0 @@
/**
* @file dlg_load_remote_deck.h
* @ingroup RemoteDeckStorageDialogs
* @ingroup Lobby
* @brief TODO: Document this.
*/
#ifndef DLG_STARTGAME_H
#define DLG_STARTGAME_H
#include <QDialog>
class RemoteDeckList_TreeWidget;
class QModelIndex;
class AbstractClient;
class QPushButton;
class QDialogButtonBox;
class DlgLoadRemoteDeck : public QDialog
{
Q_OBJECT
private:
AbstractClient *client;
RemoteDeckList_TreeWidget *dirView;
QDialogButtonBox *buttonBox;
private slots:
void currentItemChanged(const QModelIndex &current, const QModelIndex &previous);
public:
explicit DlgLoadRemoteDeck(AbstractClient *_client, QWidget *parent = nullptr);
int getDeckId() const;
};
#endif