GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
BaseScrollBar.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace gui_framework
7{
9 {
10 public:
11 BaseScrollBar(const std::wstring& scrollBarName, const utility::ComponentSettings& settings, const styles::ScrollBarStyles& styles, BaseComposite* parent);
12
15 virtual size_t getHash() const override = 0;
16
17 virtual ~BaseScrollBar() = default;
18 };
19}
#define GUI_FRAMEWORK_API
Base class for all windows, controls, etc.
Base class for all windows that has children windows.
virtual size_t getHash() const override=0
Used as key in creators.
virtual ~BaseScrollBar()=default