30 lines
615 B
C++
30 lines
615 B
C++
#pragma once
|
|
class EditorComponent;
|
|
|
|
class ProjectCreatorWindow : public wi::gui::Window
|
|
{
|
|
public:
|
|
void Create(EditorComponent* editor);
|
|
|
|
EditorComponent* editor = nullptr;
|
|
|
|
wi::gui::Label infoLabel;
|
|
wi::gui::TextInputField projectNameInput;
|
|
wi::gui::Button iconButton;
|
|
wi::gui::Button thumbnailButton;
|
|
wi::gui::Button createButton;
|
|
|
|
wi::Resource iconResource;
|
|
std::string iconName;
|
|
|
|
wi::gui::ColorPicker backlogColorPicker;
|
|
wi::gui::ColorPicker backgroundColorPicker;
|
|
wi::gui::Button colorPreviewButton;
|
|
|
|
wi::Resource thumbnailResource;
|
|
std::string thumbnailName;
|
|
|
|
void ResizeLayout() override;
|
|
};
|
|
|