1234567891011121314151617181920 |
- #pragma once
- #include "NetworkAPIProcessor.h"
- #include <Fenster.h>
- #include <UIMLView.h>
- class UIMLDialog : public Framework::Fenster, public NetworkAPIProcessor
- {
- private:
- Framework::UIMLView* view;
- Framework::Text name;
- std::function<void(UIMLDialog* self)> onClose;
- public:
- UIMLDialog(Framework::Text uiml, std::function<void(UIMLDialog* self)> onClose);
- ~UIMLDialog();
- void api(char* message) override;
- const Framework::Text& getName() const;
- };
|