Files
Blocks3D/PropertyWindow.h
MusicalProgrammer 55f59e46e0 Explorer fixed, and renamed SetProperties()
SetProperties() doesn't describe what it actually does.
Changed to:
UpdateSelected()
2019-11-02 20:27:18 -04:00

16 lines
420 B
C++

#pragma once
#include "Instance.h"
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(Instance *);
void ClearProperties();
void onResize();
void refreshExplorer(Instance* selectedInstance);
HWND _hwndProp;
private:
HWND _propGrid;
HWND _explorerComboBox;
void _resize();
};