mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 08:14:47 -07:00
save minimized state of card info widget in settings
This commit is contained in:
parent
a215b3503a
commit
970da7d214
4 changed files with 34 additions and 12 deletions
|
|
@ -26,6 +26,7 @@ private:
|
|||
QString handBgPath, tableBgPath, playerBgPath, cardBackPicturePath;
|
||||
bool picDownload;
|
||||
bool doubleClickToPlay;
|
||||
bool cardInfoMinimized;
|
||||
bool horizontalHand;
|
||||
bool economicalGrid;
|
||||
bool tapAnimation;
|
||||
|
|
@ -42,6 +43,7 @@ public:
|
|||
QString getCardBackPicturePath() const { return cardBackPicturePath; }
|
||||
bool getPicDownload() const { return picDownload; }
|
||||
bool getDoubleClickToPlay() const { return doubleClickToPlay; }
|
||||
bool getCardInfoMinimized() const { return cardInfoMinimized; }
|
||||
bool getHorizontalHand() const { return horizontalHand; }
|
||||
bool getEconomicalGrid() const { return economicalGrid; }
|
||||
bool getTapAnimation() const { return tapAnimation; }
|
||||
|
|
@ -58,6 +60,7 @@ public slots:
|
|||
void setCardBackPicturePath(const QString &_cardBackPicturePath);
|
||||
void setPicDownload(int _picDownload);
|
||||
void setDoubleClickToPlay(int _doubleClickToPlay);
|
||||
void setCardInfoMinimized(bool _cardInfoMinimized);
|
||||
void setHorizontalHand(int _horizontalHand);
|
||||
void setEconomicalGrid(int _economicalGrid);
|
||||
void setTapAnimation(int _tapAnimation);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue