32 lines
858 B
C++
32 lines
858 B
C++
// #ifndef TIERCARDLAYOUT_HPP
|
|
// #define TIERCARDLAYOUT_HPP
|
|
|
|
// #include <QLayout>
|
|
// #include <QLabel>
|
|
|
|
// class TierCardLayout : public QLayout
|
|
// {
|
|
// public:
|
|
// TierCardLayout();
|
|
// ~TierCardLayout();
|
|
// void addItem(QLayoutItem *item) override;
|
|
// Qt::Orientations expandingDirections() const override;
|
|
// bool hasHeightForWidth() const override;
|
|
// int heightForWidth(int) const override;
|
|
// int count() const override;
|
|
// QLayoutItem *itemAt(int index) const override;
|
|
// QSize minimumSize() const override;
|
|
// void setGeometry(const QRect &rect) override;
|
|
// QSize sizeHint() const override;
|
|
// QLayoutItem *takeAt(int index) override;
|
|
// public
|
|
|
|
// private:
|
|
// QList<QLayoutItem *> itemList;
|
|
// QLabel* image;
|
|
// QLabel* text;
|
|
// QLabel* id;
|
|
// };
|
|
|
|
// #endif // TIERCARDLAYOUT_HPP
|