Files
Blocks3D/src/include/PropertyWindow.h
2022-10-03 19:30:38 -07:00

18 lines
478 B
C++

#pragma once
#include "DataModelV2/Instance.h"
#include <set>
class PropertyWindow {
public:
PropertyWindow(int x, int y, int sx, int sy, HMODULE hThisInstance);
bool onCreate(int x, int y, int sx, int sy, HMODULE hThisInstance);
void UpdateSelected(std::vector<Instance *> selection);
void ClearProperties();
void onResize();
void refreshExplorer(std::vector<Instance *> selection);
HWND _hwndProp;
private:
HWND _propGrid;
HWND _explorerComboBox;
void _resize();
};