GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
INonResizableComponent.h
Go to the documentation of this file.
1#pragma once
2
3#include "Core.h"
4
5namespace gui_framework
6{
7 namespace interfaces
8 {
11 {
12 private:
13 HWND nonResizableHandle;
14
15 public:
16 INonResizableComponent(HWND nonResizableHandle);
17
22 virtual void resize(uint16_t width, uint16_t height) final;
23
24 virtual ~INonResizableComponent() = default;
25 };
26 }
27}
#define GUI_FRAMEWORK_API