- Note
- This Source File belongs to 7GUIs Counter Example. Please follow the link for example explanation.
#include <AUI/Platform/Entry.h>
#include <AUI/Platform/AWindow.h>
#include <AUI/Util/UIBuildingHelpers.h>
#include <AUI/View/AButton.h>
#include "AUI/View/ATextField.h"
using namespace declarative;
class CounterWindow:
public AWindow {
public:
CounterWindow():
AWindow(
"AUI - 7GUIs - Counter", 200_dp, 100_dp) {
Horizontal {
it->setEditable(false);
},
},
});
}
private:
};
_new<CounterWindow>()->show();
return 0;
}
void setContents(const _< AViewContainer > &container)
Moves (like via std::move) all children and layout of the specified container to this container.
emits clicked
Left mouse button clicked.
Definition AView.h:933
Represents a window in the underlying windowing system.
Definition AWindow.h:45
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 let
Performs multiple operations on a single object without repeating its name (in place) This function c...
Definition kAUI.h:262
#define AUI_ENTRY
Application entry point.
Definition Entry.h:90
Basic easy-to-use property implementation containing T.
Definition AProperty.h:30