mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 22:42:14 -07:00
make methods private
This commit is contained in:
parent
ce8583ae7f
commit
99fb1b4690
1 changed files with 6 additions and 4 deletions
|
|
@ -10,16 +10,18 @@ class VisualDeckStorageTagFilterWidget : public QWidget
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
VisualDeckStorageWidget *parent;
|
||||||
explicit VisualDeckStorageTagFilterWidget(VisualDeckStorageWidget *_parent);
|
|
||||||
QStringList gatherAllTags() const;
|
QStringList gatherAllTags() const;
|
||||||
void filterDecksBySelectedTags(const QList<DeckPreviewWidget *> &deckPreviews) const;
|
|
||||||
void removeTagsNotInList(const QStringList &tags);
|
void removeTagsNotInList(const QStringList &tags);
|
||||||
void addTagsIfNotPresent(const QStringList &tags);
|
void addTagsIfNotPresent(const QStringList &tags);
|
||||||
void addTagIfNotPresent(const QString &tag);
|
void addTagIfNotPresent(const QString &tag);
|
||||||
void sortTags();
|
void sortTags();
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit VisualDeckStorageTagFilterWidget(VisualDeckStorageWidget *_parent);
|
||||||
QStringList getAllKnownTags() const;
|
QStringList getAllKnownTags() const;
|
||||||
VisualDeckStorageWidget *parent;
|
void filterDecksBySelectedTags(const QList<DeckPreviewWidget *> &deckPreviews) const;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void refreshTags();
|
void refreshTags();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue