#include <AUI/View/AButton.h>
#include "CellView.h"
#include "MinesweeperWindow.h"
#include "NewGameWindow.h"
#include <AUI/ASS/ASS.h>
using namespace ass;
template<FieldCell fieldCell>
public:
bool isPossiblyApplicable(
AView* view)
override {
return dynamic_cast<CellView*>(view) != nullptr;
}
bool isStateApplicable(
AView* view)
override {
if (
auto c =
dynamic_cast<CellView*
>(view)) {
return (
c->fieldCell() & fieldCell) == fieldCell;
}
return false;
}
IAssSubSelector::setupConnections(view, helper);
}
};
public:
bool isPossiblyApplicable(
AView* view)
override {
return dynamic_cast<MinesweeperWindow*>(view) != nullptr;
}
bool isStateApplicable(AView* view) override {
if (auto c = dynamic_cast<MinesweeperWindow*>(view)) {
}
return false;
}
void setupConnections(AView* view, const _<AAssHelper>& helper) override {
IAssSubSelector::setupConnections(view, helper);
}
};
struct GlobalStyle {
GlobalStyle() {
AStylesheet::global().
addRules({
{
t<CellView>(),
FixedSize { 26_dp },
BackgroundSolid { 0xdedede_rgb },
Border { 1_px, 0xeaeaea_rgb },
},
{
!RevealSelector{} >> t<CellView>::hover(),
BackgroundSolid { 0xfdfdfd_rgb },
},
{
CellSelector<FieldCell::OPEN>(),
Border { 1_px, 0xffffff_rgb },
BackgroundSolid { 0xeeeeee_rgb },
},
{
CellSelector<FieldCell::HAS_FLAG>(),
BackgroundImage { ":minesweeper/flag.svg" },
},
{
RevealSelector {} >> CellSelector<FieldCell::HAS_BOMB>(),
BackgroundImage { ":minesweeper/bomb.svg" },
},
{
RevealSelector {} >> CellSelector<FieldCell::HAS_FLAG>(),
BackgroundImage { ":minesweeper/no_bomb_flag.svg" },
},
{
RevealSelector {} >> CellSelector<FieldCell::HAS_FLAG | FieldCell::HAS_BOMB>(),
BackgroundImage { ":minesweeper/bomb_flag.svg" },
},
{
CellSelector<FieldCell::RED_BG>(),
BackgroundSolid { 0xff0000_rgb },
Border { nullptr },
},
{
class_of(".frame"),
Border { 1_dp, 0x444444_rgb },
},
{ class_of(".frame") > t<AButton>(), Margin { 4_dp } },
{ t<NewGameWindow>(), Padding { 4_dp } },
});
}
} s;
void clearAllOutgoingConnectionsWith(aui::no_escape< AObjectBase > object) const noexcept override
Destroys all connections with passed receiver, if any.
Definition ASignal.h:211
Base class of all UI objects.
Definition AView.h:78
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179
Definition AAssSelector.h:28
class_of c
Selects views that are of the specified classes.
Definition class_of.h:84
static decltype(auto) connect(const Signal &signal, Object *object, Function &&function)
Connects signal to the slot of the specified object.
Definition AObject.h:86
#define slot(v)
Passes some variable and type of the variable separated by comma. It's convenient to use with the con...
Definition kAUI.h:88