mirror of
https://github.com/sebastiandine/Card-Collection-Manager-3.git
synced 2026-08-28 17:01:02 +00:00
d3b4762b76
* several functions. fixes #1 and #2 * multi selection functionality
102 lines
3.9 KiB
C++
102 lines
3.9 KiB
C++
#pragma once
|
|
|
|
#include "ccm/domain/YuGiOhCard.hpp"
|
|
#include "ccm/ports/ICardPreviewSource.hpp"
|
|
#include "ccm/services/CardPreviewService.hpp"
|
|
#include "ccm/ui/BaseCardEditDialog.hpp"
|
|
#include "ccm/ui/SwitchCtrl.hpp"
|
|
#include <wx/button.h>
|
|
#include <wx/stattext.h>
|
|
|
|
#include <atomic>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace ccm::ui {
|
|
|
|
class YuGiOhCardEditDialog final : public BaseCardEditDialog<YuGiOhCard> {
|
|
public:
|
|
YuGiOhCardEditDialog(wxWindow* parent,
|
|
ImageService& imageService,
|
|
SetService& setService,
|
|
CardPreviewService& cardPreview,
|
|
EditMode mode,
|
|
YuGiOhCard initial,
|
|
const std::vector<Set>* preloadedSets = nullptr);
|
|
~YuGiOhCardEditDialog() override;
|
|
|
|
protected:
|
|
void buildFlagsRow(wxBoxSizer* flagsBox) override;
|
|
void customizeSetPickerRow(wxBoxSizer& row, wxComboBox* combo) override;
|
|
void appendExtraRows(wxFlexGridSizer* grid) override;
|
|
void readExtraFromCard() override;
|
|
void writeExtraToCard() override;
|
|
[[nodiscard]] std::string updateMenuName() const override { return "Update Yu-Gi-Oh!"; }
|
|
void onCardLookupContextChanged() override;
|
|
void onSetSelectionApplied() override;
|
|
|
|
private:
|
|
struct VariantFetchState {
|
|
std::atomic<bool> alive{true};
|
|
};
|
|
|
|
void onAutoDetectSetNo(wxCommandEvent&);
|
|
void onAutoDetectRarity(wxCommandEvent&);
|
|
void onNextSetNo(wxCommandEvent&);
|
|
void onNextRarity(wxCommandEvent&);
|
|
void onSetNoTextChanged(wxCommandEvent&);
|
|
void onSetSelectionChanged(wxCommandEvent&);
|
|
void handleSetSelectionChanged();
|
|
void onSetRowSwitch(wxCommandEvent&);
|
|
void onSetCodeAutoDetect(wxCommandEvent&);
|
|
void syncSetModeHint();
|
|
void autoDetectFromApi(bool fillSetNo, bool fillRarity);
|
|
void requestBySetNoAsync(unsigned capturedEpoch, std::string setId, std::string setName,
|
|
std::string setNo);
|
|
void applyReverseDetectedList(unsigned capturedEpoch,
|
|
Result<std::vector<AutoDetectedPrint>> detected);
|
|
void refreshSetNoFullPreview();
|
|
void clearCachedPrintVariants();
|
|
bool fetchAndCachePrintVariants();
|
|
void rebuildVariantRingsFromCache();
|
|
void filterCachedVariantsForCardLanguage();
|
|
void syncRingPositionsToControls();
|
|
void applyRarityStringToChoice(const std::string& rarity);
|
|
[[nodiscard]] std::string currentFullSetNoFromControls() const;
|
|
void refreshVariantNextControls();
|
|
[[nodiscard]] std::string extractSetNoNumeric(std::string_view fullSetNo) const;
|
|
[[nodiscard]] std::string composeFullSetNo(std::string_view numeric) const;
|
|
void scheduleDeferredVariantPrefetch();
|
|
void prefetchVariantsForCurrentCardSilent(unsigned capturedEpoch);
|
|
|
|
EditMode dialogMode_;
|
|
unsigned variantFetchEpoch_{0};
|
|
CardPreviewService& cardPreview_;
|
|
std::shared_ptr<VariantFetchState> variantFetchState_;
|
|
wxTextCtrl* setNoCtrl_{nullptr};
|
|
wxStaticText* setNoFullPreview_{nullptr};
|
|
wxChoice* rarityChoice_{nullptr};
|
|
wxButton* autoSetNoBtn_{nullptr};
|
|
wxButton* nextSetNoBtn_{nullptr};
|
|
wxButton* autoRarityBtn_{nullptr};
|
|
wxButton* nextRarityBtn_{nullptr};
|
|
wxCheckBox* firstEditionCheck_{nullptr};
|
|
wxCheckBox* signedCheck_{nullptr};
|
|
wxCheckBox* alteredCheck_{nullptr};
|
|
|
|
wxPanel* setCodeRowPanel_{nullptr};
|
|
wxTextCtrl* setCodeText_{nullptr};
|
|
wxButton* setCodeAutoBtn_{nullptr};
|
|
wxStaticText* setModeHint_{nullptr};
|
|
SwitchCtrl* setPickerSwitch_{nullptr};
|
|
|
|
std::vector<AutoDetectedPrint> cachedVariants_;
|
|
std::vector<std::string> uniqueSetCodes_;
|
|
std::vector<std::string> raritiesForCurrentSetCode_;
|
|
std::size_t setCodeRingPos_{0};
|
|
std::size_t rarityRingPos_{0};
|
|
};
|
|
|
|
} // namespace ccm::ui
|