From 7e1b66be9424409708e45992143f7b6c45a9776a Mon Sep 17 00:00:00 2001 From: Mzying2001 Date: Tue, 30 Jan 2024 15:36:38 +0800 Subject: [PATCH 1/9] =?UTF-8?q?=E6=B7=BB=E5=8A=A0Splitter=E6=8E=A7?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sw/inc/SimpleWindow.h | 1 + sw/inc/Splitter.h | 43 ++++++++++++++++++++++++++++++++ sw/src/Splitter.cpp | 57 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 101 insertions(+) create mode 100644 sw/inc/Splitter.h create mode 100644 sw/src/Splitter.cpp diff --git a/sw/inc/SimpleWindow.h b/sw/inc/SimpleWindow.h index 56f52725..ee3ec28d 100644 --- a/sw/inc/SimpleWindow.h +++ b/sw/inc/SimpleWindow.h @@ -55,6 +55,7 @@ #include "ScrollEnums.h" #include "Size.h" #include "Slider.h" +#include "Splitter.h" #include "StackLayout.h" #include "StackLayoutH.h" #include "StackLayoutV.h" diff --git a/sw/inc/Splitter.h b/sw/inc/Splitter.h new file mode 100644 index 00000000..b38e8236 --- /dev/null +++ b/sw/inc/Splitter.h @@ -0,0 +1,43 @@ +#pragma once + +#include "StaticControl.h" + +namespace sw +{ + /** + * @brief 分隔条 + */ + class Splitter : public StaticControl + { + private: + /** + * @brief 记录分隔条方向 + */ + Orientation _orientation = Orientation::Horizontal; + + public: + /** + * @brief 分隔条的方向,给该属性赋值同时会改变HorizontalAlignment和VerticalAlignment属性的值 + */ + const Property Orientation; + + /** + * @brief 初始化分隔条 + */ + Splitter(); + + protected: + /** + * @brief 接收到WM_PAINT时调用该函数 + * @return 若已处理该消息则返回true,否则返回false以调用DefaultWndProc + */ + virtual bool OnPaint() override; + + /** + * @brief 接收到WM_SIZE时调用该函数 + * @param newClientSize 改变后的用户区尺寸 + * @return 若已处理该消息则返回true,否则返回false以调用DefaultWndProc + */ + virtual bool OnSize(Size newClientSize) override; + }; +} diff --git a/sw/src/Splitter.cpp b/sw/src/Splitter.cpp new file mode 100644 index 00000000..1a269f4c --- /dev/null +++ b/sw/src/Splitter.cpp @@ -0,0 +1,57 @@ +#include "Splitter.h" +#include "Utils.h" + +sw::Splitter::Splitter() + : Orientation( + // get + [&]() -> const sw::Orientation & { + return this->_orientation; + }, + // set + [&](const sw::Orientation &value) { + if (this->_orientation != value) { + this->_orientation = value; + value == Orientation::Horizontal + ? this->SetAlignment(HorizontalAlignment::Stretch, VerticalAlignment::Center) + : this->SetAlignment(HorizontalAlignment::Center, VerticalAlignment::Stretch); + } + }) +{ + this->Rect = sw::Rect{0, 0, 10, 10}; + this->Transparent = true; + this->SetAlignment(HorizontalAlignment::Stretch, VerticalAlignment::Center); +} + +bool sw::Splitter::OnPaint() +{ + PAINTSTRUCT ps; + + HWND hwnd = this->Handle; + HDC hdc = BeginPaint(hwnd, &ps); + + RECT rect; + GetClientRect(hwnd, &rect); + + HBRUSH hBrush = CreateSolidBrush(this->GetRealBackColor()); + FillRect(hdc, &rect, hBrush); + + if (this->_orientation == sw::Orientation::Horizontal) { + // 在中间绘制横向分隔条 + rect.top += Utils::Max(0L, (rect.bottom - rect.top) / 2 - 1); + DrawEdge(hdc, &rect, EDGE_ETCHED, BF_TOP); + } else { + // 在中间绘制纵向分隔条 + rect.left += Utils::Max(0L, (rect.right - rect.left) / 2 - 1); + DrawEdge(hdc, &rect, EDGE_ETCHED, BF_LEFT); + } + + DeleteObject(hBrush); + EndPaint(hwnd, &ps); + return true; +} + +bool sw::Splitter::OnSize(Size newClientSize) +{ + InvalidateRect(this->Handle, NULL, FALSE); + return this->UIElement::OnSize(newClientSize); +} From 3ce9048c4608693107d0c52aab754e06147c7b2b Mon Sep 17 00:00:00 2001 From: Mzying2001 Date: Tue, 30 Jan 2024 15:37:18 +0800 Subject: [PATCH 2/9] Update vs --- vs/sw.vcxproj | 2 ++ vs/sw.vcxproj.filters | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/vs/sw.vcxproj b/vs/sw.vcxproj index 803ee4a3..cbc01749 100644 --- a/vs/sw.vcxproj +++ b/vs/sw.vcxproj @@ -206,6 +206,7 @@ + @@ -272,6 +273,7 @@ + diff --git a/vs/sw.vcxproj.filters b/vs/sw.vcxproj.filters index ee423dde..4c663591 100644 --- a/vs/sw.vcxproj.filters +++ b/vs/sw.vcxproj.filters @@ -234,6 +234,9 @@ inc + + inc + @@ -425,5 +428,8 @@ src + + src + \ No newline at end of file From 4640940f48d79e7371a84a36a685bb060fad97a9 Mon Sep 17 00:00:00 2001 From: Mzying2001 Date: Wed, 28 Feb 2024 10:45:37 +0800 Subject: [PATCH 3/9] Update Control.cpp --- sw/src/Control.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sw/src/Control.cpp b/sw/src/Control.cpp index ce781fdc..34ab27a5 100644 --- a/sw/src/Control.cpp +++ b/sw/src/Control.cpp @@ -31,10 +31,10 @@ void sw::Control::ResetHandle() // Size and position rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, - parent, // Parent window - NULL, // Menu - App::Instance, // Instance handle - this // Additional application data + parent, // Parent window + NULL, // Menu + App::Instance, // Instance handle + (WndBase *)this // Additional application data ); SetWindowLongPtrW(oldHwnd, GWLP_USERDATA, (LONG_PTR)NULL); From 9334e6b9e2d3502143c5c02f1e922d38b9940f05 Mon Sep 17 00:00:00 2001 From: Mzying2001 Date: Wed, 28 Feb 2024 11:37:27 +0800 Subject: [PATCH 4/9] =?UTF-8?q?=E8=B0=83=E6=95=B4ResetHandle=E5=87=BD?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 确保旧句柄销毁时能够调用到正确的WndProc --- sw/src/Control.cpp | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/sw/src/Control.cpp b/sw/src/Control.cpp index 34ab27a5..c152fff5 100644 --- a/sw/src/Control.cpp +++ b/sw/src/Control.cpp @@ -12,42 +12,45 @@ void sw::Control::ResetHandle() { HWND &refHwnd = const_cast(this->Handle.Get()); - HWND oldHwnd = refHwnd; - HWND parent = GetParent(oldHwnd); - DWORD style = (DWORD)this->GetStyle(); - DWORD exStyle = (DWORD)this->GetExtendedStyle(); - RECT rect = this->Rect.Get(); - std::wstring &text = this->GetText(); + RECT rect = this->Rect.Get(); + auto text = this->GetText().c_str(); + + HWND oldHwnd = refHwnd; + HWND hParent = GetParent(oldHwnd); + DWORD style = DWORD(GetWindowLongPtrW(oldHwnd, GWL_STYLE)); + DWORD exStyle = DWORD(GetWindowLongPtrW(oldHwnd, GWL_EXSTYLE)); wchar_t className[256]; GetClassNameW(oldHwnd, className, 256); - refHwnd = CreateWindowExW( - exStyle, // Optional window styles - className, // Window class - text.c_str(), // Window text - style, // Window style + HWND newHwnd = CreateWindowExW( + exStyle, // Optional window styles + className, // Window class + text, // Window text + style, // Window style // Size and position rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, - parent, // Parent window + hParent, // Parent window NULL, // Menu App::Instance, // Instance handle (WndBase *)this // Additional application data ); + LONG_PTR wndproc = + SetWindowLongPtrW(oldHwnd, GWLP_WNDPROC, GetWindowLongPtrW(newHwnd, GWLP_WNDPROC)); SetWindowLongPtrW(oldHwnd, GWLP_USERDATA, (LONG_PTR)NULL); - SetWindowLongPtrW(refHwnd, GWLP_USERDATA, reinterpret_cast((WndBase *)this)); - LONG_PTR wndProc = GetWindowLongPtrW(oldHwnd, GWLP_WNDPROC); - SetWindowLongPtrW(refHwnd, GWLP_WNDPROC, wndProc); + SetWindowLongPtrW(newHwnd, GWLP_USERDATA, reinterpret_cast((WndBase *)this)); + SetWindowLongPtrW(newHwnd, GWLP_WNDPROC, wndproc); + + refHwnd = newHwnd; + DestroyWindow(oldHwnd); this->SendMessageW(WM_SETFONT, (WPARAM)this->GetFontHandle(), TRUE); - this->HandleChenged(); this->UpdateSiblingsZOrder(); - - DestroyWindow(oldHwnd); + this->HandleChenged(); } void sw::Control::HandleChenged() From eb94ef4e68f6f65653b68f0fdc6d923b609aab1f Mon Sep 17 00:00:00 2001 From: Mzying2001 Date: Wed, 28 Feb 2024 15:27:49 +0800 Subject: [PATCH 5/9] =?UTF-8?q?=E4=BF=AE=E5=A4=8DOnSize=E5=92=8COnMove?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E9=94=99=E8=AF=AF=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sw/src/WndBase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sw/src/WndBase.cpp b/sw/src/WndBase.cpp index 17b3e3db..de50c62f 100644 --- a/sw/src/WndBase.cpp +++ b/sw/src/WndBase.cpp @@ -396,13 +396,13 @@ LRESULT sw::WndBase::WndProc(const ProcMsg &refMsg) case WM_MOVE: { int xPos = (int)(short)LOWORD(refMsg.lParam); // horizontal position int yPos = (int)(short)HIWORD(refMsg.lParam); // vertical position - return this->OnMove(Point(xPos, yPos)) ? 0 : this->DefaultWndProc(refMsg); + return this->OnMove(POINT{xPos, yPos}) ? 0 : this->DefaultWndProc(refMsg); } case WM_SIZE: { int width = LOWORD(refMsg.lParam); // the new width of the client area int height = HIWORD(refMsg.lParam); // the new height of the client area - return this->OnSize(Size(width, height)) ? 0 : this->DefaultWndProc(refMsg); + return this->OnSize(SIZE{width, height}) ? 0 : this->DefaultWndProc(refMsg); } case WM_SETTEXT: { From 3ddd76054c00804902ca6d51a7cdcd99247440d1 Mon Sep 17 00:00:00 2001 From: Mzying2001 Date: Wed, 28 Feb 2024 15:49:25 +0800 Subject: [PATCH 6/9] =?UTF-8?q?=E6=B7=BB=E5=8A=A0HwndHost?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sw/inc/HwndHost.h | 50 +++++++++++++++++++++++++++++++++++++++++++ sw/inc/SimpleWindow.h | 1 + sw/src/HwndHost.cpp | 25 ++++++++++++++++++++++ 3 files changed, 76 insertions(+) create mode 100644 sw/inc/HwndHost.h create mode 100644 sw/src/HwndHost.cpp diff --git a/sw/inc/HwndHost.h b/sw/inc/HwndHost.h new file mode 100644 index 00000000..6c47c0f9 --- /dev/null +++ b/sw/inc/HwndHost.h @@ -0,0 +1,50 @@ +#pragma once + +#include "StaticControl.h" + +namespace sw +{ + /** + * @brief 将Win32 window托管为SimpleWindow控件 + */ + class HwndHost : public StaticControl + { + private: + /** + * @brief 托管的句柄 + */ + HWND _hWindowCore{NULL}; + + protected: + /** + * @brief 子类需要调用该函数以初始化HwndHost,该函数会调用BuildWindowCore + */ + void InitHwndHost(); + + /** + * @brief 接收到WM_SIZE时调用该函数 + * @param newClientSize 改变后的用户区尺寸 + * @return 若已处理该消息则返回true,否则返回false以调用DefaultWndProc + */ + virtual bool OnSize(Size newClientSize) override; + + /** + * @brief 接收到WM_DESTROY时调用该函数 + * @return 若已处理该消息则返回true,否则返回false以调用DefaultWndProc + */ + virtual bool OnDestroy() override; + + /** + * @brief HwndHost创建时会调用该函数,需在该函数中创建要被托管的窗口句柄,设置其父窗口并返回被托管的句柄 + * @param hParent 需要给被托管窗口句柄设置的父窗口句柄 + * @return 被托管窗口句柄 + */ + virtual HWND BuildWindowCore(HWND hParent) = 0; + + /** + * @brief HwndHost被销毁时会调用该函数来销毁被托管的窗口句柄 + * @param hwnd 被托管窗口句柄 + */ + virtual void DestroyWindowCore(HWND hwnd) = 0; + }; +} diff --git a/sw/inc/SimpleWindow.h b/sw/inc/SimpleWindow.h index ee3ec28d..07a53f1d 100644 --- a/sw/inc/SimpleWindow.h +++ b/sw/inc/SimpleWindow.h @@ -24,6 +24,7 @@ #include "GridLayout.h" #include "GroupBox.h" #include "HitTestResult.h" +#include "HwndHost.h" #include "ILayout.h" #include "ITag.h" #include "Icon.h" diff --git a/sw/src/HwndHost.cpp b/sw/src/HwndHost.cpp new file mode 100644 index 00000000..029bc2d9 --- /dev/null +++ b/sw/src/HwndHost.cpp @@ -0,0 +1,25 @@ +#include "HwndHost.h" + +void sw::HwndHost::InitHwndHost() +{ + if (this->_hWindowCore == NULL && !this->IsDestroyed) + this->_hWindowCore = this->BuildWindowCore(this->Handle); +} + +bool sw::HwndHost::OnSize(Size newClientSize) +{ + if (this->_hWindowCore != NULL) { + SetWindowPos(this->_hWindowCore, NULL, 0, 0, + Dip::DipToPxX(newClientSize.width), + Dip::DipToPxY(newClientSize.height), + SWP_NOACTIVATE | SWP_NOZORDER); + } + return this->StaticControl::OnSize(newClientSize); +} + +bool sw::HwndHost::OnDestroy() +{ + this->DestroyWindowCore(this->_hWindowCore); + this->_hWindowCore = NULL; + return this->StaticControl::OnDestroy(); +} From ead3ed197c3f6a0b122c9d4fd12df9e22d73698d Mon Sep 17 00:00:00 2001 From: Mzying2001 Date: Wed, 28 Feb 2024 15:49:39 +0800 Subject: [PATCH 7/9] Update vs --- vs/sw.vcxproj | 2 ++ vs/sw.vcxproj.filters | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/vs/sw.vcxproj b/vs/sw.vcxproj index cbc01749..f1ddb6f4 100644 --- a/vs/sw.vcxproj +++ b/vs/sw.vcxproj @@ -174,6 +174,7 @@ + @@ -249,6 +250,7 @@ + diff --git a/vs/sw.vcxproj.filters b/vs/sw.vcxproj.filters index 4c663591..be66954e 100644 --- a/vs/sw.vcxproj.filters +++ b/vs/sw.vcxproj.filters @@ -237,6 +237,9 @@ inc + + inc + @@ -431,5 +434,8 @@ src + + src + \ No newline at end of file From f091992c929e1fba5bea4ebbbb5d7834f948803e Mon Sep 17 00:00:00 2001 From: Mzying2001 Date: Wed, 28 Feb 2024 16:49:49 +0800 Subject: [PATCH 8/9] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/_hwnd_host_8h_source.html | 146 +++ docs/_simple_window_8h_source.html | 114 +-- docs/_splitter_8h_source.html | 144 +++ docs/annotated.html | 134 +-- docs/annotated_dup.js | 2 + docs/classes.html | 27 +- docs/classsw_1_1_hwnd_host-members.html | 294 ++++++ docs/classsw_1_1_hwnd_host.html | 927 ++++++++++++++++++ docs/classsw_1_1_hwnd_host.js | 8 + docs/classsw_1_1_hwnd_host.png | Bin 0 -> 2031 bytes docs/classsw_1_1_read_only_property.html | 31 +- docs/classsw_1_1_read_only_property.png | Bin 14846 -> 15331 bytes docs/classsw_1_1_splitter-members.html | 293 ++++++ docs/classsw_1_1_splitter.html | 866 ++++++++++++++++ docs/classsw_1_1_splitter.js | 7 + docs/classsw_1_1_splitter.png | Bin 0 -> 2059 bytes docs/classsw_1_1_static_control.html | 2 + docs/classsw_1_1_static_control.png | Bin 2023 -> 2248 bytes docs/classsw_1_1_u_i_element.html | 2 +- docs/classsw_1_1_wnd_base.html | 6 +- docs/classsw_1_1_write_only_property.html | 31 +- docs/classsw_1_1_write_only_property.png | Bin 14836 -> 15321 bytes .../dir_ed5f6ece24ffcc4307a76d27c2494db3.html | 4 + docs/dir_ed5f6ece24ffcc4307a76d27c2494db3.js | 2 + docs/doxygen_crawl.html | 6 + docs/files.html | 106 +- docs/functions_b.html | 1 + docs/functions_d.html | 1 + docs/functions_func_b.html | 1 + docs/functions_func_d.html | 1 + docs/functions_func_i.html | 1 + docs/functions_func_o.html | 6 +- docs/functions_func_s.html | 1 + docs/functions_i.html | 1 + docs/functions_o.html | 10 +- docs/functions_s.html | 1 + docs/functions_vars.html | 4 +- docs/hierarchy.html | 290 +++--- docs/hierarchy.js | 8 +- docs/navtreedata.js | 6 +- docs/navtreeindex0.js | 202 ++-- docs/navtreeindex1.js | 500 +++++----- docs/navtreeindex2.js | 500 +++++----- docs/navtreeindex3.js | 173 ++-- docs/search/all_11.js | 123 +-- docs/search/all_12.js | 19 +- docs/search/all_13.js | 8 +- docs/search/all_16.js | 51 +- docs/search/all_2.js | 5 +- docs/search/all_4.js | 19 +- docs/search/all_5.js | 4 +- docs/search/all_8.js | 7 +- docs/search/all_9.js | 49 +- docs/search/all_b.js | 4 +- docs/search/all_e.js | 10 +- docs/search/all_f.js | 51 +- docs/search/classes_10.js | 40 +- docs/search/classes_11.js | 40 + docs/search/classes_7.js | 6 +- docs/search/classes_8.js | 8 +- docs/search/classes_9.js | 15 +- docs/search/classes_a.js | 20 +- docs/search/classes_b.js | 45 +- docs/search/classes_c.js | 92 +- docs/search/classes_d.js | 66 +- docs/search/classes_e.js | 16 +- docs/search/classes_f.js | 8 +- docs/search/functions_1.js | 5 +- docs/search/functions_10.js | 5 +- docs/search/functions_3.js | 13 +- docs/search/functions_8.js | 29 +- docs/search/functions_c.js | 6 +- docs/search/searchdata.js | 2 +- docs/search/variables_10.js | 8 +- docs/search/variables_13.js | 4 +- docs/search/variables_3.js | 4 +- docs/search/variables_6.js | 4 +- docs/search/variables_8.js | 4 +- docs/search/variables_b.js | 4 +- docs/search/variables_e.js | 4 +- 80 files changed, 4213 insertions(+), 1444 deletions(-) create mode 100644 docs/_hwnd_host_8h_source.html create mode 100644 docs/_splitter_8h_source.html create mode 100644 docs/classsw_1_1_hwnd_host-members.html create mode 100644 docs/classsw_1_1_hwnd_host.html create mode 100644 docs/classsw_1_1_hwnd_host.js create mode 100644 docs/classsw_1_1_hwnd_host.png create mode 100644 docs/classsw_1_1_splitter-members.html create mode 100644 docs/classsw_1_1_splitter.html create mode 100644 docs/classsw_1_1_splitter.js create mode 100644 docs/classsw_1_1_splitter.png create mode 100644 docs/search/classes_11.js diff --git a/docs/_hwnd_host_8h_source.html b/docs/_hwnd_host_8h_source.html new file mode 100644 index 00000000..8a350ae4 --- /dev/null +++ b/docs/_hwnd_host_8h_source.html @@ -0,0 +1,146 @@ + + + + + + + +SimpleWindow: HwndHost.h 源文件 + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
SimpleWindow +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
载入中...
+
搜索中...
+
未找到
+
+
+
+
+ +
+
HwndHost.h
+
+
+
1#pragma once
+
2
+
3#include "StaticControl.h"
+
4
+
5namespace sw
+
6{
+
+
10 class HwndHost : public StaticControl
+
11 {
+
12 private:
+
16 HWND _hWindowCore{NULL};
+
17
+
18 protected:
+ +
23
+
29 virtual bool OnSize(Size newClientSize) override;
+
30
+
35 virtual bool OnDestroy() override;
+
36
+
42 virtual HWND BuildWindowCore(HWND hParent) = 0;
+
43
+
48 virtual void DestroyWindowCore(HWND hwnd) = 0;
+
49 };
+
+
50}
+
字典类,内部维护了一个指向std::map的智能指针
Definition Dictionary.h:24
+
将Win32 window托管为SimpleWindow控件
Definition HwndHost.h:11
+
virtual bool OnSize(Size newClientSize) override
接收到WM_SIZE时调用该函数
+
virtual bool OnDestroy() override
接收到WM_DESTROY时调用该函数
+
virtual HWND BuildWindowCore(HWND hParent)=0
HwndHost创建时会调用该函数,需在该函数中创建要被托管的窗口句柄,设置其父窗口并返回被托管的句柄
+
void InitHwndHost()
子类需要调用该函数以初始化HwndHost,该函数会调用BuildWindowCore
+
virtual void DestroyWindowCore(HWND hwnd)=0
HwndHost被销毁时会调用该函数来销毁被托管的窗口句柄
+
静态控件
Definition StaticControl.h:11
+
尺寸
Definition Size.h:11
+
+
+ + + + diff --git a/docs/_simple_window_8h_source.html b/docs/_simple_window_8h_source.html index 30c18f91..c4e922c4 100644 --- a/docs/_simple_window_8h_source.html +++ b/docs/_simple_window_8h_source.html @@ -125,62 +125,64 @@
24#include "GridLayout.h"
25#include "GroupBox.h"
26#include "HitTestResult.h"
-
27#include "ILayout.h"
-
28#include "ITag.h"
-
29#include "Icon.h"
-
30#include "ItemsControl.h"
-
31#include "Keys.h"
-
32#include "Label.h"
-
33#include "Layer.h"
-
34#include "LayoutHost.h"
-
35#include "List.h"
-
36#include "ListBox.h"
-
37#include "ListView.h"
-
38#include "Menu.h"
-
39#include "MenuBase.h"
-
40#include "MenuItem.h"
-
41#include "MsgBox.h"
-
42#include "Panel.h"
-
43#include "PanelBase.h"
-
44#include "PasswordBox.h"
-
45#include "Path.h"
-
46#include "Point.h"
-
47#include "ProcMsg.h"
-
48#include "ProgressBar.h"
-
49#include "Property.h"
-
50#include "RadioButton.h"
-
51#include "Rect.h"
-
52#include "RoutedEvent.h"
-
53#include "RoutedEventArgs.h"
-
54#include "Screen.h"
-
55#include "ScrollEnums.h"
-
56#include "Size.h"
-
57#include "Slider.h"
-
58#include "StackLayout.h"
-
59#include "StackLayoutH.h"
-
60#include "StackLayoutV.h"
-
61#include "StackPanel.h"
-
62#include "StaticControl.h"
-
63#include "TabControl.h"
-
64#include "TextBox.h"
-
65#include "TextBoxBase.h"
-
66#include "Thickness.h"
-
67#include "UIElement.h"
-
68#include "UniformGrid.h"
-
69#include "UniformGridLayout.h"
-
70#include "Utils.h"
-
71#include "Window.h"
-
72#include "WndBase.h"
-
73#include "WndMsg.h"
-
74#include "WrapLayout.h"
-
75#include "WrapLayoutH.h"
-
76#include "WrapLayoutV.h"
-
77#include "WrapPanel.h"
-
78
-
79// 启用视觉样式
-
80#pragma comment(linker, "\"/manifestdependency:type='win32' \
-
81name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \
-
82processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
+
27#include "HwndHost.h"
+
28#include "ILayout.h"
+
29#include "ITag.h"
+
30#include "Icon.h"
+
31#include "ItemsControl.h"
+
32#include "Keys.h"
+
33#include "Label.h"
+
34#include "Layer.h"
+
35#include "LayoutHost.h"
+
36#include "List.h"
+
37#include "ListBox.h"
+
38#include "ListView.h"
+
39#include "Menu.h"
+
40#include "MenuBase.h"
+
41#include "MenuItem.h"
+
42#include "MsgBox.h"
+
43#include "Panel.h"
+
44#include "PanelBase.h"
+
45#include "PasswordBox.h"
+
46#include "Path.h"
+
47#include "Point.h"
+
48#include "ProcMsg.h"
+
49#include "ProgressBar.h"
+
50#include "Property.h"
+
51#include "RadioButton.h"
+
52#include "Rect.h"
+
53#include "RoutedEvent.h"
+
54#include "RoutedEventArgs.h"
+
55#include "Screen.h"
+
56#include "ScrollEnums.h"
+
57#include "Size.h"
+
58#include "Slider.h"
+
59#include "Splitter.h"
+
60#include "StackLayout.h"
+
61#include "StackLayoutH.h"
+
62#include "StackLayoutV.h"
+
63#include "StackPanel.h"
+
64#include "StaticControl.h"
+
65#include "TabControl.h"
+
66#include "TextBox.h"
+
67#include "TextBoxBase.h"
+
68#include "Thickness.h"
+
69#include "UIElement.h"
+
70#include "UniformGrid.h"
+
71#include "UniformGridLayout.h"
+
72#include "Utils.h"
+
73#include "Window.h"
+
74#include "WndBase.h"
+
75#include "WndMsg.h"
+
76#include "WrapLayout.h"
+
77#include "WrapLayoutH.h"
+
78#include "WrapLayoutV.h"
+
79#include "WrapPanel.h"
+
80
+
81// 启用视觉样式
+
82#pragma comment(linker, "\"/manifestdependency:type='win32' \
+
83name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \
+
84processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
diff --git a/docs/_splitter_8h_source.html b/docs/_splitter_8h_source.html new file mode 100644 index 00000000..81384990 --- /dev/null +++ b/docs/_splitter_8h_source.html @@ -0,0 +1,144 @@ + + + + + + + +SimpleWindow: Splitter.h 源文件 + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
SimpleWindow +
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
载入中...
+
搜索中...
+
未找到
+
+
+
+
+ +
+
Splitter.h
+
+
+
1#pragma once
+
2
+
3#include "StaticControl.h"
+
4
+
5namespace sw
+
6{
+
+
10 class Splitter : public StaticControl
+
11 {
+
12 private:
+
16 Orientation _orientation = Orientation::Horizontal;
+
17
+
18 public:
+ +
23
+ +
28
+
29 protected:
+
34 virtual bool OnPaint() override;
+
35
+
41 virtual bool OnSize(Size newClientSize) override;
+
42 };
+
+
43}
+
字典类,内部维护了一个指向std::map的智能指针
Definition Dictionary.h:24
+
分隔条
Definition Splitter.h:11
+
virtual bool OnPaint() override
接收到WM_PAINT时调用该函数
+
virtual bool OnSize(Size newClientSize) override
接收到WM_SIZE时调用该函数
+
const Property< Orientation > Orientation
分隔条的方向,给该属性赋值同时会改变HorizontalAlignment和VerticalAlignment属性的值
Definition Splitter.h:22
+
Splitter()
初始化分隔条
+
静态控件
Definition StaticControl.h:11
+
尺寸
Definition Size.h:11
+
+
+ + + + diff --git a/docs/annotated.html b/docs/annotated.html index 215a8b98..82f64790 100644 --- a/docs/annotated.html +++ b/docs/annotated.html @@ -132,72 +132,74 @@  CGridLayoutTag网格布局方式的布局标记  CGridRow网格中的行信息  CGroupBox组合框 - CIconHelper用于获取图标句柄的工具类 - CILayout布局接口 - CITagTag接口 - CItemsControl表示可用于呈现一组项的控件 - CKeyDownEventArgs键盘按键按下事件参数类型 - CKeyFlagsHttps://learn.microsoft.com/en-us/windows/win32/inputdev/about-keyboard-input#keystroke-message-flags - CKeyUpEventArgs键盘按键抬起事件参数类型 - CLabel标签 - CLayer表示可以设置布局方式的元素类型,如窗口、面板等 - CLayoutHost用于托管元素的布局方式的对象类型,是所有布局方式类型的基类 - CList列表类,内部维护了一个指向std::vector的智能指针 - CListBox列表框 - CListView列表视图 - CListViewCheckStateChangedEventArgs列表视图某个复选框选中状态改变的事件参数类型 - CListViewColumn列表视图的列信息 - CListViewHeaderClickedEventArgs列表视图的列标题单击与双击事件参数类型 - CListViewItemClickedEventArgs列表视图项单击与双击事件参数类型 - CMenu菜单 - CMenuBase菜单类型的基类 - CMenuItem菜单项 - CMouseButtonDownEventArgs鼠标按键按下事件参数类型 - CMouseButtonUpEventArgs鼠标按键抬起事件参数类型 - CMouseMoveEventArgs鼠标移动事件参数类型 - CMouseWheelEventArgs鼠标滚轮滚动事件参数类型 - CMsgBox消息框类 - CPanel面板 - CPanelBase面板类型的基类 - CPasswordBox密码框 - CPath用于处理文件路径的工具类 - CPoint表示相对于左上角的点坐标 - CPositionChangedEventArgs位置改变事件参数类型 - CProcMsg对Windows窗口消息的封装 - CProgressBar进度条控件 - CProperty属性 - CRadioButton单选框 - CReadOnlyProperty只读属性 - CRect表示一个矩形区域 - CRoutedEventArgs路由事件的参数 - CRoutedEventArgsOfType表示特定类型路由事件的事件参数类型,继承自该类的事件参数可以用于RegisterRoutedEvent模板函数 - CScreen屏幕相关 - CScrollingEventArgs窗口/面板滚动条滚动事件参数类型 - CShowContextMenuEventArgs显示用户自定义上下文菜单的事件参数类型 - CSize尺寸 - CSizeChangedEventArgs尺寸改变事件参数类型 - CSlider滑块控件 - CStackLayout堆叠布局 - CStackLayoutH横向堆叠布局 - CStackLayoutV纵向堆叠布局 - CStackPanel堆叠面板 - CStaticControl静态控件 - CTabControl标签页控件 - CTextBox编辑框 - CTextBoxBase窗口类名为EDIT的控件类型的基类 - CThickness表示矩形区域周围边框的厚度 - CUIElement表示界面中的元素 - CUniformGrid提供一种在网格(网格中的所有单元格都具有相同的大小)中排列内容的方法 - CUniformGridLayout均匀大小网格布局 - CUtils工具类 - CWindow窗口 - CWindowClosingEventArgs窗口正在关闭事件参数类型 - CWndBase表示一个Windows窗口,是所有窗口和控件的基类 - CWrapLayout自动换行布局 - CWrapLayoutH横向自动换行布局 - CWrapLayoutV纵向自动换行布局 - CWrapPanel自动换行面板 - CWriteOnlyProperty只写属性 + CHwndHost将Win32 window托管为SimpleWindow控件 + CIconHelper用于获取图标句柄的工具类 + CILayout布局接口 + CITagTag接口 + CItemsControl表示可用于呈现一组项的控件 + CKeyDownEventArgs键盘按键按下事件参数类型 + CKeyFlagsHttps://learn.microsoft.com/en-us/windows/win32/inputdev/about-keyboard-input#keystroke-message-flags + CKeyUpEventArgs键盘按键抬起事件参数类型 + CLabel标签 + CLayer表示可以设置布局方式的元素类型,如窗口、面板等 + CLayoutHost用于托管元素的布局方式的对象类型,是所有布局方式类型的基类 + CList列表类,内部维护了一个指向std::vector的智能指针 + CListBox列表框 + CListView列表视图 + CListViewCheckStateChangedEventArgs列表视图某个复选框选中状态改变的事件参数类型 + CListViewColumn列表视图的列信息 + CListViewHeaderClickedEventArgs列表视图的列标题单击与双击事件参数类型 + CListViewItemClickedEventArgs列表视图项单击与双击事件参数类型 + CMenu菜单 + CMenuBase菜单类型的基类 + CMenuItem菜单项 + CMouseButtonDownEventArgs鼠标按键按下事件参数类型 + CMouseButtonUpEventArgs鼠标按键抬起事件参数类型 + CMouseMoveEventArgs鼠标移动事件参数类型 + CMouseWheelEventArgs鼠标滚轮滚动事件参数类型 + CMsgBox消息框类 + CPanel面板 + CPanelBase面板类型的基类 + CPasswordBox密码框 + CPath用于处理文件路径的工具类 + CPoint表示相对于左上角的点坐标 + CPositionChangedEventArgs位置改变事件参数类型 + CProcMsg对Windows窗口消息的封装 + CProgressBar进度条控件 + CProperty属性 + CRadioButton单选框 + CReadOnlyProperty只读属性 + CRect表示一个矩形区域 + CRoutedEventArgs路由事件的参数 + CRoutedEventArgsOfType表示特定类型路由事件的事件参数类型,继承自该类的事件参数可以用于RegisterRoutedEvent模板函数 + CScreen屏幕相关 + CScrollingEventArgs窗口/面板滚动条滚动事件参数类型 + CShowContextMenuEventArgs显示用户自定义上下文菜单的事件参数类型 + CSize尺寸 + CSizeChangedEventArgs尺寸改变事件参数类型 + CSlider滑块控件 + CSplitter分隔条 + CStackLayout堆叠布局 + CStackLayoutH横向堆叠布局 + CStackLayoutV纵向堆叠布局 + CStackPanel堆叠面板 + CStaticControl静态控件 + CTabControl标签页控件 + CTextBox编辑框 + CTextBoxBase窗口类名为EDIT的控件类型的基类 + CThickness表示矩形区域周围边框的厚度 + CUIElement表示界面中的元素 + CUniformGrid提供一种在网格(网格中的所有单元格都具有相同的大小)中排列内容的方法 + CUniformGridLayout均匀大小网格布局 + CUtils工具类 + CWindow窗口 + CWindowClosingEventArgs窗口正在关闭事件参数类型 + CWndBase表示一个Windows窗口,是所有窗口和控件的基类 + CWrapLayout自动换行布局 + CWrapLayoutH横向自动换行布局 + CWrapLayoutV纵向自动换行布局 + CWrapPanel自动换行面板 + CWriteOnlyProperty只写属性 diff --git a/docs/annotated_dup.js b/docs/annotated_dup.js index d6d8f6b7..9f566798 100644 --- a/docs/annotated_dup.js +++ b/docs/annotated_dup.js @@ -36,6 +36,7 @@ var annotated_dup = [ "GridLayoutTag", "structsw_1_1_grid_layout_tag.html", "structsw_1_1_grid_layout_tag" ], [ "GridRow", "structsw_1_1_grid_row.html", "structsw_1_1_grid_row" ], [ "GroupBox", "classsw_1_1_group_box.html", "classsw_1_1_group_box" ], + [ "HwndHost", "classsw_1_1_hwnd_host.html", "classsw_1_1_hwnd_host" ], [ "IconHelper", "classsw_1_1_icon_helper.html", null ], [ "ILayout", "classsw_1_1_i_layout.html", "classsw_1_1_i_layout" ], [ "ITag", "classsw_1_1_i_tag.html", "classsw_1_1_i_tag" ], @@ -81,6 +82,7 @@ var annotated_dup = [ "Size", "structsw_1_1_size.html", "structsw_1_1_size" ], [ "SizeChangedEventArgs", "structsw_1_1_size_changed_event_args.html", null ], [ "Slider", "classsw_1_1_slider.html", "classsw_1_1_slider" ], + [ "Splitter", "classsw_1_1_splitter.html", "classsw_1_1_splitter" ], [ "StackLayout", "classsw_1_1_stack_layout.html", "classsw_1_1_stack_layout" ], [ "StackLayoutH", "classsw_1_1_stack_layout_h.html", "classsw_1_1_stack_layout_h" ], [ "StackLayoutV", "classsw_1_1_stack_layout_v.html", "classsw_1_1_stack_layout_v" ], diff --git a/docs/classes.html b/docs/classes.html index afe34577..d291d6eb 100644 --- a/docs/classes.html +++ b/docs/classes.html @@ -94,7 +94,7 @@
类索引
-
A | B | C | D | F | G | I | K | L | M | P | R | S | T | U | W | _
+
A | B | C | D | F | G | H | I | K | L | M | P | R | S | T | U | W | _
A
@@ -115,36 +115,39 @@
G
GotCharEventArgs (sw)
Grid (sw)
GridColumn (sw)
GridLayout (sw)
GridLayoutTag (sw)
GridRow (sw)
GroupBox (sw)
+
H
+
HwndHost (sw)
+
I
IconHelper (sw)
ILayout (sw)
ITag (sw)
ItemsControl (sw)
-
+
K
KeyDownEventArgs (sw)
KeyFlags (sw)
KeyUpEventArgs (sw)
-
+
L
Label (sw)
Layer (sw)
LayoutHost (sw)
List (sw)
ListBox (sw)
ListView (sw)
ListViewCheckStateChangedEventArgs (sw)
ListViewColumn (sw)
ListViewHeaderClickedEventArgs (sw)
ListViewItemClickedEventArgs (sw)
-
+
M
Menu (sw)
MenuBase (sw)
MenuItem (sw)
MouseButtonDownEventArgs (sw)
MouseButtonUpEventArgs (sw)
MouseMoveEventArgs (sw)
MouseWheelEventArgs (sw)
MsgBox (sw)
-
+
P
Panel (sw)
PanelBase (sw)
PasswordBox (sw)
Path (sw)
Point (sw)
PositionChangedEventArgs (sw)
ProcMsg (sw)
ProgressBar (sw)
Property (sw)
-
+
R
RadioButton (sw)
ReadOnlyProperty (sw)
Rect (sw)
RoutedEventArgs (sw)
RoutedEventArgsOfType (sw)
-
-
S
-
Screen (sw)
ScrollingEventArgs (sw)
ShowContextMenuEventArgs (sw)
Size (sw)
SizeChangedEventArgs (sw)
Slider (sw)
StackLayout (sw)
StackLayoutH (sw)
StackLayoutV (sw)
StackPanel (sw)
StaticControl (sw)
+
S
+
Screen (sw)
ScrollingEventArgs (sw)
ShowContextMenuEventArgs (sw)
Size (sw)
SizeChangedEventArgs (sw)
Slider (sw)
Splitter (sw)
StackLayout (sw)
StackLayoutH (sw)
StackLayoutV (sw)
StackPanel (sw)
StaticControl (sw)
+
T
TabControl (sw)
TextBox (sw)
TextBoxBase (sw)
Thickness (sw)
-
+
U
UIElement (sw)
UniformGrid (sw)
UniformGridLayout (sw)
Utils (sw)
-
+
W
Window (sw)
WindowClosingEventArgs (sw)
WndBase (sw)
WrapLayout (sw)
WrapLayoutH (sw)
WrapLayoutV (sw)
WrapPanel (sw)
WriteOnlyProperty (sw)
-
+
_
_HasEventType (sw)
_HasEventType< T, decltype(void(std::declval< T >().EventType))> (sw)
_IsTypedRoutedEventArgs (sw)
diff --git a/docs/classsw_1_1_hwnd_host-members.html b/docs/classsw_1_1_hwnd_host-members.html new file mode 100644 index 00000000..c8da35da --- /dev/null +++ b/docs/classsw_1_1_hwnd_host-members.html @@ -0,0 +1,294 @@ + + + + + + + +SimpleWindow: 成员列表 + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
SimpleWindow +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
载入中...
+
搜索中...
+
未找到
+
+
+
+
+ +
+
sw::HwndHost 成员列表
+
+
+ +

成员的完整列表,这些成员属于 sw::HwndHost,包括所有继承而来的类成员

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AddChild(UIElement *element)sw::UIElement
AddChild(UIElement &element)sw::UIElement
AddChild(UIElement *element, uint64_t layoutTag)sw::UIElement
AddChild(UIElement &element, uint64_t layoutTag)sw::UIElement
Arrange(const sw::Rect &finalPosition) overridesw::UIElementvirtual
BackColorsw::UIElement
BuildWindowCore(HWND hParent)=0sw::HwndHostprotectedpure virtual
ChildCountsw::UIElement
ClearChildren()sw::UIElement
ClientHeightsw::WndBase
ClientRectsw::WndBase
ClientWidthsw::WndBase
Close()sw::WndBase
CollapseWhenHidesw::UIElement
ContextMenusw::UIElement
Control()sw::Controlprotected
DefaultWndProc(const ProcMsg &refMsg)sw::WndBaseprotected
DestroyWindowCore(HWND hwnd)=0sw::HwndHostprotectedpure virtual
Enabledsw::WndBase
Floatsw::UIElement
Focusedsw::WndBase
Fontsw::WndBase
FontChanged(HFONT hfont)sw::WndBaseprotectedvirtual
FontNamesw::WndBase
FontSizesw::WndBase
FontWeightsw::WndBase
GetArrangeOffsetX()sw::UIElementprotected
GetArrangeOffsetY()sw::UIElementprotected
GetChildBottommost(bool update)sw::UIElementprotected
GetChildLayoutAt(int index) overridesw::UIElementvirtual
GetChildLayoutCount() overridesw::UIElementvirtual
GetChildRightmost(bool update)sw::UIElementprotected
GetDesireSize() overridesw::UIElementvirtual
GetExtendedStyle()sw::WndBase
GetExtendedStyle(LONG_PTR mask)sw::WndBase
GetFontHandle()sw::WndBase
GetLayoutTag() overridesw::UIElementvirtual
GetNextElement()sw::UIElement
GetNextTabStopElement()sw::UIElement
GetRealBackColor()sw::UIElement
GetRealTextColor()sw::UIElement
GetRootElement()sw::UIElement
GetStyle()sw::WndBase
GetStyle(LONG_PTR mask)sw::WndBase
GetTag() overridesw::UIElementvirtual
GetText()sw::WndBaseprotectedvirtual
GetWndBase(HWND hwnd)sw::WndBasestatic
Handlesw::WndBase
HandleChenged()sw::Controlprotectedvirtual
HandleInitialized(HWND hwnd)sw::WndBaseprotectedvirtual
Heightsw::WndBase
HorizontalAlignmentsw::UIElement
IndexOf(UIElement *element)sw::UIElement
IndexOf(UIElement &element)sw::UIElement
InheritTextColorsw::UIElement
InitControl(LPCWSTR lpClassName, LPCWSTR lpWindowName, DWORD dwStyle, DWORD dwExStyle)sw::WndBaseprotected
InitHwndHost()sw::HwndHostprotected
InitWindow(LPCWSTR lpWindowName, DWORD dwStyle, DWORD dwExStyle)sw::WndBaseprotected
IsControl()sw::WndBase
IsDestroyedsw::WndBase
IsRootElement()sw::UIElement
IsRoutedEventRegistered(RoutedEventType eventType)sw::UIElement
IsVisible()sw::WndBase
LayoutTagsw::UIElement
Leftsw::WndBase
Marginsw::UIElement
Measure(const Size &availableSize) overridesw::UIElementvirtual
MoveToBottom()sw::UIElement
MoveToTop()sw::UIElement
NcHitTest(const Point &testPoint)sw::WndBase
Notifysw::StaticControl
NotifyLayoutUpdated()sw::UIElementprotected
OnAcceleratorCommand(int id)sw::WndBaseprotectedvirtual
OnAddedChild(UIElement &element)sw::UIElementprotectedvirtual
OnChar(wchar_t ch, KeyFlags flags) overridesw::UIElementprotectedvirtual
OnClose() overridesw::UIElementprotectedvirtual
OnColor(HDC hdc, HBRUSH &hRetBrush) overridesw::UIElementprotectedvirtual
OnCommand(int code)sw::WndBaseprotectedvirtual
OnContextMenu(bool isKeyboardMsg, Point mousePosition) overridesw::UIElementprotectedvirtual
OnControlCommand(WndBase *pControl, int code, int id)sw::WndBaseprotectedvirtual
OnCreate()sw::WndBaseprotectedvirtual
OnCtlColor(WndBase *pControl, HDC hdc, HBRUSH &hRetBrush)sw::WndBaseprotectedvirtual
OnDeadChar(wchar_t ch, KeyFlags flags)sw::WndBaseprotectedvirtual
OnDestroy() overridesw::HwndHostprotectedvirtual
OnDrawFocusRect()sw::UIElementprotectedvirtual
OnDrawItem(int id, DRAWITEMSTRUCT *pDrawItem)sw::WndBaseprotectedvirtual
OnEnabledChanged(bool newValue)sw::WndBaseprotectedvirtual
OnEndPaint() overridesw::UIElementprotectedvirtual
OnEraseBackground(int &result)sw::WndBaseprotectedvirtual
OnHorizontalScroll(int event, int pos)sw::WndBaseprotectedvirtual
OnKeyDown(VirtualKey key, KeyFlags flags) overridesw::UIElementprotectedvirtual
OnKeyUp(VirtualKey key, KeyFlags flags) overridesw::UIElementprotectedvirtual
OnKillFocus(HWND hNextFocus) overridesw::UIElementprotectedvirtual
OnMenuCommand(int id) overridesw::UIElementprotectedvirtual
OnMouseLeave() overridesw::UIElementprotectedvirtual
OnMouseLeftButtonDoubleClick(Point mousePosition, MouseKey keyState)sw::WndBaseprotectedvirtual
OnMouseLeftButtonDown(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseLeftButtonUp(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseMiddleButtonDoubleClick(Point mousePosition, MouseKey keyState)sw::WndBaseprotectedvirtual
OnMouseMiddleButtonDown(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseMiddleButtonUp(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseMove(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseRightButtonDoubleClick(Point mousePosition, MouseKey keyState)sw::WndBaseprotectedvirtual
OnMouseRightButtonDown(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseRightButtonUp(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseWheel(int wheelDelta, Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMove(Point newClientPosition) overridesw::UIElementprotectedvirtual
OnNcHitTest(const Point &testPoint, HitTestResult &result)sw::WndBaseprotectedvirtual
OnNotified(NMHDR *pNMHDR)sw::WndBaseprotectedvirtual
OnNotify(NMHDR *pNMHDR)sw::WndBaseprotectedvirtual
OnPaint()sw::WndBaseprotectedvirtual
OnRemovedChild(UIElement &element)sw::UIElementprotectedvirtual
OnSetCursor(HWND hwnd, HitTestResult hitTest, int message, bool &result) overridesw::UIElementprotectedvirtual
OnSetFocus(HWND hPrevFocus) overridesw::UIElementprotectedvirtual
OnSize(Size newClientSize) overridesw::HwndHostprotectedvirtual
OnSysChar(wchar_t ch, KeyFlags flags)sw::WndBaseprotectedvirtual
OnSysDeadChar(wchar_t ch, KeyFlags flags)sw::WndBaseprotectedvirtual
OnSysKeyDown(VirtualKey key, KeyFlags flags)sw::WndBaseprotectedvirtual
OnSysKeyUp(VirtualKey key, KeyFlags flags)sw::WndBaseprotectedvirtual
OnTabStop()sw::UIElementprotectedvirtual
OnTextChanged() overridesw::UIElementprotectedvirtual
OnVerticalScroll(int event, int pos)sw::WndBaseprotectedvirtual
operator=(const WndBase &)=delete (定义于 sw::WndBase)sw::WndBaseprotected
operator=(WndBase &&)=delete (定义于 sw::WndBase)sw::WndBaseprotected
operator[](int index) constsw::UIElement
Parentsw::UIElement
ParentChanged(WndBase *newParent) overridesw::UIElementprotectedvirtual
PointFromScreen(const Point &screenPoint)sw::WndBase
PointToScreen(const Point &point)sw::WndBase
RaiseRoutedEvent(RoutedEventType eventType)sw::UIElementprotected
RaiseRoutedEvent(RoutedEventArgs &eventArgs)sw::UIElementprotected
Rectsw::WndBase
Redraw(bool erase=false)sw::WndBase
RegisterRoutedEvent(RoutedEventType eventType, const RoutedEvent &handler)sw::UIElement
RegisterRoutedEvent(RoutedEventType eventType, T &obj, void(T::*handler)(UIElement &, RoutedEventArgs &))sw::UIElementinline
RegisterRoutedEvent(std::function< void(UIElement &, TEventArgs &)> handler)sw::UIElementinline
RegisterRoutedEvent(THandleObj &obj, void(THandleObj::*handler)(UIElement &, TEventArgs &))sw::UIElementinline
RemoveChild(UIElement *element)sw::UIElement
RemoveChild(UIElement &element)sw::UIElement
RemoveChildAt(int index)sw::UIElement
ResetCursor()sw::UIElement
ResetHandle()sw::Controlprotected
SendMessageA(UINT uMsg, WPARAM wParam, LPARAM lParam)sw::WndBase
SendMessageW(UINT uMsg, WPARAM wParam, LPARAM lParam)sw::WndBase
SetAlignment(sw::HorizontalAlignment horz, sw::VerticalAlignment vert)sw::UIElement
SetBackColor(Color color, bool redraw)sw::UIElementprotectedvirtual
SetCursor(HCURSOR hCursor)sw::UIElement
SetCursor(StandardCursor cursor)sw::UIElement
SetDesireSize(const Size &size) overridesw::UIElementvirtual
SetExtendedStyle(LONG_PTR style)sw::WndBase
SetExtendedStyle(LONG_PTR mask, bool value)sw::WndBase
SetNextTabStopFocus()sw::UIElementprotected
SetParent(WndBase *parent) overridesw::UIElementprotectedvirtual
SetStyle(LONG_PTR style)sw::WndBase
SetStyle(LONG_PTR mask, bool value)sw::WndBase
SetTag(uint64_t tag) overridesw::UIElementvirtual
SetText(const std::wstring &value)sw::WndBaseprotectedvirtual
SetTextColor(Color color, bool redraw)sw::UIElementprotectedvirtual
Show(int nCmdShow)sw::WndBase
ShowContextMenu(const Point &point)sw::UIElement
StaticControl()sw::StaticControl
TabStopsw::UIElement
Tagsw::UIElement
Textsw::WndBase
TextColorsw::UIElement
Topsw::WndBase
Transparentsw::UIElement
UIElement()sw::UIElementprotected
UnregisterRoutedEvent(RoutedEventType eventType)sw::UIElement
Update()sw::WndBase
UpdateChildrenZOrder()sw::UIElementprotected
UpdateFont()sw::WndBase
UpdateSiblingsZOrder()sw::UIElementprotected
UpdateText()sw::WndBaseprotected
VerticalAlignmentsw::UIElement
Visiblesw::WndBase
VisibleChanged(bool newVisible) overridesw::UIElementprotectedvirtual
Widthsw::WndBase
WndBase()sw::WndBaseprotected
WndBase(const WndBase &)=delete (定义于 sw::WndBase)sw::WndBaseprotected
WndBase(WndBase &&)=delete (定义于 sw::WndBase)sw::WndBaseprotected
WndProc(const ProcMsg &refMsg)sw::WndBaseprotectedvirtual
~Control()=0sw::Controlpure virtual
~UIElement()=0sw::UIElementpure virtual
~WndBase()=0sw::WndBasepure virtual
+
+ + + + diff --git a/docs/classsw_1_1_hwnd_host.html b/docs/classsw_1_1_hwnd_host.html new file mode 100644 index 00000000..188cc03b --- /dev/null +++ b/docs/classsw_1_1_hwnd_host.html @@ -0,0 +1,927 @@ + + + + + + + +SimpleWindow: sw::HwndHost类 参考 + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
SimpleWindow +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
载入中...
+
搜索中...
+
未找到
+
+
+
+
+ +
+ +
sw::HwndHost类 参考abstract
+
+
+ +

将Win32 window托管为SimpleWindow控件 + 更多...

+ +

#include <HwndHost.h>

+
+类 sw::HwndHost 继承关系图:
+
+
+ + +sw::StaticControl +sw::Control +sw::UIElement +sw::WndBase +sw::ILayout +sw::ITag + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Protected 成员函数

+void InitHwndHost ()
 子类需要调用该函数以初始化HwndHost,该函数会调用BuildWindowCore
 
virtual bool OnSize (Size newClientSize) override
 接收到WM_SIZE时调用该函数
 
virtual bool OnDestroy () override
 接收到WM_DESTROY时调用该函数
 
virtual HWND BuildWindowCore (HWND hParent)=0
 HwndHost创建时会调用该函数,需在该函数中创建要被托管的窗口句柄,设置其父窗口并返回被托管的句柄
 
virtual void DestroyWindowCore (HWND hwnd)=0
 HwndHost被销毁时会调用该函数来销毁被托管的窗口句柄
 
- Protected 成员函数 继承自 sw::Control
Control ()
 初始化控件
 
+void ResetHandle ()
 销毁控件句柄并重新初始化,该操作会创建新的句柄并设置样式、文本、字体等
 
+virtual void HandleChenged ()
 控件句柄发生改变时调用该函数
 
- Protected 成员函数 继承自 sw::UIElement
UIElement ()
 初始化UIElement
 
void RaiseRoutedEvent (RoutedEventType eventType)
 触发路由事件
 
void RaiseRoutedEvent (RoutedEventArgs &eventArgs)
 触发路由事件
 
+void NotifyLayoutUpdated ()
 通知顶级窗口布局改变
 
+doubleGetArrangeOffsetX ()
 获取Arrange时子元素的水平偏移量
 
+doubleGetArrangeOffsetY ()
 获取Arrange时子元素的垂直偏移量
 
double GetChildRightmost (bool update)
 获取所有子元素在当前元素中最右边的位置(只考虑参与布局的子窗口且忽略悬浮的元素)
 
double GetChildBottommost (bool update)
 获取所有子元素在当前元素中最底边的位置(只考虑参与布局的子窗口且忽略悬浮的元素)
 
+void UpdateChildrenZOrder ()
 更新子元素的Z轴位置
 
+void UpdateSiblingsZOrder ()
 更新兄弟元素的Z轴位置
 
+void SetNextTabStopFocus ()
 设置下一个TabStop属性为true的元素为焦点元素
 
virtual void SetBackColor (Color color, bool redraw)
 设置背景颜色
 
virtual void SetTextColor (Color color, bool redraw)
 设置文本颜色
 
virtual void OnAddedChild (UIElement &element)
 添加子元素后调用该函数
 
virtual void OnRemovedChild (UIElement &element)
 移除子元素后调用该函数
 
+virtual void OnTabStop ()
 通过tab键将焦点移动到当前元素时调用该函数
 
virtual void OnDrawFocusRect ()
 绘制虚线框时调用该函数
 
virtual bool SetParent (WndBase *parent) override
 设置父窗口
 
virtual void ParentChanged (WndBase *newParent) override
 父窗口改变时调用此函数
 
virtual void OnEndPaint () override
 在OnPaint函数完成之后调用该函数
 
virtual bool OnClose () override
 接收到WM_CLOSE时调用该函数
 
virtual bool OnMove (Point newClientPosition) override
 接收到WM_MOVE时调用该函数
 
virtual void OnTextChanged () override
 Text属性更改时调用此函数
 
virtual void VisibleChanged (bool newVisible) override
 Visible属性改变时调用此函数
 
virtual bool OnSetFocus (HWND hPrevFocus) override
 接收到WM_SETFOCUS时调用该函数
 
virtual bool OnKillFocus (HWND hNextFocus) override
 接收到WM_KILLFOCUS时调用该函数
 
virtual bool OnChar (wchar_t ch, KeyFlags flags) override
 接收到WM_CHAR时调用该函数
 
virtual bool OnKeyDown (VirtualKey key, KeyFlags flags) override
 接收到WM_KEYDOWN时调用该函数
 
virtual bool OnKeyUp (VirtualKey key, KeyFlags flags) override
 接收到WM_KEYUP时调用该函数
 
virtual bool OnMouseMove (Point mousePosition, MouseKey keyState) override
 接收到WM_MOUSEMOVE时调用该函数
 
virtual bool OnMouseLeave () override
 接收到WM_MOUSELEAVE时调用该函数
 
virtual bool OnMouseWheel (int wheelDelta, Point mousePosition, MouseKey keyState) override
 接收到WM_MOUSEWHEEL时调用该函数
 
virtual bool OnMouseLeftButtonDown (Point mousePosition, MouseKey keyState) override
 接收到WM_LBUTTONDOWN时调用该函数
 
virtual bool OnMouseLeftButtonUp (Point mousePosition, MouseKey keyState) override
 接收到WM_LBUTTONUP时调用该函数
 
virtual bool OnMouseRightButtonDown (Point mousePosition, MouseKey keyState) override
 接收到WM_RBUTTONDOWN时调用该函数
 
virtual bool OnMouseRightButtonUp (Point mousePosition, MouseKey keyState) override
 接收到WM_RBUTTONUP时调用该函数
 
virtual bool OnMouseMiddleButtonDown (Point mousePosition, MouseKey keyState) override
 接收到WM_MBUTTONDOWN时调用该函数
 
virtual bool OnMouseMiddleButtonUp (Point mousePosition, MouseKey keyState) override
 接收到WM_MBUTTONUP时调用该函数
 
virtual bool OnContextMenu (bool isKeyboardMsg, Point mousePosition) override
 接收到WM_CONTEXTMENU后调用目标控件的该函数
 
virtual void OnMenuCommand (int id) override
 当WM_COMMAND接收到菜单命令时调用该函数
 
virtual bool OnColor (HDC hdc, HBRUSH &hRetBrush) override
 父窗口接收到WM_CTLCOLORxxx时调用对应控件的该函数
 
virtual bool OnSetCursor (HWND hwnd, HitTestResult hitTest, int message, bool &result) override
 接收到WM_SETCURSOR消息时调用该函数
 
- Protected 成员函数 继承自 sw::WndBase
WndBase ()
 初始化WndBase
 
WndBase (const WndBase &)=delete
 
WndBase (WndBase &&)=delete
 
+WndBaseoperator= (const WndBase &)=delete
 
+WndBaseoperator= (WndBase &&)=delete
 
+void InitWindow (LPCWSTR lpWindowName, DWORD dwStyle, DWORD dwExStyle)
 初始化为窗口,该函数会调用CreateWindowExW
 
+void InitControl (LPCWSTR lpClassName, LPCWSTR lpWindowName, DWORD dwStyle, DWORD dwExStyle)
 初始化为控件,该函数会调用CreateWindowExW
 
+LRESULT DefaultWndProc (const ProcMsg &refMsg)
 调用默认的WndProc,对于窗口则调用DefWindowProcW,控件则调用_controlOldWndProc
 
virtual LRESULT WndProc (const ProcMsg &refMsg)
 对WndProc的封装
 
+void UpdateText ()
 更新_text字段
 
virtual std::wstring & GetText ()
 获取窗口文本
 
virtual void SetText (const std::wstring &value)
 调用SetWindowTextW设置窗口文本
 
virtual bool OnCreate ()
 接收到WM_CREATE时调用该函数
 
virtual bool OnPaint ()
 接收到WM_PAINT时调用该函数
 
virtual bool OnMouseLeftButtonDoubleClick (Point mousePosition, MouseKey keyState)
 接收到WM_LBUTTONDBLCLK时调用该函数
 
virtual bool OnMouseRightButtonDoubleClick (Point mousePosition, MouseKey keyState)
 接收到WM_RBUTTONDBLCLK时调用该函数
 
virtual bool OnMouseMiddleButtonDoubleClick (Point mousePosition, MouseKey keyState)
 接收到WM_MBUTTONDBLCLK时调用该函数
 
virtual bool OnDeadChar (wchar_t ch, KeyFlags flags)
 接收到WM_DEADCHAR时调用该函数
 
virtual bool OnSysChar (wchar_t ch, KeyFlags flags)
 接收到WM_SYSCHAR时调用该函数
 
virtual bool OnSysDeadChar (wchar_t ch, KeyFlags flags)
 接收到WM_SYSDEADCHAR时调用该函数
 
virtual bool OnSysKeyDown (VirtualKey key, KeyFlags flags)
 接收到WM_SYSKEYDOWN时调用该函数
 
virtual bool OnSysKeyUp (VirtualKey key, KeyFlags flags)
 接收到WM_SYSKEYUP时调用该函数
 
virtual void OnCommand (int code)
 当父窗口接收到控件的WM_COMMAND时调用该函数
 
virtual void OnControlCommand (WndBase *pControl, int code, int id)
 当WM_COMMAND接收到控件命令时调用该函数
 
virtual void OnAcceleratorCommand (int id)
 当WM_COMMAND接收到快捷键命令时调用该函数
 
virtual void HandleInitialized (HWND hwnd)
 窗口句柄初始化完成
 
virtual void FontChanged (HFONT hfont)
 字体改变时调用该函数
 
virtual bool OnNotify (NMHDR *pNMHDR)
 接收到WM_NOTIFY后调用该函数
 
virtual void OnNotified (NMHDR *pNMHDR)
 父窗口接收到WM_NOTIFY后调用发出通知控件的该函数
 
virtual bool OnVerticalScroll (int event, int pos)
 接收到WM_VSCROLL时调用目标控件的该函数
 
virtual bool OnHorizontalScroll (int event, int pos)
 接收到WM_HSCROLL时调用目标控件的该函数
 
virtual bool OnEnabledChanged (bool newValue)
 接收到WM_ENABLE时调用该函数
 
virtual bool OnCtlColor (WndBase *pControl, HDC hdc, HBRUSH &hRetBrush)
 接收到WM_CTLCOLORxxx时调用该函数
 
virtual void OnNcHitTest (const Point &testPoint, HitTestResult &result)
 接收到WM_NCHITTEST后调用该函数
 
virtual bool OnEraseBackground (int &result)
 接收到WM_ERASEBKGND时调用该函数
 
virtual bool OnDrawItem (int id, DRAWITEMSTRUCT *pDrawItem)
 接收到WM_DRAWITEM时调用该函数
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+额外继承的成员函数

- Public 成员函数 继承自 sw::StaticControl
StaticControl ()
 初始化静态控件
 
- Public 成员函数 继承自 sw::Control
+virtual ~Control ()=0
 析构函数,这里用纯虚函数使该类成为抽象类
 
- Public 成员函数 继承自 sw::UIElement
+virtual ~UIElement ()=0
 析构函数,这里用纯虚函数使该类成为抽象类
 
void RegisterRoutedEvent (RoutedEventType eventType, const RoutedEvent &handler)
 注册路由事件处理函数,当事件已注册时会覆盖已注册的函数
 
template<typename T >
void RegisterRoutedEvent (RoutedEventType eventType, T &obj, void(T::*handler)(UIElement &, RoutedEventArgs &))
 注册成员函数作为路由事件处理函数,当事件已注册时会覆盖已注册的函数
 
template<typename TEventArgs , typename std::enable_if< std::is_base_of< RoutedEventArgs, TEventArgs >::value, int >::type = 0, typename std::enable_if< sw::_IsTypedRoutedEventArgs< TEventArgs >::value, int >::type = 0>
void RegisterRoutedEvent (std::function< void(UIElement &, TEventArgs &)> handler)
 根据事件参数类型注册路由事件
 
template<typename TEventArgs , typename THandleObj , typename std::enable_if< std::is_base_of< RoutedEventArgs, TEventArgs >::value, int >::type = 0, typename std::enable_if< sw::_IsTypedRoutedEventArgs< TEventArgs >::value, int >::type = 0>
void RegisterRoutedEvent (THandleObj &obj, void(THandleObj::*handler)(UIElement &, TEventArgs &))
 根据事件参数类型注册成员函数作为路由事件
 
void UnregisterRoutedEvent (RoutedEventType eventType)
 取消对应类型路由事件的注册
 
bool IsRoutedEventRegistered (RoutedEventType eventType)
 判断路由事件是否已被注册
 
bool AddChild (UIElement *element)
 添加子控件
 
bool AddChild (UIElement &element)
 添加子控件
 
bool AddChild (UIElement *element, uint64_t layoutTag)
 添加子控件并设置布局标记
 
bool AddChild (UIElement &element, uint64_t layoutTag)
 添加子控件并设置布局标记
 
bool RemoveChildAt (int index)
 移除指定索引处的子控件
 
bool RemoveChild (UIElement *element)
 移除子控件
 
bool RemoveChild (UIElement &element)
 移除子控件
 
+void ClearChildren ()
 移除所有子控件
 
int IndexOf (UIElement *element)
 获取指定元素的索引
 
int IndexOf (UIElement &element)
 获取指定元素的索引
 
+UIElementoperator[] (int index) const
 通过索引获取子控件
 
void ShowContextMenu (const Point &point)
 弹出当前元素的上下文菜单
 
+void MoveToTop ()
 移动到界面顶部
 
+void MoveToBottom ()
 移动到界面底部
 
+bool IsRootElement ()
 判断当前元素是否为根节点
 
+UIElementGetRootElement ()
 获取当前元素所在界面树的根节点
 
+UIElementGetNextElement ()
 获取当前元素在界面树上的下一个节点,若已是最后一个节点则返回根节点
 
+UIElementGetNextTabStopElement ()
 获取下一个TabStop属性为true的元素
 
+Color GetRealBackColor ()
 获取当前要显示的背景颜色:当Transparent为true时获取到祖先节点中首个Transparent为false的背景颜色,否则返回当前元素的背景颜色
 
+Color GetRealTextColor ()
 获取当前要显示的文本颜色:当InheritTextColor为true时获取到祖先节点中首个InheritTextColor为false的文本颜色,否则返回当前元素的文本颜色
 
void SetCursor (HCURSOR hCursor)
 设置鼠标样式
 
void SetCursor (StandardCursor cursor)
 设置鼠标样式
 
+void ResetCursor ()
 将鼠标样式设置为默认样式
 
void SetAlignment (sw::HorizontalAlignment horz, sw::VerticalAlignment vert)
 设置对齐方式
 
virtual uint64_t GetTag () override
 获取Tag
 
virtual void SetTag (uint64_t tag) override
 设置Tag
 
virtual uint64_t GetLayoutTag () override
 获取布局标记
 
virtual int GetChildLayoutCount () override
 获取参与布局的子控件数量
 
virtual ILayoutGetChildLayoutAt (int index) override
 获取对应索引处的子控件,使用此函数前必须先调用GetChildLayoutCount
 
virtual Size GetDesireSize () override
 获取控件所需尺寸
 
virtual void SetDesireSize (const Size &size) override
 设置当前控件所需的尺寸
 
virtual void Measure (const Size &availableSize) override
 测量控件所需尺寸
 
virtual void Arrange (const sw::Rect &finalPosition) override
 安排控件位置
 
- Public 成员函数 继承自 sw::WndBase
+virtual ~WndBase ()=0
 析构函数,这里用纯虚函数使该类成为抽象类
 
+void Show (int nCmdShow)
 该函数调用ShowWindow
 
+void Close ()
 发送关闭消息
 
+void Update ()
 该函数调用UpdateWindow
 
+void UpdateFont ()
 更新字体
 
+HFONT GetFontHandle ()
 获取字体句柄
 
void Redraw (bool erase=false)
 重画
 
+bool IsControl ()
 判断当前对象是否是控件
 
+bool IsVisible ()
 判断当前对象在界面中是否可视,与Visible属性不同的是该函数返回值会受父窗口的影响
 
+LONG_PTR GetStyle ()
 获取窗口样式
 
+void SetStyle (LONG_PTR style)
 设置窗口样式
 
bool GetStyle (LONG_PTR mask)
 判断窗口是否设有指定样式
 
void SetStyle (LONG_PTR mask, bool value)
 打开或关闭指定的样式
 
+LONG_PTR GetExtendedStyle ()
 获取扩展窗口样式
 
+void SetExtendedStyle (LONG_PTR style)
 设置扩展窗口样式
 
bool GetExtendedStyle (LONG_PTR mask)
 判断窗口是否设有指定扩展样式
 
void SetExtendedStyle (LONG_PTR mask, bool value)
 打开或关闭指定的扩展样式
 
Point PointToScreen (const Point &point)
 获取用户区点在屏幕上点的位置
 
Point PointFromScreen (const Point &screenPoint)
 获取屏幕上点在当前用户区点的位置
 
+LRESULT SendMessageA (UINT uMsg, WPARAM wParam, LPARAM lParam)
 发送消息(ASCII)
 
+LRESULT SendMessageW (UINT uMsg, WPARAM wParam, LPARAM lParam)
 发送消息(UNICODE)
 
HitTestResult NcHitTest (const Point &testPoint)
 测试指定点在窗口的哪一部分
 
- 静态 Public 成员函数 继承自 sw::WndBase
static WndBaseGetWndBase (HWND hwnd)
 通过窗口句柄获取WndBase
 
- Public 属性 继承自 sw::StaticControl
+const Property< boolNotify
 获取或设置控件的SS_NOTIFY样式
 
- Public 属性 继承自 sw::UIElement
+const Property< ThicknessMargin
 边距
 
+const Property< HorizontalAlignment > HorizontalAlignment
 水平对齐方式
 
+const Property< VerticalAlignment > VerticalAlignment
 垂直对齐方式
 
+const ReadOnlyProperty< intChildCount
 子控件数量
 
+const Property< boolCollapseWhenHide
 是否在不可见时不参与布局
 
+const ReadOnlyProperty< UIElement * > Parent
 指向父元素的指针,当前元素为顶级窗口时该值为nullptr
 
+const Property< uint64_tTag
 储存用户自定义信息的标记
 
+const Property< uint64_tLayoutTag
 布局标记,对于不同的布局有不同含义
 
+const Property< sw::ContextMenu * > ContextMenu
 右键按下时弹出的菜单
 
+const Property< boolFloat
 元素是否悬浮,若元素悬浮则该元素不会随滚动条滚动而改变位置
 
+const Property< boolTabStop
 表示用户是否可以通过按下Tab键将焦点移动到当前元素
 
+const Property< ColorBackColor
 背景颜色,修改该属性会同时将Transparent属性设为false,对于部分控件该属性可能不生效
 
+const Property< ColorTextColor
 文本颜色,修改该属性会同时将InheritTextColor属性设为false,对于部分控件该属性可能不生效
 
+const Property< boolTransparent
 是否使用透明背景(此属性并非真正意义上的透明,将该属性设为true可继承父元素的背景颜色)
 
+const Property< boolInheritTextColor
 是否继承父元素的文本颜色
 
- Public 属性 继承自 sw::WndBase
+const ReadOnlyProperty< HWNDHandle
 窗口句柄
 
+const Property< sw::FontFont
 字体
 
+const Property< std::wstring > FontName
 字体名称
 
+const Property< doubleFontSize
 字体大小
 
+const Property< sw::FontWeight > FontWeight
 字体粗细
 
+const Property< sw::RectRect
 位置和尺寸
 
+const Property< doubleLeft
 左边
 
+const Property< doubleTop
 顶边
 
+const Property< doubleWidth
 宽度
 
+const Property< doubleHeight
 高度
 
+const ReadOnlyProperty< sw::RectClientRect
 用户区尺寸
 
+const ReadOnlyProperty< doubleClientWidth
 用户区宽度
 
+const ReadOnlyProperty< doubleClientHeight
 用户区高度
 
+const Property< boolEnabled
 窗口或控件是否可用
 
+const Property< boolVisible
 窗口或控件是否可见
 
+const Property< std::wstring > Text
 窗口标题或控件文本
 
+const Property< boolFocused
 窗口是否拥有焦点
 
+const ReadOnlyProperty< WndBase * > Parent
 父窗口
 
+const ReadOnlyProperty< boolIsDestroyed
 是否已销毁,当该值为true时不应该继续使用当前对象
 
+

详细描述

+

将Win32 window托管为SimpleWindow控件

+

成员函数说明

+ +

◆ BuildWindowCore()

+ +
+
+ + + + + +
+ + + + + + + +
virtual HWND sw::HwndHost::BuildWindowCore (HWND hParent)
+
+protectedpure virtual
+
+ +

HwndHost创建时会调用该函数,需在该函数中创建要被托管的窗口句柄,设置其父窗口并返回被托管的句柄

+
参数
+ + +
hParent需要给被托管窗口句柄设置的父窗口句柄
+
+
+
返回
被托管窗口句柄
+ +
+
+ +

◆ DestroyWindowCore()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void sw::HwndHost::DestroyWindowCore (HWND hwnd)
+
+protectedpure virtual
+
+ +

HwndHost被销毁时会调用该函数来销毁被托管的窗口句柄

+
参数
+ + +
hwnd被托管窗口句柄
+
+
+ +
+
+ +

◆ OnDestroy()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool sw::HwndHost::OnDestroy ()
+
+overrideprotectedvirtual
+
+ +

接收到WM_DESTROY时调用该函数

+
返回
若已处理该消息则返回true,否则返回false以调用DefaultWndProc
+ +

重载 sw::WndBase .

+ +
+
+ +

◆ OnSize()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool sw::HwndHost::OnSize (Size newClientSize)
+
+overrideprotectedvirtual
+
+ +

接收到WM_SIZE时调用该函数

+
参数
+ + +
newClientSize改变后的用户区尺寸
+
+
+
返回
若已处理该消息则返回true,否则返回false以调用DefaultWndProc
+ +

重载 sw::UIElement .

+ +
+
+
该类的文档由以下文件生成: +
+
+ + + + diff --git a/docs/classsw_1_1_hwnd_host.js b/docs/classsw_1_1_hwnd_host.js new file mode 100644 index 00000000..9aac60c4 --- /dev/null +++ b/docs/classsw_1_1_hwnd_host.js @@ -0,0 +1,8 @@ +var classsw_1_1_hwnd_host = +[ + [ "BuildWindowCore", "classsw_1_1_hwnd_host.html#a9ac22adfa9d96348e7f89932d82cf3d3", null ], + [ "DestroyWindowCore", "classsw_1_1_hwnd_host.html#af644778e078302b01faf0ac2f5c7b75c", null ], + [ "InitHwndHost", "classsw_1_1_hwnd_host.html#aebdcab5949f812ae64ecd79633cacc49", null ], + [ "OnDestroy", "classsw_1_1_hwnd_host.html#a9535b63e17fbb079ce4f618c288cb9bd", null ], + [ "OnSize", "classsw_1_1_hwnd_host.html#a811a6d21dd8534addfc401bb79f829f7", null ] +]; \ No newline at end of file diff --git a/docs/classsw_1_1_hwnd_host.png b/docs/classsw_1_1_hwnd_host.png new file mode 100644 index 0000000000000000000000000000000000000000..daedb79270f00d67817262d06f0499d3a16f908b GIT binary patch literal 2031 zcmbVNc~BE~7~Oz~*jkG^)k+nQC`Bk*TQ0$+RSv_ESPpH1932nFMnSGc_2!R|V>0+mj9otT)`^WD4?VE4r+xLC% z?b+SwX!YuRA|Yj|x zq%H-1^T8pLin|FH%a5Vs_rujhM!ZHb>u(u9i^zNeW@xig_O6O(FIgq4@DFMYAwea&Jb{unkiza>)!kB z)y&9hIh;RFf5E=FZg%v7#vyS~!-Fzu+YUfBk50_Lo%ILw!ELvB<_H6zVrg>-WTQVr z0Gu@r^7SAFYIVt_>*qZuSJT@E=L54bmMI0`vGK3mzZU*MLbyxSGL>!rN#mWVJ2~}s zJUj8oog&07V^6N%?&@x$IxXiSIYW9+>9;CQM%mf7NL)iLzX{);P8rgUPh=Uh@4eGY z6vm6MQ1OqZ)QTd`*Pm$%jrq5noqJOu(L*j$xa~Z`X5|E2r{PWea$|1@CF);42}?N~ zI_WxUiuX(LpO^IpA6I29IARpaQr^IzWdUy9YT3z9={5;J$1^^$C4&6vB69yw@@fegybD0~P>pp@OyzI$i-h=0H?Z zp3QgY#9VH^GO_^s%t!6f%Cry^K%es2K;af78ed52QN5 zWy~}?03&au7r@#d~4sxiy zs&6xh5fD|~%*p+|YE}1I+2B(7uI!xTif%E;x@7;2rhdpIZTW5}OtN~Ro+M+LA~qy+ zK4?@mV9lH6BKt+RXr?&AjG^^^3f`x8FJro)t7yL(z%=ie3lsl!%bJ7cz|-@)fu(4A zV7>m59{)?ie+;E&-#Bq53pi$bn?!ER)mPT-an=yYRiL6qM54APRn-~KATdGO1`)~I z|0_hTHfr960olQ(u?{3$mA;B*dHpmZbAku9`qLWgkzeqtDqYX{&EAKsovk{2Rh^+< zl%zT!t!arNi=p0Y_13M{lw!3#9NQ5BH<;`Fv7nggEX-D?ucQrrVBlAX`pi8KFTdv- zfVovXY?4ac;Dnx;QC!CiiEOrexhE1?=Lpw{o~{SURXrh)h*Uv;-aJ<$$&5R02Q1eH Y4EGP%(%>~==&u>T1>pm$cO;(r9e+(5761SM literal 0 HcmV?d00001 diff --git a/docs/classsw_1_1_read_only_property.html b/docs/classsw_1_1_read_only_property.html index 1a83f3f2..abb527f7 100644 --- a/docs/classsw_1_1_read_only_property.html +++ b/docs/classsw_1_1_read_only_property.html @@ -123,21 +123,22 @@ sw::Property< wchar_t > sw::Property< uint16_t > sw::Property< ProgressBarState > -sw::Property< sw::Orientation > -sw::Property< TabAlignment > -sw::Property< sw::Thickness > -sw::Property< HorizontalAlignment > -sw::Property< VerticalAlignment > -sw::Property< uint64_t > -sw::Property< sw::ContextMenu * > -sw::Property< sw::Color > -sw::Property< WindowStartupLocation > -sw::Property< WindowState > -sw::Property< sw::Menu * > -sw::Property< sw::Font > -sw::Property< sw::FontWeight > -sw::Property< sw::Rect > -sw::Property< T > +sw::Property< Orientation > +sw::Property< sw::Orientation > +sw::Property< TabAlignment > +sw::Property< sw::Thickness > +sw::Property< HorizontalAlignment > +sw::Property< VerticalAlignment > +sw::Property< uint64_t > +sw::Property< sw::ContextMenu * > +sw::Property< sw::Color > +sw::Property< WindowStartupLocation > +sw::Property< WindowState > +sw::Property< sw::Menu * > +sw::Property< sw::Font > +sw::Property< sw::FontWeight > +sw::Property< sw::Rect > +sw::Property< T >
diff --git a/docs/classsw_1_1_read_only_property.png b/docs/classsw_1_1_read_only_property.png index e934adfb71821b4ce224ef5d797987a84e405bc5..b5aa852b5fad435f30db7f3984beb0371c17f27f 100644 GIT binary patch literal 15331 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

RBsi=#B(5yN@3{;ka`CHGJs1-+~ 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 + + + + + + +SimpleWindow: 成员列表 + + + + + + + + + + + + + + + +

+
+
+ + + + + +
+
SimpleWindow +
+
+ + + + + + + + + +
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
载入中...
+
搜索中...
+
未找到
+
+
+
+
+ +
+
sw::Splitter 成员列表
+
+
+ +

成员的完整列表,这些成员属于 sw::Splitter,包括所有继承而来的类成员

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AddChild(UIElement *element)sw::UIElement
AddChild(UIElement &element)sw::UIElement
AddChild(UIElement *element, uint64_t layoutTag)sw::UIElement
AddChild(UIElement &element, uint64_t layoutTag)sw::UIElement
Arrange(const sw::Rect &finalPosition) overridesw::UIElementvirtual
BackColorsw::UIElement
ChildCountsw::UIElement
ClearChildren()sw::UIElement
ClientHeightsw::WndBase
ClientRectsw::WndBase
ClientWidthsw::WndBase
Close()sw::WndBase
CollapseWhenHidesw::UIElement
ContextMenusw::UIElement
Control()sw::Controlprotected
DefaultWndProc(const ProcMsg &refMsg)sw::WndBaseprotected
Enabledsw::WndBase
Floatsw::UIElement
Focusedsw::WndBase
Fontsw::WndBase
FontChanged(HFONT hfont)sw::WndBaseprotectedvirtual
FontNamesw::WndBase
FontSizesw::WndBase
FontWeightsw::WndBase
GetArrangeOffsetX()sw::UIElementprotected
GetArrangeOffsetY()sw::UIElementprotected
GetChildBottommost(bool update)sw::UIElementprotected
GetChildLayoutAt(int index) overridesw::UIElementvirtual
GetChildLayoutCount() overridesw::UIElementvirtual
GetChildRightmost(bool update)sw::UIElementprotected
GetDesireSize() overridesw::UIElementvirtual
GetExtendedStyle()sw::WndBase
GetExtendedStyle(LONG_PTR mask)sw::WndBase
GetFontHandle()sw::WndBase
GetLayoutTag() overridesw::UIElementvirtual
GetNextElement()sw::UIElement
GetNextTabStopElement()sw::UIElement
GetRealBackColor()sw::UIElement
GetRealTextColor()sw::UIElement
GetRootElement()sw::UIElement
GetStyle()sw::WndBase
GetStyle(LONG_PTR mask)sw::WndBase
GetTag() overridesw::UIElementvirtual
GetText()sw::WndBaseprotectedvirtual
GetWndBase(HWND hwnd)sw::WndBasestatic
Handlesw::WndBase
HandleChenged()sw::Controlprotectedvirtual
HandleInitialized(HWND hwnd)sw::WndBaseprotectedvirtual
Heightsw::WndBase
HorizontalAlignmentsw::UIElement
IndexOf(UIElement *element)sw::UIElement
IndexOf(UIElement &element)sw::UIElement
InheritTextColorsw::UIElement
InitControl(LPCWSTR lpClassName, LPCWSTR lpWindowName, DWORD dwStyle, DWORD dwExStyle)sw::WndBaseprotected
InitWindow(LPCWSTR lpWindowName, DWORD dwStyle, DWORD dwExStyle)sw::WndBaseprotected
IsControl()sw::WndBase
IsDestroyedsw::WndBase
IsRootElement()sw::UIElement
IsRoutedEventRegistered(RoutedEventType eventType)sw::UIElement
IsVisible()sw::WndBase
LayoutTagsw::UIElement
Leftsw::WndBase
Marginsw::UIElement
Measure(const Size &availableSize) overridesw::UIElementvirtual
MoveToBottom()sw::UIElement
MoveToTop()sw::UIElement
NcHitTest(const Point &testPoint)sw::WndBase
Notifysw::StaticControl
NotifyLayoutUpdated()sw::UIElementprotected
OnAcceleratorCommand(int id)sw::WndBaseprotectedvirtual
OnAddedChild(UIElement &element)sw::UIElementprotectedvirtual
OnChar(wchar_t ch, KeyFlags flags) overridesw::UIElementprotectedvirtual
OnClose() overridesw::UIElementprotectedvirtual
OnColor(HDC hdc, HBRUSH &hRetBrush) overridesw::UIElementprotectedvirtual
OnCommand(int code)sw::WndBaseprotectedvirtual
OnContextMenu(bool isKeyboardMsg, Point mousePosition) overridesw::UIElementprotectedvirtual
OnControlCommand(WndBase *pControl, int code, int id)sw::WndBaseprotectedvirtual
OnCreate()sw::WndBaseprotectedvirtual
OnCtlColor(WndBase *pControl, HDC hdc, HBRUSH &hRetBrush)sw::WndBaseprotectedvirtual
OnDeadChar(wchar_t ch, KeyFlags flags)sw::WndBaseprotectedvirtual
OnDestroy()sw::WndBaseprotectedvirtual
OnDrawFocusRect()sw::UIElementprotectedvirtual
OnDrawItem(int id, DRAWITEMSTRUCT *pDrawItem)sw::WndBaseprotectedvirtual
OnEnabledChanged(bool newValue)sw::WndBaseprotectedvirtual
OnEndPaint() overridesw::UIElementprotectedvirtual
OnEraseBackground(int &result)sw::WndBaseprotectedvirtual
OnHorizontalScroll(int event, int pos)sw::WndBaseprotectedvirtual
OnKeyDown(VirtualKey key, KeyFlags flags) overridesw::UIElementprotectedvirtual
OnKeyUp(VirtualKey key, KeyFlags flags) overridesw::UIElementprotectedvirtual
OnKillFocus(HWND hNextFocus) overridesw::UIElementprotectedvirtual
OnMenuCommand(int id) overridesw::UIElementprotectedvirtual
OnMouseLeave() overridesw::UIElementprotectedvirtual
OnMouseLeftButtonDoubleClick(Point mousePosition, MouseKey keyState)sw::WndBaseprotectedvirtual
OnMouseLeftButtonDown(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseLeftButtonUp(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseMiddleButtonDoubleClick(Point mousePosition, MouseKey keyState)sw::WndBaseprotectedvirtual
OnMouseMiddleButtonDown(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseMiddleButtonUp(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseMove(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseRightButtonDoubleClick(Point mousePosition, MouseKey keyState)sw::WndBaseprotectedvirtual
OnMouseRightButtonDown(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseRightButtonUp(Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMouseWheel(int wheelDelta, Point mousePosition, MouseKey keyState) overridesw::UIElementprotectedvirtual
OnMove(Point newClientPosition) overridesw::UIElementprotectedvirtual
OnNcHitTest(const Point &testPoint, HitTestResult &result)sw::WndBaseprotectedvirtual
OnNotified(NMHDR *pNMHDR)sw::WndBaseprotectedvirtual
OnNotify(NMHDR *pNMHDR)sw::WndBaseprotectedvirtual
OnPaint() overridesw::Splitterprotectedvirtual
OnRemovedChild(UIElement &element)sw::UIElementprotectedvirtual
OnSetCursor(HWND hwnd, HitTestResult hitTest, int message, bool &result) overridesw::UIElementprotectedvirtual
OnSetFocus(HWND hPrevFocus) overridesw::UIElementprotectedvirtual
OnSize(Size newClientSize) overridesw::Splitterprotectedvirtual
OnSysChar(wchar_t ch, KeyFlags flags)sw::WndBaseprotectedvirtual
OnSysDeadChar(wchar_t ch, KeyFlags flags)sw::WndBaseprotectedvirtual
OnSysKeyDown(VirtualKey key, KeyFlags flags)sw::WndBaseprotectedvirtual
OnSysKeyUp(VirtualKey key, KeyFlags flags)sw::WndBaseprotectedvirtual
OnTabStop()sw::UIElementprotectedvirtual
OnTextChanged() overridesw::UIElementprotectedvirtual
OnVerticalScroll(int event, int pos)sw::WndBaseprotectedvirtual
operator=(const WndBase &)=delete (定义于 sw::WndBase)sw::WndBaseprotected
operator=(WndBase &&)=delete (定义于 sw::WndBase)sw::WndBaseprotected
operator[](int index) constsw::UIElement
Orientationsw::Splitter
Parentsw::UIElement
ParentChanged(WndBase *newParent) overridesw::UIElementprotectedvirtual
PointFromScreen(const Point &screenPoint)sw::WndBase
PointToScreen(const Point &point)sw::WndBase
RaiseRoutedEvent(RoutedEventType eventType)sw::UIElementprotected
RaiseRoutedEvent(RoutedEventArgs &eventArgs)sw::UIElementprotected
Rectsw::WndBase
Redraw(bool erase=false)sw::WndBase
RegisterRoutedEvent(RoutedEventType eventType, const RoutedEvent &handler)sw::UIElement
RegisterRoutedEvent(RoutedEventType eventType, T &obj, void(T::*handler)(UIElement &, RoutedEventArgs &))sw::UIElementinline
RegisterRoutedEvent(std::function< void(UIElement &, TEventArgs &)> handler)sw::UIElementinline
RegisterRoutedEvent(THandleObj &obj, void(THandleObj::*handler)(UIElement &, TEventArgs &))sw::UIElementinline
RemoveChild(UIElement *element)sw::UIElement
RemoveChild(UIElement &element)sw::UIElement
RemoveChildAt(int index)sw::UIElement
ResetCursor()sw::UIElement
ResetHandle()sw::Controlprotected
SendMessageA(UINT uMsg, WPARAM wParam, LPARAM lParam)sw::WndBase
SendMessageW(UINT uMsg, WPARAM wParam, LPARAM lParam)sw::WndBase
SetAlignment(sw::HorizontalAlignment horz, sw::VerticalAlignment vert)sw::UIElement
SetBackColor(Color color, bool redraw)sw::UIElementprotectedvirtual
SetCursor(HCURSOR hCursor)sw::UIElement
SetCursor(StandardCursor cursor)sw::UIElement
SetDesireSize(const Size &size) overridesw::UIElementvirtual
SetExtendedStyle(LONG_PTR style)sw::WndBase
SetExtendedStyle(LONG_PTR mask, bool value)sw::WndBase
SetNextTabStopFocus()sw::UIElementprotected
SetParent(WndBase *parent) overridesw::UIElementprotectedvirtual
SetStyle(LONG_PTR style)sw::WndBase
SetStyle(LONG_PTR mask, bool value)sw::WndBase
SetTag(uint64_t tag) overridesw::UIElementvirtual
SetText(const std::wstring &value)sw::WndBaseprotectedvirtual
SetTextColor(Color color, bool redraw)sw::UIElementprotectedvirtual
Show(int nCmdShow)sw::WndBase
ShowContextMenu(const Point &point)sw::UIElement
Splitter()sw::Splitter
StaticControl()sw::StaticControl
TabStopsw::UIElement
Tagsw::UIElement
Textsw::WndBase
TextColorsw::UIElement
Topsw::WndBase
Transparentsw::UIElement
UIElement()sw::UIElementprotected
UnregisterRoutedEvent(RoutedEventType eventType)sw::UIElement
Update()sw::WndBase
UpdateChildrenZOrder()sw::UIElementprotected
UpdateFont()sw::WndBase
UpdateSiblingsZOrder()sw::UIElementprotected
UpdateText()sw::WndBaseprotected
VerticalAlignmentsw::UIElement
Visiblesw::WndBase
VisibleChanged(bool newVisible) overridesw::UIElementprotectedvirtual
Widthsw::WndBase
WndBase()sw::WndBaseprotected
WndBase(const WndBase &)=delete (定义于 sw::WndBase)sw::WndBaseprotected
WndBase(WndBase &&)=delete (定义于 sw::WndBase)sw::WndBaseprotected
WndProc(const ProcMsg &refMsg)sw::WndBaseprotectedvirtual
~Control()=0sw::Controlpure virtual
~UIElement()=0sw::UIElementpure virtual
~WndBase()=0sw::WndBasepure virtual
+
+ + + + diff --git a/docs/classsw_1_1_splitter.html b/docs/classsw_1_1_splitter.html new file mode 100644 index 00000000..138274ec --- /dev/null +++ b/docs/classsw_1_1_splitter.html @@ -0,0 +1,866 @@ + + + + + + + +SimpleWindow: sw::Splitter类 参考 + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
SimpleWindow +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
载入中...
+
搜索中...
+
未找到
+
+
+
+
+ + +
+ +

分隔条 + 更多...

+ +

#include <Splitter.h>

+
+类 sw::Splitter 继承关系图:
+
+
+ + +sw::StaticControl +sw::Control +sw::UIElement +sw::WndBase +sw::ILayout +sw::ITag + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public 成员函数

Splitter ()
 初始化分隔条
 
- Public 成员函数 继承自 sw::StaticControl
StaticControl ()
 初始化静态控件
 
- Public 成员函数 继承自 sw::Control
+virtual ~Control ()=0
 析构函数,这里用纯虚函数使该类成为抽象类
 
- Public 成员函数 继承自 sw::UIElement
+virtual ~UIElement ()=0
 析构函数,这里用纯虚函数使该类成为抽象类
 
void RegisterRoutedEvent (RoutedEventType eventType, const RoutedEvent &handler)
 注册路由事件处理函数,当事件已注册时会覆盖已注册的函数
 
template<typename T >
void RegisterRoutedEvent (RoutedEventType eventType, T &obj, void(T::*handler)(UIElement &, RoutedEventArgs &))
 注册成员函数作为路由事件处理函数,当事件已注册时会覆盖已注册的函数
 
template<typename TEventArgs , typename std::enable_if< std::is_base_of< RoutedEventArgs, TEventArgs >::value, int >::type = 0, typename std::enable_if< sw::_IsTypedRoutedEventArgs< TEventArgs >::value, int >::type = 0>
void RegisterRoutedEvent (std::function< void(UIElement &, TEventArgs &)> handler)
 根据事件参数类型注册路由事件
 
template<typename TEventArgs , typename THandleObj , typename std::enable_if< std::is_base_of< RoutedEventArgs, TEventArgs >::value, int >::type = 0, typename std::enable_if< sw::_IsTypedRoutedEventArgs< TEventArgs >::value, int >::type = 0>
void RegisterRoutedEvent (THandleObj &obj, void(THandleObj::*handler)(UIElement &, TEventArgs &))
 根据事件参数类型注册成员函数作为路由事件
 
void UnregisterRoutedEvent (RoutedEventType eventType)
 取消对应类型路由事件的注册
 
bool IsRoutedEventRegistered (RoutedEventType eventType)
 判断路由事件是否已被注册
 
bool AddChild (UIElement *element)
 添加子控件
 
bool AddChild (UIElement &element)
 添加子控件
 
bool AddChild (UIElement *element, uint64_t layoutTag)
 添加子控件并设置布局标记
 
bool AddChild (UIElement &element, uint64_t layoutTag)
 添加子控件并设置布局标记
 
bool RemoveChildAt (int index)
 移除指定索引处的子控件
 
bool RemoveChild (UIElement *element)
 移除子控件
 
bool RemoveChild (UIElement &element)
 移除子控件
 
+void ClearChildren ()
 移除所有子控件
 
int IndexOf (UIElement *element)
 获取指定元素的索引
 
int IndexOf (UIElement &element)
 获取指定元素的索引
 
+UIElementoperator[] (int index) const
 通过索引获取子控件
 
void ShowContextMenu (const Point &point)
 弹出当前元素的上下文菜单
 
+void MoveToTop ()
 移动到界面顶部
 
+void MoveToBottom ()
 移动到界面底部
 
+bool IsRootElement ()
 判断当前元素是否为根节点
 
+UIElementGetRootElement ()
 获取当前元素所在界面树的根节点
 
+UIElementGetNextElement ()
 获取当前元素在界面树上的下一个节点,若已是最后一个节点则返回根节点
 
+UIElementGetNextTabStopElement ()
 获取下一个TabStop属性为true的元素
 
+Color GetRealBackColor ()
 获取当前要显示的背景颜色:当Transparent为true时获取到祖先节点中首个Transparent为false的背景颜色,否则返回当前元素的背景颜色
 
+Color GetRealTextColor ()
 获取当前要显示的文本颜色:当InheritTextColor为true时获取到祖先节点中首个InheritTextColor为false的文本颜色,否则返回当前元素的文本颜色
 
void SetCursor (HCURSOR hCursor)
 设置鼠标样式
 
void SetCursor (StandardCursor cursor)
 设置鼠标样式
 
+void ResetCursor ()
 将鼠标样式设置为默认样式
 
void SetAlignment (sw::HorizontalAlignment horz, sw::VerticalAlignment vert)
 设置对齐方式
 
virtual uint64_t GetTag () override
 获取Tag
 
virtual void SetTag (uint64_t tag) override
 设置Tag
 
virtual uint64_t GetLayoutTag () override
 获取布局标记
 
virtual int GetChildLayoutCount () override
 获取参与布局的子控件数量
 
virtual ILayoutGetChildLayoutAt (int index) override
 获取对应索引处的子控件,使用此函数前必须先调用GetChildLayoutCount
 
virtual Size GetDesireSize () override
 获取控件所需尺寸
 
virtual void SetDesireSize (const Size &size) override
 设置当前控件所需的尺寸
 
virtual void Measure (const Size &availableSize) override
 测量控件所需尺寸
 
virtual void Arrange (const sw::Rect &finalPosition) override
 安排控件位置
 
- Public 成员函数 继承自 sw::WndBase
+virtual ~WndBase ()=0
 析构函数,这里用纯虚函数使该类成为抽象类
 
+void Show (int nCmdShow)
 该函数调用ShowWindow
 
+void Close ()
 发送关闭消息
 
+void Update ()
 该函数调用UpdateWindow
 
+void UpdateFont ()
 更新字体
 
+HFONT GetFontHandle ()
 获取字体句柄
 
void Redraw (bool erase=false)
 重画
 
+bool IsControl ()
 判断当前对象是否是控件
 
+bool IsVisible ()
 判断当前对象在界面中是否可视,与Visible属性不同的是该函数返回值会受父窗口的影响
 
+LONG_PTR GetStyle ()
 获取窗口样式
 
+void SetStyle (LONG_PTR style)
 设置窗口样式
 
bool GetStyle (LONG_PTR mask)
 判断窗口是否设有指定样式
 
void SetStyle (LONG_PTR mask, bool value)
 打开或关闭指定的样式
 
+LONG_PTR GetExtendedStyle ()
 获取扩展窗口样式
 
+void SetExtendedStyle (LONG_PTR style)
 设置扩展窗口样式
 
bool GetExtendedStyle (LONG_PTR mask)
 判断窗口是否设有指定扩展样式
 
void SetExtendedStyle (LONG_PTR mask, bool value)
 打开或关闭指定的扩展样式
 
Point PointToScreen (const Point &point)
 获取用户区点在屏幕上点的位置
 
Point PointFromScreen (const Point &screenPoint)
 获取屏幕上点在当前用户区点的位置
 
+LRESULT SendMessageA (UINT uMsg, WPARAM wParam, LPARAM lParam)
 发送消息(ASCII)
 
+LRESULT SendMessageW (UINT uMsg, WPARAM wParam, LPARAM lParam)
 发送消息(UNICODE)
 
HitTestResult NcHitTest (const Point &testPoint)
 测试指定点在窗口的哪一部分
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public 属性

+const Property< Orientation > Orientation
 分隔条的方向,给该属性赋值同时会改变HorizontalAlignment和VerticalAlignment属性的值
 
- Public 属性 继承自 sw::StaticControl
+const Property< boolNotify
 获取或设置控件的SS_NOTIFY样式
 
- Public 属性 继承自 sw::UIElement
+const Property< ThicknessMargin
 边距
 
+const Property< HorizontalAlignment > HorizontalAlignment
 水平对齐方式
 
+const Property< VerticalAlignment > VerticalAlignment
 垂直对齐方式
 
+const ReadOnlyProperty< intChildCount
 子控件数量
 
+const Property< boolCollapseWhenHide
 是否在不可见时不参与布局
 
+const ReadOnlyProperty< UIElement * > Parent
 指向父元素的指针,当前元素为顶级窗口时该值为nullptr
 
+const Property< uint64_tTag
 储存用户自定义信息的标记
 
+const Property< uint64_tLayoutTag
 布局标记,对于不同的布局有不同含义
 
+const Property< sw::ContextMenu * > ContextMenu
 右键按下时弹出的菜单
 
+const Property< boolFloat
 元素是否悬浮,若元素悬浮则该元素不会随滚动条滚动而改变位置
 
+const Property< boolTabStop
 表示用户是否可以通过按下Tab键将焦点移动到当前元素
 
+const Property< ColorBackColor
 背景颜色,修改该属性会同时将Transparent属性设为false,对于部分控件该属性可能不生效
 
+const Property< ColorTextColor
 文本颜色,修改该属性会同时将InheritTextColor属性设为false,对于部分控件该属性可能不生效
 
+const Property< boolTransparent
 是否使用透明背景(此属性并非真正意义上的透明,将该属性设为true可继承父元素的背景颜色)
 
+const Property< boolInheritTextColor
 是否继承父元素的文本颜色
 
- Public 属性 继承自 sw::WndBase
+const ReadOnlyProperty< HWNDHandle
 窗口句柄
 
+const Property< sw::FontFont
 字体
 
+const Property< std::wstring > FontName
 字体名称
 
+const Property< doubleFontSize
 字体大小
 
+const Property< sw::FontWeight > FontWeight
 字体粗细
 
+const Property< sw::RectRect
 位置和尺寸
 
+const Property< doubleLeft
 左边
 
+const Property< doubleTop
 顶边
 
+const Property< doubleWidth
 宽度
 
+const Property< doubleHeight
 高度
 
+const ReadOnlyProperty< sw::RectClientRect
 用户区尺寸
 
+const ReadOnlyProperty< doubleClientWidth
 用户区宽度
 
+const ReadOnlyProperty< doubleClientHeight
 用户区高度
 
+const Property< boolEnabled
 窗口或控件是否可用
 
+const Property< boolVisible
 窗口或控件是否可见
 
+const Property< std::wstring > Text
 窗口标题或控件文本
 
+const Property< boolFocused
 窗口是否拥有焦点
 
+const ReadOnlyProperty< WndBase * > Parent
 父窗口
 
+const ReadOnlyProperty< boolIsDestroyed
 是否已销毁,当该值为true时不应该继续使用当前对象
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Protected 成员函数

virtual bool OnPaint () override
 接收到WM_PAINT时调用该函数
 
virtual bool OnSize (Size newClientSize) override
 接收到WM_SIZE时调用该函数
 
- Protected 成员函数 继承自 sw::Control
Control ()
 初始化控件
 
+void ResetHandle ()
 销毁控件句柄并重新初始化,该操作会创建新的句柄并设置样式、文本、字体等
 
+virtual void HandleChenged ()
 控件句柄发生改变时调用该函数
 
- Protected 成员函数 继承自 sw::UIElement
UIElement ()
 初始化UIElement
 
void RaiseRoutedEvent (RoutedEventType eventType)
 触发路由事件
 
void RaiseRoutedEvent (RoutedEventArgs &eventArgs)
 触发路由事件
 
+void NotifyLayoutUpdated ()
 通知顶级窗口布局改变
 
+doubleGetArrangeOffsetX ()
 获取Arrange时子元素的水平偏移量
 
+doubleGetArrangeOffsetY ()
 获取Arrange时子元素的垂直偏移量
 
double GetChildRightmost (bool update)
 获取所有子元素在当前元素中最右边的位置(只考虑参与布局的子窗口且忽略悬浮的元素)
 
double GetChildBottommost (bool update)
 获取所有子元素在当前元素中最底边的位置(只考虑参与布局的子窗口且忽略悬浮的元素)
 
+void UpdateChildrenZOrder ()
 更新子元素的Z轴位置
 
+void UpdateSiblingsZOrder ()
 更新兄弟元素的Z轴位置
 
+void SetNextTabStopFocus ()
 设置下一个TabStop属性为true的元素为焦点元素
 
virtual void SetBackColor (Color color, bool redraw)
 设置背景颜色
 
virtual void SetTextColor (Color color, bool redraw)
 设置文本颜色
 
virtual void OnAddedChild (UIElement &element)
 添加子元素后调用该函数
 
virtual void OnRemovedChild (UIElement &element)
 移除子元素后调用该函数
 
+virtual void OnTabStop ()
 通过tab键将焦点移动到当前元素时调用该函数
 
virtual void OnDrawFocusRect ()
 绘制虚线框时调用该函数
 
virtual bool SetParent (WndBase *parent) override
 设置父窗口
 
virtual void ParentChanged (WndBase *newParent) override
 父窗口改变时调用此函数
 
virtual void OnEndPaint () override
 在OnPaint函数完成之后调用该函数
 
virtual bool OnClose () override
 接收到WM_CLOSE时调用该函数
 
virtual bool OnMove (Point newClientPosition) override
 接收到WM_MOVE时调用该函数
 
virtual void OnTextChanged () override
 Text属性更改时调用此函数
 
virtual void VisibleChanged (bool newVisible) override
 Visible属性改变时调用此函数
 
virtual bool OnSetFocus (HWND hPrevFocus) override
 接收到WM_SETFOCUS时调用该函数
 
virtual bool OnKillFocus (HWND hNextFocus) override
 接收到WM_KILLFOCUS时调用该函数
 
virtual bool OnChar (wchar_t ch, KeyFlags flags) override
 接收到WM_CHAR时调用该函数
 
virtual bool OnKeyDown (VirtualKey key, KeyFlags flags) override
 接收到WM_KEYDOWN时调用该函数
 
virtual bool OnKeyUp (VirtualKey key, KeyFlags flags) override
 接收到WM_KEYUP时调用该函数
 
virtual bool OnMouseMove (Point mousePosition, MouseKey keyState) override
 接收到WM_MOUSEMOVE时调用该函数
 
virtual bool OnMouseLeave () override
 接收到WM_MOUSELEAVE时调用该函数
 
virtual bool OnMouseWheel (int wheelDelta, Point mousePosition, MouseKey keyState) override
 接收到WM_MOUSEWHEEL时调用该函数
 
virtual bool OnMouseLeftButtonDown (Point mousePosition, MouseKey keyState) override
 接收到WM_LBUTTONDOWN时调用该函数
 
virtual bool OnMouseLeftButtonUp (Point mousePosition, MouseKey keyState) override
 接收到WM_LBUTTONUP时调用该函数
 
virtual bool OnMouseRightButtonDown (Point mousePosition, MouseKey keyState) override
 接收到WM_RBUTTONDOWN时调用该函数
 
virtual bool OnMouseRightButtonUp (Point mousePosition, MouseKey keyState) override
 接收到WM_RBUTTONUP时调用该函数
 
virtual bool OnMouseMiddleButtonDown (Point mousePosition, MouseKey keyState) override
 接收到WM_MBUTTONDOWN时调用该函数
 
virtual bool OnMouseMiddleButtonUp (Point mousePosition, MouseKey keyState) override
 接收到WM_MBUTTONUP时调用该函数
 
virtual bool OnContextMenu (bool isKeyboardMsg, Point mousePosition) override
 接收到WM_CONTEXTMENU后调用目标控件的该函数
 
virtual void OnMenuCommand (int id) override
 当WM_COMMAND接收到菜单命令时调用该函数
 
virtual bool OnColor (HDC hdc, HBRUSH &hRetBrush) override
 父窗口接收到WM_CTLCOLORxxx时调用对应控件的该函数
 
virtual bool OnSetCursor (HWND hwnd, HitTestResult hitTest, int message, bool &result) override
 接收到WM_SETCURSOR消息时调用该函数
 
- Protected 成员函数 继承自 sw::WndBase
WndBase ()
 初始化WndBase
 
WndBase (const WndBase &)=delete
 
WndBase (WndBase &&)=delete
 
+WndBaseoperator= (const WndBase &)=delete
 
+WndBaseoperator= (WndBase &&)=delete
 
+void InitWindow (LPCWSTR lpWindowName, DWORD dwStyle, DWORD dwExStyle)
 初始化为窗口,该函数会调用CreateWindowExW
 
+void InitControl (LPCWSTR lpClassName, LPCWSTR lpWindowName, DWORD dwStyle, DWORD dwExStyle)
 初始化为控件,该函数会调用CreateWindowExW
 
+LRESULT DefaultWndProc (const ProcMsg &refMsg)
 调用默认的WndProc,对于窗口则调用DefWindowProcW,控件则调用_controlOldWndProc
 
virtual LRESULT WndProc (const ProcMsg &refMsg)
 对WndProc的封装
 
+void UpdateText ()
 更新_text字段
 
virtual std::wstring & GetText ()
 获取窗口文本
 
virtual void SetText (const std::wstring &value)
 调用SetWindowTextW设置窗口文本
 
virtual bool OnCreate ()
 接收到WM_CREATE时调用该函数
 
virtual bool OnDestroy ()
 接收到WM_DESTROY时调用该函数
 
virtual bool OnMouseLeftButtonDoubleClick (Point mousePosition, MouseKey keyState)
 接收到WM_LBUTTONDBLCLK时调用该函数
 
virtual bool OnMouseRightButtonDoubleClick (Point mousePosition, MouseKey keyState)
 接收到WM_RBUTTONDBLCLK时调用该函数
 
virtual bool OnMouseMiddleButtonDoubleClick (Point mousePosition, MouseKey keyState)
 接收到WM_MBUTTONDBLCLK时调用该函数
 
virtual bool OnDeadChar (wchar_t ch, KeyFlags flags)
 接收到WM_DEADCHAR时调用该函数
 
virtual bool OnSysChar (wchar_t ch, KeyFlags flags)
 接收到WM_SYSCHAR时调用该函数
 
virtual bool OnSysDeadChar (wchar_t ch, KeyFlags flags)
 接收到WM_SYSDEADCHAR时调用该函数
 
virtual bool OnSysKeyDown (VirtualKey key, KeyFlags flags)
 接收到WM_SYSKEYDOWN时调用该函数
 
virtual bool OnSysKeyUp (VirtualKey key, KeyFlags flags)
 接收到WM_SYSKEYUP时调用该函数
 
virtual void OnCommand (int code)
 当父窗口接收到控件的WM_COMMAND时调用该函数
 
virtual void OnControlCommand (WndBase *pControl, int code, int id)
 当WM_COMMAND接收到控件命令时调用该函数
 
virtual void OnAcceleratorCommand (int id)
 当WM_COMMAND接收到快捷键命令时调用该函数
 
virtual void HandleInitialized (HWND hwnd)
 窗口句柄初始化完成
 
virtual void FontChanged (HFONT hfont)
 字体改变时调用该函数
 
virtual bool OnNotify (NMHDR *pNMHDR)
 接收到WM_NOTIFY后调用该函数
 
virtual void OnNotified (NMHDR *pNMHDR)
 父窗口接收到WM_NOTIFY后调用发出通知控件的该函数
 
virtual bool OnVerticalScroll (int event, int pos)
 接收到WM_VSCROLL时调用目标控件的该函数
 
virtual bool OnHorizontalScroll (int event, int pos)
 接收到WM_HSCROLL时调用目标控件的该函数
 
virtual bool OnEnabledChanged (bool newValue)
 接收到WM_ENABLE时调用该函数
 
virtual bool OnCtlColor (WndBase *pControl, HDC hdc, HBRUSH &hRetBrush)
 接收到WM_CTLCOLORxxx时调用该函数
 
virtual void OnNcHitTest (const Point &testPoint, HitTestResult &result)
 接收到WM_NCHITTEST后调用该函数
 
virtual bool OnEraseBackground (int &result)
 接收到WM_ERASEBKGND时调用该函数
 
virtual bool OnDrawItem (int id, DRAWITEMSTRUCT *pDrawItem)
 接收到WM_DRAWITEM时调用该函数
 
+ + + + + +

+额外继承的成员函数

- 静态 Public 成员函数 继承自 sw::WndBase
static WndBaseGetWndBase (HWND hwnd)
 通过窗口句柄获取WndBase
 
+

详细描述

+

分隔条

+

成员函数说明

+ +

◆ OnPaint()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool sw::Splitter::OnPaint ()
+
+overrideprotectedvirtual
+
+ +

接收到WM_PAINT时调用该函数

+
返回
若已处理该消息则返回true,否则返回false以调用DefaultWndProc
+ +

重载 sw::WndBase .

+ +
+
+ +

◆ OnSize()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool sw::Splitter::OnSize (Size newClientSize)
+
+overrideprotectedvirtual
+
+ +

接收到WM_SIZE时调用该函数

+
参数
+ + +
newClientSize改变后的用户区尺寸
+
+
+
返回
若已处理该消息则返回true,否则返回false以调用DefaultWndProc
+ +

重载 sw::UIElement .

+ +
+
+
该类的文档由以下文件生成: +
+
+ + + + diff --git a/docs/classsw_1_1_splitter.js b/docs/classsw_1_1_splitter.js new file mode 100644 index 00000000..ccc4424f --- /dev/null +++ b/docs/classsw_1_1_splitter.js @@ -0,0 +1,7 @@ +var classsw_1_1_splitter = +[ + [ "Splitter", "classsw_1_1_splitter.html#acc4ee8d727fd36e75444d014cbf1a1ff", null ], + [ "OnPaint", "classsw_1_1_splitter.html#a363276ad838de7235b53f76d767a408d", null ], + [ "OnSize", "classsw_1_1_splitter.html#a961677b3a6e12fc522bdb4e7b22690c2", null ], + [ "Orientation", "classsw_1_1_splitter.html#a9c922b8e13fa139978a664c1e8fab4d6", null ] +]; \ No newline at end of file diff --git a/docs/classsw_1_1_splitter.png b/docs/classsw_1_1_splitter.png new file mode 100644 index 0000000000000000000000000000000000000000..5f43f0d21ba9847215136755b46871e9e1b53bd9 GIT binary patch literal 2059 zcmbtVeNYo;9$q4pq61WIi4-A+Ky!Wo-ry(Trd7C@OASmhrnEq8)ml^nG{J-rB=%HP z3S1LTlz@AlF{z-W5CtKIM6pmgH4;GN2uUE2fFZ;ffqY1Ei@mvNt#db>+dp=neSY)K z{`UDj@AIBYCSZLRzPk_r0AJkpgpUBgBMHW~Hy6P7PwOgL;73sMhdUG9ZZ{0aC#Unu zZwoiAU7542^4_>stA+XX_jmE(nh)(GLJ9!Czq~dgc)bANeFm5C!A^#UsmA!##d}LU zxhuAIo85P?D(|C*283ryvsZroobhn`Ra{<@`;yt|TJo`|&FsY6fvm=T&D3W_j!D5#;SCH|5#1Da zxy4-qVul7Q!D5ZBj~s(Kay>uQNOc8P$~r}sIlbC5!ySyFT{?;ncDk?fMM2O_(*Wp9(9hv(YR9s#S!qRL~oEO!sxgdMCa3 z2S=&_Y)&>e&ED0Q9rd4fxk!KIZ^1ml3LBDU*WkX8sl!H6}f8WLr@)CNanc&5T% zq2N9~VWnnvJE1Wxb;69#^lyLHJUchHK4x6I9j9}dboZRIg5!{ackKpeAk zW1M4YD5l({vD#Y*5`|_a4A;2lpDKTv!)l#e&h1sXZ!s(R3ft;XT?!}djxgMQG70x= zF~k|wO^D&SEUdaeU8o`7BK!J04fSUqvF`_ax4pBJDK#dsIxHQDS%wog^_M%mz?^E{I4s1StKhJ z{Sa?~>L@dVnNh^>yy4Y9ev_+MO$(3*kBhof>6G@i$Cq)ll^e_2t-00bqpMC>&V8q|CR$@rk9?t? zBT@25M)&5u!~A{UuS43?p0{5~-x!SevwV(~X5(B3ns>`gxNR46Bd1b(7?A_5!3c@{ zg=;7j$XS%3=&BLu*HoV_?7ntQpto-zUu%LE<#;>958|s&?P(DGAbs2U_skwCsL|t_ znxKM&!D+v)ba;=q&`0KG5>^ta8{uX#4V$TIN|l_qzS2Sk!e2 zrgM|}M*|-1iqWOBzAAkXH$A(0{?EN)&7;QoPmFP|{c+;c5sr73cu`YnNh4_6DFe4DGGYN=2$}yR(f=>!ajNz*K zdSBe0WL0N5VEbmAq} zgVAZ7nC#97$d z=!XB{``;kZuf=^Z;cSz6vV$Jtm0qv5hh>4HseIq|nZMOs5#bL^Ridry!2R#U9WNmL z!^o+M1BE+zO=`U^z6^K66^OhkFvV*E$}rm`Prd+=-Z3RAT!(-urDsa+@ksu4QwH(+ zM|(54!stbQAiZ5$SU-}%+7Q@$iOfP&i>EKPj0zizOxR*(c@jI!WN$J5k?c$(g(P$s zJ~4|z1S`mcGmquXuC_Kc?b+4HA&CsHL`8rRcd>Akm%mQs+#sk>GfM*A0{r3u1pBzn z^Lq;;;rHy4dC(hp0eBCV8F%PE`SE}0_}W-vQ(NneQ6AbiXhb6NEr>`2N5r*VSk^A0 z{iLFH70QxIoWA`~$V;V?h=n+qHU;)mvd_9ol6FfpEz6eVGO{iZ2TDbR_lhfm`w8cq ztYl)|s2)U<>J*7n)tvM`3x%|kXgZ~sIi|W~S|O@CU`}5}BAT{KA;+PyJmTP%=33j8 z+Sq+jc6~ycqnr0aMX#$pVD5D`93w&Sa)PwzQ}b29<-vQ2L+9VuiDU;lF@ A2><{9 literal 0 HcmV?d00001 diff --git a/docs/classsw_1_1_static_control.html b/docs/classsw_1_1_static_control.html index 56d8b58f..9668aea4 100644 --- a/docs/classsw_1_1_static_control.html +++ b/docs/classsw_1_1_static_control.html @@ -114,7 +114,9 @@ sw::WndBase sw::ILayout sw::ITag +sw::HwndHost sw::Label +sw::Splitter diff --git a/docs/classsw_1_1_static_control.png b/docs/classsw_1_1_static_control.png index 54ec8f60c28667a368b04f452c12d6f0e7e47968..03722eb758fdda519a90975bf58fff0b3efc191a 100644 GIT binary patch literal 2248 zcmbtWdsGu=79Rw=B2sy*QeNgDK^CbC+R9TWRY8b67b+Cwr7pC9P&5cMBmu+~5omgX z1s8m(r^|j@aX$d;@W;EH_%uaLTq3$s>!hPGa_?Z_ zm@1pf%E_^5w>P``Oegu~CsDO|0Z5_W8OQC@_ip=nzqUWQ7w?o|=ZKncO+$z_xgWG> zcO#vlQDwKW7|h1wqm|WTk519XR+=Us>Cje-Ed7-|GjVN;&6}QJINiKlzKJ1Iibg!3 zQDkT%_QmKqV@5sLI_RJnQyDMir|P9BYtv>uKO#Q7&Jjq1dW8|~i+STs@QL9SuHF7t zm+3zV2}eKY(s1}i+vN#Db^?h;*M<<%UUsN0p^LVfdkV5nlZHLGS4e5V$BT-dH;sTMO}Xb9I3PFW%-ZLrau2J3L<&1kQ8%vcG9d@2wi`=`(gH~d*2SQi!I*rp^k*8&=GHBhicy>dr1KC==Uc8VNLthQJ(DBehtjQ)L>V#Ty68q6U<-Q|`lpb9Xn@sWi zERQ*npZ7IIqP?*}NN&RI9<=ltmDl(pqWtNv_?@ECKF~m*cPTNcBB8rC$S8;O;YNIa zm$6-jw}8m^;a3Kyd;I8~+TH!d-JI0^eoS9Xs9nZD%BC_#A86DVX}WU1d{`^%0`#$0 zRXK~3Ygr{Gpm{sazZ@+cGC)H3{xv>Ddq<^fk;kfdZ&(KNOL4C*b{OV79MvfJJ`65q z+6V`t4wo_~3H45liBhM{p>|6z|Fg->i_|D)Nox~t>gwu@mYknB0Xc?0w?tv^OT(R- zxlbznPI?A}yMwkibDQ~g1Fcq3o;SzZU9B-Nwb%0lPBa&zwrR~q)qB9?Q-a7prtF~P7V)ilS z(1y^TX1B}l{g10j)!q_$^_Wm!kaJAzcCmeTBnASYG#fr&u3g?By6o38UQAijf7p>^Vxx}?c6U9x z1GhhI!zMSf|6Yo#h;+^?X0w9^rNc(C0b#W*cKS(RAR`vJ`#g?hXB{6zk!U8oEKA;v zLnw6>>oSd@+8?IQ+7rcuQkK3UL}>c*_%2tlLCndpQII*~i7WRHg|fMW!6K?2RL`3? z2V<)S+(^9O3aYHKJ^=HJlb}G4h?AWEPo!I+H(znbmka>G? z{NVbQG0+S`dHQM+H57|KquQ9W^#OXz4$`EQw^=~nL+xl?w-=_l$1CW8=BS{u&Ay~w zEEe1?!ydOpDea|dn_>}?##e@${<@f>FV-&uMNFZBXoAm%!tXA$Q8siT~*3?B>_j& zTg--&Lzfd&{OY-~@k;sM6jBEzRSadl4#-f}k2Q3a%1Hy`4XJMe=gI3`FAj>DhY`e% z-^i@oNQI(D#x3U3Gl_+Cj6g^%#O_vourg3Vqno3x_I0)oUW}sE-pah5>w~}YFFp9V mC9}3VF!KOw%ZBfeW9X(k>rR+=x}g6Y0N&NxrTS#VwSNN3kB%My literal 2023 zcmb_dYfzJC7XA|4B6g9kN-464PGh4h>xB%r8UkB!Fe1cB9J0YktjeH9(+G-$gaECs z%SBT$EiJ^L<0W+<`Ksy4HJ1g1dVv6eLNX7U?5kg0>V ztS{0X{%-A)L$iFHX*g`G*YnPaL+5kP`G~tWin@Q?aEnh`4BPQ8{=@6eDb&n4-^0)6 z_$V?A+Run8*4Jf$`nC%wnJo{k4PJ)_+49=2W=nK~F_i5hB$6jWE zbJR$wq9!@9wW~Z#m3waTBI@MgI5hgy_6JOZ6qRHdD0m)kNY8q|zy5_U#^1?Has_~Q zxoU`M_0s15Wu6V?SVy0@W?m-c+{D#8wqP%W98jg#nx%K^-M+&r_ekM9~B!vRp=uVy=#d349i48u!5+mM_rUjw;b4hsOwOrv3tB)Bj*GQFd?48x~ME z-VzKZN3Jk-*#WatbfFquCiZxLkb2ZRdR8hmhp$Ohc0x!v0m!590M3JzN-`GlTGD#C z3fkH-#aII_vFu6}x(qBrzN-9xsiUcyXV3+le_8tJ<>oK2Dq|Bs{zlM6 z0rUOQW@gSKD6&_q(=Xb@rP%w9_u2!-yl=DQvbHtckSE;j+fKF?>Ut54-o~PPrs*y6 za?nr+x^$+6iaR>o=3(DL1xxR^WWkBN)Ux#NOjb!}`7P3Fv^!y@UFK{teK3HKxI6*z zzs6EOCsoP>*ogd#L>`@O5cgU@TCYu>a zy`KMF%vo1A_nztsyUw~&-I=6-B{JR98kTL)sn^sBP7U3UFV7`{ym}hVNsg~N#a^!( z8A;5rA3GmKp07AoH!{I+?I-}Ry4afMmg(lO`SGT1g;Z9FhF^ZHB>6LlC`2=J9zuWY zU&cKDC{aMpHV`N#aEjGab2?mg3WIx5Yx4j>2epxF5r2nUFZLu|10>Ia4qE;lz84_P zEn&W!0np}_%!U$vcS?}(iJ3u0WGFo7MZ0UjUt;LCZgL&IF%Gnb{8NOA946U1p1I5O z&PEo-kmz?zF|y#a;0u|_4@folGg1!+*rQ|R+v;5Gw@b0>kEzS@l`Zqslh51?dGAW& zW1%E%k{@-u1dG7UJn$CCR>xY{Si~iEtl{h)UMOeG{^hME2MAj~yh?;}SH1>q)p@Y{ z|CEA!dM0oe@a0cU;)ZM}Yb-)OEoQ#8O1Te<5bS)jlB#c zgngmSRPNl81ctOQ#P75W{?y=uhU1&TtQ%S(bb0&tMg35TW$T`K)~G#fHn*g~@JZHu zE~U-6m_rvUvaxjW2>Fdcn~VLVS!b&TRwyOgQ;^@TA^`hc>=XnQUM8B)FxP!DT*U;zjBJr zrt{${mrJ#9obN#^8}pk@AWCON~>$zzz6u V#!Y_#2!F`{erIN?sw::WndBase .

-

sw::Panel 重载.

+

sw::HwndHost, sw::Panel , 以及 sw::Splitter 重载.

diff --git a/docs/classsw_1_1_wnd_base.html b/docs/classsw_1_1_wnd_base.html index f4d1effd..678fc0eb 100644 --- a/docs/classsw_1_1_wnd_base.html +++ b/docs/classsw_1_1_wnd_base.html @@ -1118,7 +1118,7 @@

返回
若已处理该消息则返回true,否则返回false以调用DefaultWndProc
-

sw::Window 重载.

+

sw::HwndHost , 以及 sw::Window 重载.

@@ -2100,7 +2100,7 @@

返回
若已处理该消息则返回true,否则返回false以调用DefaultWndProc
-

sw::Panel , 以及 sw::Window 重载.

+

sw::Panel, sw::Splitter , 以及 sw::Window 重载.

@@ -2225,7 +2225,7 @@

返回
若已处理该消息则返回true,否则返回false以调用DefaultWndProc
-

sw::Panel , 以及 sw::UIElement 重载.

+

sw::HwndHost, sw::Panel, sw::Splitter , 以及 sw::UIElement 重载.

diff --git a/docs/classsw_1_1_write_only_property.html b/docs/classsw_1_1_write_only_property.html index 27d9af24..9ee39990 100644 --- a/docs/classsw_1_1_write_only_property.html +++ b/docs/classsw_1_1_write_only_property.html @@ -123,21 +123,22 @@ sw::Property< wchar_t > sw::Property< uint16_t > sw::Property< ProgressBarState > -sw::Property< sw::Orientation > -sw::Property< TabAlignment > -sw::Property< sw::Thickness > -sw::Property< HorizontalAlignment > -sw::Property< VerticalAlignment > -sw::Property< uint64_t > -sw::Property< sw::ContextMenu * > -sw::Property< sw::Color > -sw::Property< WindowStartupLocation > -sw::Property< WindowState > -sw::Property< sw::Menu * > -sw::Property< sw::Font > -sw::Property< sw::FontWeight > -sw::Property< sw::Rect > -sw::Property< T > +sw::Property< Orientation > +sw::Property< sw::Orientation > +sw::Property< TabAlignment > +sw::Property< sw::Thickness > +sw::Property< HorizontalAlignment > +sw::Property< VerticalAlignment > +sw::Property< uint64_t > +sw::Property< sw::ContextMenu * > +sw::Property< sw::Color > +sw::Property< WindowStartupLocation > +sw::Property< WindowState > +sw::Property< sw::Menu * > +sw::Property< sw::Font > +sw::Property< sw::FontWeight > +sw::Property< sw::Rect > +sw::Property< T >

diff --git a/docs/classsw_1_1_write_only_property.png b/docs/classsw_1_1_write_only_property.png index 94cd30872e579fbddc8529493626fe715ad350f9..b0ca2b0a022ac7cde1ae0bd3c43f90be532b26f2 100644 GIT binary patch delta 366 zcmV-!0g?XnbJ=&07Ye8d0{{R3e{s0nks&?;J7lq8TpfQWecgUkpSO2PbM@+^=B)#t zqWZi*tA5h`_P;jRIpf9EPrd`H9~5ZSSKTJx?T(K%RA2X5cb}i%Py55eLqBilSG9cO z<@d+g2>0iYf0pm6zFnYIUvy`lpnLTRdioX&PamhYFZ%;4=;oy9)p%gz-F7V1*9BVj zMT1hiVLpHM=-E_nA673{3-a!z)B8*H`Kta7b)Z#WHLRO0^!&+!Y4{GblXA|o0o`9S zA80(V2mKcHdC-^3<#K9oKtERReg%ICy?STZxnIoa<#)p`r{BzIfKPgJk6zv8E$GD_ z-9pc49*h3&()|iLdo;k2-d(yE^KW4`tkuJrvkNqq%k6B7Z@(waYTqyB{eY`?Ro^Yp zs=w79!iPAjzg3`Bf2$qPf517=s=wB@=)d3`Xw?dn`!2Jyy&WSQ6xVoi`n5{?mjD0& M07*qoM6N<$f@00X{{R30 delta 53 zcmcav{-t<=I9CA&GXn!dqm0_TiHdeimh~GGV`Mikl2?`yVT*GVE506P29##-boFyt I=akR{0KT{n!~g&Q diff --git a/docs/dir_ed5f6ece24ffcc4307a76d27c2494db3.html b/docs/dir_ed5f6ece24ffcc4307a76d27c2494db3.html index 4638d245..41693be0 100644 --- a/docs/dir_ed5f6ece24ffcc4307a76d27c2494db3.html +++ b/docs/dir_ed5f6ece24ffcc4307a76d27c2494db3.html @@ -143,6 +143,8 @@ + + @@ -207,6 +209,8 @@ + + diff --git a/docs/dir_ed5f6ece24ffcc4307a76d27c2494db3.js b/docs/dir_ed5f6ece24ffcc4307a76d27c2494db3.js index a8cf253c..37e07a49 100644 --- a/docs/dir_ed5f6ece24ffcc4307a76d27c2494db3.js +++ b/docs/dir_ed5f6ece24ffcc4307a76d27c2494db3.js @@ -23,6 +23,7 @@ var dir_ed5f6ece24ffcc4307a76d27c2494db3 = [ "GridLayout.h", "_grid_layout_8h_source.html", null ], [ "GroupBox.h", "_group_box_8h_source.html", null ], [ "HitTestResult.h", "_hit_test_result_8h_source.html", null ], + [ "HwndHost.h", "_hwnd_host_8h_source.html", null ], [ "Icon.h", "_icon_8h_source.html", null ], [ "ILayout.h", "_i_layout_8h_source.html", null ], [ "ITag.h", "_i_tag_8h_source.html", null ], @@ -55,6 +56,7 @@ var dir_ed5f6ece24ffcc4307a76d27c2494db3 = [ "SimpleWindow.h", "_simple_window_8h_source.html", null ], [ "Size.h", "_size_8h_source.html", null ], [ "Slider.h", "_slider_8h_source.html", null ], + [ "Splitter.h", "_splitter_8h_source.html", null ], [ "StackLayout.h", "_stack_layout_8h_source.html", null ], [ "StackLayoutH.h", "_stack_layout_h_8h_source.html", null ], [ "StackLayoutV.h", "_stack_layout_v_8h_source.html", null ], diff --git a/docs/doxygen_crawl.html b/docs/doxygen_crawl.html index 9760a8fb..3fa69710 100644 --- a/docs/doxygen_crawl.html +++ b/docs/doxygen_crawl.html @@ -31,6 +31,7 @@ + @@ -63,6 +64,7 @@ + @@ -150,6 +152,8 @@ + + @@ -240,6 +244,8 @@ + + diff --git a/docs/files.html b/docs/files.html index a6d2ebfc..ca1f4495 100644 --- a/docs/files.html +++ b/docs/files.html @@ -121,58 +121,60 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 
 HitTestResult.h
 
 HwndHost.h
 
 Icon.h
 
 ILayout.h
 
 Slider.h
 
 Splitter.h
 
 StackLayout.h
 
 StackLayoutH.h
 GridLayout.h
 GroupBox.h
 HitTestResult.h
 Icon.h
 ILayout.h
 ITag.h
 ItemsControl.h
 Keys.h
 Label.h
 Layer.h
 LayoutHost.h
 List.h
 ListBox.h
 ListView.h
 Menu.h
 MenuBase.h
 MenuItem.h
 MsgBox.h
 Panel.h
 PanelBase.h
 PasswordBox.h
 Path.h
 Point.h
 ProcMsg.h
 ProgressBar.h
 Property.h
 RadioButton.h
 Rect.h
 RoutedEvent.h
 RoutedEventArgs.h
 Screen.h
 ScrollEnums.h
 SimpleWindow.h
 Size.h
 Slider.h
 StackLayout.h
 StackLayoutH.h
 StackLayoutV.h
 StackPanel.h
 StaticControl.h
 TabControl.h
 TextBox.h
 TextBoxBase.h
 Thickness.h
 UIElement.h
 UniformGrid.h
 UniformGridLayout.h
 Utils.h
 Window.h
 WndBase.h
 WndMsg.h
 WrapLayout.h
 WrapLayoutH.h
 WrapLayoutV.h
 WrapPanel.h
 HwndHost.h
 Icon.h
 ILayout.h
 ITag.h
 ItemsControl.h
 Keys.h
 Label.h
 Layer.h
 LayoutHost.h
 List.h
 ListBox.h
 ListView.h
 Menu.h
 MenuBase.h
 MenuItem.h
 MsgBox.h
 Panel.h
 PanelBase.h
 PasswordBox.h
 Path.h
 Point.h
 ProcMsg.h
 ProgressBar.h
 Property.h
 RadioButton.h
 Rect.h
 RoutedEvent.h
 RoutedEventArgs.h
 Screen.h
 ScrollEnums.h
 SimpleWindow.h
 Size.h
 Slider.h
 Splitter.h
 StackLayout.h
 StackLayoutH.h
 StackLayoutV.h
 StackPanel.h
 StaticControl.h
 TabControl.h
 TextBox.h
 TextBoxBase.h
 Thickness.h
 UIElement.h
 UniformGrid.h
 UniformGridLayout.h
 Utils.h
 Window.h
 WndBase.h
 WndMsg.h
 WrapLayout.h
 WrapLayoutH.h
 WrapLayoutV.h
 WrapPanel.h
diff --git a/docs/functions_b.html b/docs/functions_b.html index 43e9c096..a4945513 100644 --- a/docs/functions_b.html +++ b/docs/functions_b.html @@ -100,6 +100,7 @@

- b -

diff --git a/docs/functions_d.html b/docs/functions_d.html index 00031174..8d4e5584 100644 --- a/docs/functions_d.html +++ b/docs/functions_d.html @@ -95,6 +95,7 @@

- d -

  • DefaultWndProc() : sw::WndBase
  • +
  • DestroyWindowCore() : sw::HwndHost
  • Dictionary() : sw::Dictionary< TKey, TVal >
  • DipToPxX() : sw::Dip
  • DipToPxY() : sw::Dip
  • diff --git a/docs/functions_func_b.html b/docs/functions_func_b.html index bb588cf9..d41a9c39 100644 --- a/docs/functions_func_b.html +++ b/docs/functions_func_b.html @@ -96,6 +96,7 @@

    - b -

    diff --git a/docs/functions_func_d.html b/docs/functions_func_d.html index 712608c4..4777ad89 100644 --- a/docs/functions_func_d.html +++ b/docs/functions_func_d.html @@ -95,6 +95,7 @@

    - d -

    • DefaultWndProc() : sw::WndBase
    • +
    • DestroyWindowCore() : sw::HwndHost
    • Dictionary() : sw::Dictionary< TKey, TVal >
    • DipToPxX() : sw::Dip
    • DipToPxY() : sw::Dip
    • diff --git a/docs/functions_func_i.html b/docs/functions_func_i.html index 2d7ac8ee..b385f9a3 100644 --- a/docs/functions_func_i.html +++ b/docs/functions_func_i.html @@ -99,6 +99,7 @@

      - i -

      • IndexToID() : sw::ContextMenu, sw::Menu, sw::MenuBase
      • InitButtonBase() : sw::ButtonBase
      • InitControl() : sw::WndBase
      • +
      • InitHwndHost() : sw::HwndHost
      • InitMenuBase() : sw::MenuBase
      • InitTextBoxBase() : sw::TextBoxBase
      • InitWindow() : sw::WndBase
      • diff --git a/docs/functions_func_o.html b/docs/functions_func_o.html index 9b4b6925..7107bfcd 100644 --- a/docs/functions_func_o.html +++ b/docs/functions_func_o.html @@ -108,7 +108,7 @@

        - o -

        • OnCreate() : sw::WndBase
        • OnCtlColor() : sw::WndBase
        • OnDeadChar() : sw::WndBase
        • -
        • OnDestroy() : sw::Window, sw::WndBase
        • +
        • OnDestroy() : sw::HwndHost, sw::Window, sw::WndBase
        • OnDoubleClicked() : sw::ButtonBase
        • OnDpiChanged() : sw::Window
        • OnDrawFocusRect() : sw::Button, sw::TextBoxBase, sw::UIElement
        • @@ -145,14 +145,14 @@

          - o -

          • OnNcHitTest() : sw::WndBase
          • OnNotified() : sw::ListView, sw::TabControl, sw::WndBase
          • OnNotify() : sw::ListView, sw::WndBase
          • -
          • OnPaint() : sw::Panel, sw::Window, sw::WndBase
          • +
          • OnPaint() : sw::Panel, sw::Splitter, sw::Window, sw::WndBase
          • OnRemovedChild() : sw::TabControl, sw::UIElement
          • OnScroll() : sw::Layer
          • OnSelectedIndexChanged() : sw::TabControl
          • OnSelectionChanged() : sw::ComboBox, sw::ItemsControl< TItem >
          • OnSetCursor() : sw::UIElement, sw::WndBase
          • OnSetFocus() : sw::Button, sw::UIElement, sw::WndBase
          • -
          • OnSize() : sw::Panel, sw::UIElement, sw::WndBase
          • +
          • OnSize() : sw::HwndHost, sw::Panel, sw::Splitter, sw::UIElement, sw::WndBase
          • OnSysChar() : sw::WndBase
          • OnSysDeadChar() : sw::WndBase
          • OnSysKeyDown() : sw::WndBase
          • diff --git a/docs/functions_func_s.html b/docs/functions_func_s.html index 566877a1..1fc0004e 100644 --- a/docs/functions_func_s.html +++ b/docs/functions_func_s.html @@ -144,6 +144,7 @@

            - s -

            diff --git a/docs/functions_i.html b/docs/functions_i.html index ae767e18..a4d930e0 100644 --- a/docs/functions_i.html +++ b/docs/functions_i.html @@ -100,6 +100,7 @@

            - i -

            • InheritTextColor : sw::UIElement
            • InitButtonBase() : sw::ButtonBase
            • InitControl() : sw::WndBase
            • +
            • InitHwndHost() : sw::HwndHost
            • InitMenuBase() : sw::MenuBase
            • InitTextBoxBase() : sw::TextBoxBase
            • InitWindow() : sw::WndBase
            • diff --git a/docs/functions_o.html b/docs/functions_o.html index 2e546c95..324d33e9 100644 --- a/docs/functions_o.html +++ b/docs/functions_o.html @@ -108,7 +108,7 @@

              - o -

              • OnCreate() : sw::WndBase
              • OnCtlColor() : sw::WndBase
              • OnDeadChar() : sw::WndBase
              • -
              • OnDestroy() : sw::Window, sw::WndBase
              • +
              • OnDestroy() : sw::HwndHost, sw::Window, sw::WndBase
              • OnDoubleClicked() : sw::ButtonBase
              • OnDpiChanged() : sw::Window
              • OnDrawFocusRect() : sw::Button, sw::TextBoxBase, sw::UIElement
              • @@ -145,14 +145,14 @@

                - o -

                • OnNcHitTest() : sw::WndBase
                • OnNotified() : sw::ListView, sw::TabControl, sw::WndBase
                • OnNotify() : sw::ListView, sw::WndBase
                • -
                • OnPaint() : sw::Panel, sw::Window, sw::WndBase
                • +
                • OnPaint() : sw::Panel, sw::Splitter, sw::Window, sw::WndBase
                • OnRemovedChild() : sw::TabControl, sw::UIElement
                • OnScroll() : sw::Layer
                • OnSelectedIndexChanged() : sw::TabControl
                • OnSelectionChanged() : sw::ComboBox, sw::ItemsControl< TItem >
                • OnSetCursor() : sw::UIElement, sw::WndBase
                • OnSetFocus() : sw::Button, sw::UIElement, sw::WndBase
                • -
                • OnSize() : sw::Panel, sw::UIElement, sw::WndBase
                • +
                • OnSize() : sw::HwndHost, sw::Panel, sw::Splitter, sw::UIElement, sw::WndBase
                • OnSysChar() : sw::WndBase
                • OnSysDeadChar() : sw::WndBase
                • OnSysKeyDown() : sw::WndBase
                • @@ -169,7 +169,9 @@

                  - o -

                  • operator=() : sw::MenuBase, sw::Property< T >, sw::WriteOnlyProperty< T >
                  • operator== : sw::Dictionary< TKey, TVal >, sw::List< T >, sw::WndBase
                  • operator[]() : sw::Dictionary< TKey, TVal >, sw::List< T >, sw::UIElement
                  • -
                  • orientation : sw::Font, sw::StackLayout
                  • +
                  • orientation : sw::Font
                  • +
                  • Orientation : sw::Splitter
                  • +
                  • orientation : sw::StackLayout
                  • Orientation : sw::StackPanel
                  • orientation : sw::WrapLayout
                  • Orientation : sw::WrapPanel
                  • diff --git a/docs/functions_s.html b/docs/functions_s.html index 33af933b..e3abd0f0 100644 --- a/docs/functions_s.html +++ b/docs/functions_s.html @@ -151,6 +151,7 @@

                    - s -

                    • SizeToContent() : sw::Window
                    • Slider() : sw::Slider
                    • Split() : sw::Utils
                    • +
                    • Splitter() : sw::Splitter
                    • StackPanel() : sw::StackPanel
                    • StartupLocation : sw::Window
                    • State : sw::ProgressBar, sw::Window
                    • diff --git a/docs/functions_vars.html b/docs/functions_vars.html index 72fed3fe..6a6066a4 100644 --- a/docs/functions_vars.html +++ b/docs/functions_vars.html @@ -229,7 +229,9 @@

                      - n -

                        - o -

                          -
                        • orientation : sw::Font, sw::StackLayout
                        • +
                        • orientation : sw::Font
                        • +
                        • Orientation : sw::Splitter
                        • +
                        • orientation : sw::StackLayout
                        • Orientation : sw::StackPanel
                        • orientation : sw::WrapLayout
                        • Orientation : sw::WrapPanel
                        • diff --git a/docs/hierarchy.html b/docs/hierarchy.html index 76fefd40..468cbd1e 100644 --- a/docs/hierarchy.html +++ b/docs/hierarchy.html @@ -155,7 +155,9 @@  Csw::ProgressBar进度条控件  Csw::Slider滑块控件  Csw::StaticControl静态控件 - Csw::Label标签 + Csw::HwndHost将Win32 window托管为SimpleWindow控件 + Csw::Label标签 + Csw::Splitter分隔条  Csw::TabControl标签页控件  Csw::TextBoxBase窗口类名为EDIT的控件类型的基类  Csw::PasswordBox密码框 @@ -193,21 +195,22 @@  Csw::Property< wchar_t >  Csw::Property< uint16_t >  Csw::Property< ProgressBarState > - Csw::Property< sw::Orientation > - Csw::Property< TabAlignment > - Csw::Property< sw::Thickness > - Csw::Property< HorizontalAlignment > - Csw::Property< VerticalAlignment > - Csw::Property< uint64_t > - Csw::Property< sw::ContextMenu * > - Csw::Property< sw::Color > - Csw::Property< WindowStartupLocation > - Csw::Property< WindowState > - Csw::Property< sw::Menu * > - Csw::Property< sw::Font > - Csw::Property< sw::FontWeight > - Csw::Property< sw::Rect > - Csw::Property< T >属性 + Csw::Property< Orientation > + Csw::Property< sw::Orientation > + Csw::Property< TabAlignment > + Csw::Property< sw::Thickness > + Csw::Property< HorizontalAlignment > + Csw::Property< VerticalAlignment > + Csw::Property< uint64_t > + Csw::Property< sw::ContextMenu * > + Csw::Property< sw::Color > + Csw::Property< WindowStartupLocation > + Csw::Property< WindowState > + Csw::Property< sw::Menu * > + Csw::Property< sw::Font > + Csw::Property< sw::FontWeight > + Csw::Property< sw::Rect > + Csw::Property< T >属性  Csw::ReadOnlyProperty< AppQuitMode >  Csw::ReadOnlyProperty< bool >  Csw::ReadOnlyProperty< double > @@ -215,132 +218,135 @@  Csw::ReadOnlyProperty< HorizontalAlignment >  Csw::ReadOnlyProperty< HWND >  Csw::ReadOnlyProperty< int > - Csw::ReadOnlyProperty< ProgressBarState > - Csw::ReadOnlyProperty< std::wstring > - Csw::ReadOnlyProperty< StrList > - Csw::ReadOnlyProperty< sw::BorderStyle > - Csw::ReadOnlyProperty< sw::CheckState > - Csw::ReadOnlyProperty< sw::Color > - Csw::ReadOnlyProperty< sw::ContextMenu * > - Csw::ReadOnlyProperty< sw::Font > - Csw::ReadOnlyProperty< sw::FontWeight > - Csw::ReadOnlyProperty< sw::HorizontalAlignment > - Csw::ReadOnlyProperty< sw::LayoutHost * > - Csw::ReadOnlyProperty< sw::Menu * > - Csw::ReadOnlyProperty< sw::Orientation > - Csw::ReadOnlyProperty< sw::Point > - Csw::ReadOnlyProperty< sw::Rect > - Csw::ReadOnlyProperty< sw::TextTrimming > - Csw::ReadOnlyProperty< sw::Thickness > - Csw::ReadOnlyProperty< sw::UIElement * > - Csw::ReadOnlyProperty< sw::VerticalAlignment > - Csw::ReadOnlyProperty< sw::Window * > - Csw::ReadOnlyProperty< sw::WndBase * > - Csw::ReadOnlyProperty< TabAlignment > - Csw::ReadOnlyProperty< TItem > - Csw::ReadOnlyProperty< uint16_t > - Csw::ReadOnlyProperty< uint64_t > - Csw::ReadOnlyProperty< VerticalAlignment > - Csw::ReadOnlyProperty< wchar_t > - Csw::ReadOnlyProperty< WindowStartupLocation > - Csw::ReadOnlyProperty< WindowState > - Csw::Rect表示一个矩形区域 - Csw::RoutedEventArgs路由事件的参数 - Csw::RoutedEventArgsOfType< UIElement_GotChar > - Csw::GotCharEventArgs输入字符事件类型参数 - Csw::RoutedEventArgsOfType< UIElement_KeyDown > - Csw::KeyDownEventArgs键盘按键按下事件参数类型 - Csw::RoutedEventArgsOfType< UIElement_KeyUp > - Csw::KeyUpEventArgs键盘按键抬起事件参数类型 - Csw::RoutedEventArgsOfType< ListView_CheckStateChanged > - Csw::ListViewCheckStateChangedEventArgs列表视图某个复选框选中状态改变的事件参数类型 - Csw::RoutedEventArgsOfType< UIElement_MouseButtonDown > - Csw::MouseButtonDownEventArgs鼠标按键按下事件参数类型 - Csw::RoutedEventArgsOfType< UIElement_MouseButtonUp > - Csw::MouseButtonUpEventArgs鼠标按键抬起事件参数类型 - Csw::RoutedEventArgsOfType< UIElement_MouseMove > - Csw::MouseMoveEventArgs鼠标移动事件参数类型 - Csw::RoutedEventArgsOfType< UIElement_MouseWheel > - Csw::MouseWheelEventArgs鼠标滚轮滚动事件参数类型 - Csw::RoutedEventArgsOfType< UIElement_PositionChanged > - Csw::PositionChangedEventArgs位置改变事件参数类型 - Csw::RoutedEventArgsOfType< Layer_Scrolling > - Csw::ScrollingEventArgs窗口/面板滚动条滚动事件参数类型 - Csw::RoutedEventArgsOfType< UIElement_ShowContextMenu > - Csw::ShowContextMenuEventArgs显示用户自定义上下文菜单的事件参数类型 - Csw::RoutedEventArgsOfType< UIElement_SizeChanged > - Csw::SizeChangedEventArgs尺寸改变事件参数类型 - Csw::RoutedEventArgsOfType< Window_Closing > - Csw::WindowClosingEventArgs窗口正在关闭事件参数类型 - Csw::ListViewHeaderClickedEventArgs列表视图的列标题单击与双击事件参数类型 - Csw::ListViewItemClickedEventArgs列表视图项单击与双击事件参数类型 - Csw::RoutedEventArgsOfType< TYPE >表示特定类型路由事件的事件参数类型,继承自该类的事件参数可以用于RegisterRoutedEvent模板函数 - Csw::Screen屏幕相关 - Csw::Size尺寸 - Csw::Thickness表示矩形区域周围边框的厚度 - Cstd::true_type - Csw::_HasEventType< T, decltype(void(std::declval< T >().EventType))>模板特化:当T包含EventType时,将_IsTypedRoutedEventArgs<T>设为std::true_type - Csw::Utils工具类 - Csw::WndBase表示一个Windows窗口,是所有窗口和控件的基类 - Csw::UIElement表示界面中的元素 - Csw::WriteOnlyProperty< T >只写属性 - Csw::Property< int > - Csw::Property< std::wstring > - Csw::Property< AppQuitMode > - Csw::Property< bool > - Csw::Property< sw::CheckState > - Csw::Property< sw::HorizontalAlignment > - Csw::Property< sw::VerticalAlignment > - Csw::Property< sw::TextTrimming > - Csw::Property< sw::LayoutHost * > - Csw::Property< double > - Csw::Property< sw::BorderStyle > - Csw::Property< wchar_t > - Csw::Property< uint16_t > - Csw::Property< ProgressBarState > - Csw::Property< sw::Orientation > - Csw::Property< TabAlignment > - Csw::Property< sw::Thickness > - Csw::Property< HorizontalAlignment > - Csw::Property< VerticalAlignment > - Csw::Property< uint64_t > - Csw::Property< sw::ContextMenu * > - Csw::Property< sw::Color > - Csw::Property< WindowStartupLocation > - Csw::Property< WindowState > - Csw::Property< sw::Menu * > - Csw::Property< sw::Font > - Csw::Property< sw::FontWeight > - Csw::Property< sw::Rect > - Csw::Property< T >属性 - Csw::WriteOnlyProperty< AppQuitMode > - Csw::WriteOnlyProperty< bool > - Csw::WriteOnlyProperty< double > - Csw::WriteOnlyProperty< HorizontalAlignment > - Csw::WriteOnlyProperty< int > - Csw::WriteOnlyProperty< ProgressBarState > - Csw::WriteOnlyProperty< std::wstring > - Csw::WriteOnlyProperty< sw::BorderStyle > - Csw::WriteOnlyProperty< sw::CheckState > - Csw::WriteOnlyProperty< sw::Color > - Csw::WriteOnlyProperty< sw::ContextMenu * > - Csw::WriteOnlyProperty< sw::Font > - Csw::WriteOnlyProperty< sw::FontWeight > - Csw::WriteOnlyProperty< sw::HorizontalAlignment > - Csw::WriteOnlyProperty< sw::LayoutHost * > - Csw::WriteOnlyProperty< sw::Menu * > - Csw::WriteOnlyProperty< sw::Orientation > - Csw::WriteOnlyProperty< sw::Rect > - Csw::WriteOnlyProperty< sw::TextTrimming > - Csw::WriteOnlyProperty< sw::Thickness > - Csw::WriteOnlyProperty< sw::VerticalAlignment > - Csw::WriteOnlyProperty< TabAlignment > - Csw::WriteOnlyProperty< uint16_t > - Csw::WriteOnlyProperty< uint64_t > - Csw::WriteOnlyProperty< VerticalAlignment > - Csw::WriteOnlyProperty< wchar_t > - Csw::WriteOnlyProperty< WindowStartupLocation > - Csw::WriteOnlyProperty< WindowState > + Csw::ReadOnlyProperty< Orientation > + Csw::ReadOnlyProperty< ProgressBarState > + Csw::ReadOnlyProperty< std::wstring > + Csw::ReadOnlyProperty< StrList > + Csw::ReadOnlyProperty< sw::BorderStyle > + Csw::ReadOnlyProperty< sw::CheckState > + Csw::ReadOnlyProperty< sw::Color > + Csw::ReadOnlyProperty< sw::ContextMenu * > + Csw::ReadOnlyProperty< sw::Font > + Csw::ReadOnlyProperty< sw::FontWeight > + Csw::ReadOnlyProperty< sw::HorizontalAlignment > + Csw::ReadOnlyProperty< sw::LayoutHost * > + Csw::ReadOnlyProperty< sw::Menu * > + Csw::ReadOnlyProperty< sw::Orientation > + Csw::ReadOnlyProperty< sw::Point > + Csw::ReadOnlyProperty< sw::Rect > + Csw::ReadOnlyProperty< sw::TextTrimming > + Csw::ReadOnlyProperty< sw::Thickness > + Csw::ReadOnlyProperty< sw::UIElement * > + Csw::ReadOnlyProperty< sw::VerticalAlignment > + Csw::ReadOnlyProperty< sw::Window * > + Csw::ReadOnlyProperty< sw::WndBase * > + Csw::ReadOnlyProperty< TabAlignment > + Csw::ReadOnlyProperty< TItem > + Csw::ReadOnlyProperty< uint16_t > + Csw::ReadOnlyProperty< uint64_t > + Csw::ReadOnlyProperty< VerticalAlignment > + Csw::ReadOnlyProperty< wchar_t > + Csw::ReadOnlyProperty< WindowStartupLocation > + Csw::ReadOnlyProperty< WindowState > + Csw::Rect表示一个矩形区域 + Csw::RoutedEventArgs路由事件的参数 + Csw::RoutedEventArgsOfType< UIElement_GotChar > + Csw::GotCharEventArgs输入字符事件类型参数 + Csw::RoutedEventArgsOfType< UIElement_KeyDown > + Csw::KeyDownEventArgs键盘按键按下事件参数类型 + Csw::RoutedEventArgsOfType< UIElement_KeyUp > + Csw::KeyUpEventArgs键盘按键抬起事件参数类型 + Csw::RoutedEventArgsOfType< ListView_CheckStateChanged > + Csw::ListViewCheckStateChangedEventArgs列表视图某个复选框选中状态改变的事件参数类型 + Csw::RoutedEventArgsOfType< UIElement_MouseButtonDown > + Csw::MouseButtonDownEventArgs鼠标按键按下事件参数类型 + Csw::RoutedEventArgsOfType< UIElement_MouseButtonUp > + Csw::MouseButtonUpEventArgs鼠标按键抬起事件参数类型 + Csw::RoutedEventArgsOfType< UIElement_MouseMove > + Csw::MouseMoveEventArgs鼠标移动事件参数类型 + Csw::RoutedEventArgsOfType< UIElement_MouseWheel > + Csw::MouseWheelEventArgs鼠标滚轮滚动事件参数类型 + Csw::RoutedEventArgsOfType< UIElement_PositionChanged > + Csw::PositionChangedEventArgs位置改变事件参数类型 + Csw::RoutedEventArgsOfType< Layer_Scrolling > + Csw::ScrollingEventArgs窗口/面板滚动条滚动事件参数类型 + Csw::RoutedEventArgsOfType< UIElement_ShowContextMenu > + Csw::ShowContextMenuEventArgs显示用户自定义上下文菜单的事件参数类型 + Csw::RoutedEventArgsOfType< UIElement_SizeChanged > + Csw::SizeChangedEventArgs尺寸改变事件参数类型 + Csw::RoutedEventArgsOfType< Window_Closing > + Csw::WindowClosingEventArgs窗口正在关闭事件参数类型 + Csw::ListViewHeaderClickedEventArgs列表视图的列标题单击与双击事件参数类型 + Csw::ListViewItemClickedEventArgs列表视图项单击与双击事件参数类型 + Csw::RoutedEventArgsOfType< TYPE >表示特定类型路由事件的事件参数类型,继承自该类的事件参数可以用于RegisterRoutedEvent模板函数 + Csw::Screen屏幕相关 + Csw::Size尺寸 + Csw::Thickness表示矩形区域周围边框的厚度 + Cstd::true_type + Csw::_HasEventType< T, decltype(void(std::declval< T >().EventType))>模板特化:当T包含EventType时,将_IsTypedRoutedEventArgs<T>设为std::true_type + Csw::Utils工具类 + Csw::WndBase表示一个Windows窗口,是所有窗口和控件的基类 + Csw::UIElement表示界面中的元素 + Csw::WriteOnlyProperty< T >只写属性 + Csw::Property< int > + Csw::Property< std::wstring > + Csw::Property< AppQuitMode > + Csw::Property< bool > + Csw::Property< sw::CheckState > + Csw::Property< sw::HorizontalAlignment > + Csw::Property< sw::VerticalAlignment > + Csw::Property< sw::TextTrimming > + Csw::Property< sw::LayoutHost * > + Csw::Property< double > + Csw::Property< sw::BorderStyle > + Csw::Property< wchar_t > + Csw::Property< uint16_t > + Csw::Property< ProgressBarState > + Csw::Property< Orientation > + Csw::Property< sw::Orientation > + Csw::Property< TabAlignment > + Csw::Property< sw::Thickness > + Csw::Property< HorizontalAlignment > + Csw::Property< VerticalAlignment > + Csw::Property< uint64_t > + Csw::Property< sw::ContextMenu * > + Csw::Property< sw::Color > + Csw::Property< WindowStartupLocation > + Csw::Property< WindowState > + Csw::Property< sw::Menu * > + Csw::Property< sw::Font > + Csw::Property< sw::FontWeight > + Csw::Property< sw::Rect > + Csw::Property< T >属性 + Csw::WriteOnlyProperty< AppQuitMode > + Csw::WriteOnlyProperty< bool > + Csw::WriteOnlyProperty< double > + Csw::WriteOnlyProperty< HorizontalAlignment > + Csw::WriteOnlyProperty< int > + Csw::WriteOnlyProperty< Orientation > + Csw::WriteOnlyProperty< ProgressBarState > + Csw::WriteOnlyProperty< std::wstring > + Csw::WriteOnlyProperty< sw::BorderStyle > + Csw::WriteOnlyProperty< sw::CheckState > + Csw::WriteOnlyProperty< sw::Color > + Csw::WriteOnlyProperty< sw::ContextMenu * > + Csw::WriteOnlyProperty< sw::Font > + Csw::WriteOnlyProperty< sw::FontWeight > + Csw::WriteOnlyProperty< sw::HorizontalAlignment > + Csw::WriteOnlyProperty< sw::LayoutHost * > + Csw::WriteOnlyProperty< sw::Menu * > + Csw::WriteOnlyProperty< sw::Orientation > + Csw::WriteOnlyProperty< sw::Rect > + Csw::WriteOnlyProperty< sw::TextTrimming > + Csw::WriteOnlyProperty< sw::Thickness > + Csw::WriteOnlyProperty< sw::VerticalAlignment > + Csw::WriteOnlyProperty< TabAlignment > + Csw::WriteOnlyProperty< uint16_t > + Csw::WriteOnlyProperty< uint64_t > + Csw::WriteOnlyProperty< VerticalAlignment > + Csw::WriteOnlyProperty< wchar_t > + Csw::WriteOnlyProperty< WindowStartupLocation > + Csw::WriteOnlyProperty< WindowState > diff --git a/docs/hierarchy.js b/docs/hierarchy.js index d7ab2952..388f84cb 100644 --- a/docs/hierarchy.js +++ b/docs/hierarchy.js @@ -74,7 +74,9 @@ var hierarchy = [ "sw::ProgressBar", "classsw_1_1_progress_bar.html", null ], [ "sw::Slider", "classsw_1_1_slider.html", null ], [ "sw::StaticControl", "classsw_1_1_static_control.html", [ - [ "sw::Label", "classsw_1_1_label.html", null ] + [ "sw::HwndHost", "classsw_1_1_hwnd_host.html", null ], + [ "sw::Label", "classsw_1_1_label.html", null ], + [ "sw::Splitter", "classsw_1_1_splitter.html", null ] ] ], [ "sw::TabControl", "classsw_1_1_tab_control.html", null ], [ "sw::TextBoxBase", "classsw_1_1_text_box_base.html", [ @@ -120,6 +122,7 @@ var hierarchy = [ "sw::Property< wchar_t >", "classsw_1_1_property.html", null ], [ "sw::Property< uint16_t >", "classsw_1_1_property.html", null ], [ "sw::Property< ProgressBarState >", "classsw_1_1_property.html", null ], + [ "sw::Property< Orientation >", "classsw_1_1_property.html", null ], [ "sw::Property< sw::Orientation >", "classsw_1_1_property.html", null ], [ "sw::Property< TabAlignment >", "classsw_1_1_property.html", null ], [ "sw::Property< sw::Thickness >", "classsw_1_1_property.html", null ], @@ -143,6 +146,7 @@ var hierarchy = [ "sw::ReadOnlyProperty< HorizontalAlignment >", "classsw_1_1_read_only_property.html", null ], [ "sw::ReadOnlyProperty< HWND >", "classsw_1_1_read_only_property.html", null ], [ "sw::ReadOnlyProperty< int >", "classsw_1_1_read_only_property.html", null ], + [ "sw::ReadOnlyProperty< Orientation >", "classsw_1_1_read_only_property.html", null ], [ "sw::ReadOnlyProperty< ProgressBarState >", "classsw_1_1_read_only_property.html", null ], [ "sw::ReadOnlyProperty< std::wstring >", "classsw_1_1_read_only_property.html", null ], [ "sw::ReadOnlyProperty< StrList >", "classsw_1_1_read_only_property.html", null ], @@ -242,6 +246,7 @@ var hierarchy = [ "sw::Property< wchar_t >", "classsw_1_1_property.html", null ], [ "sw::Property< uint16_t >", "classsw_1_1_property.html", null ], [ "sw::Property< ProgressBarState >", "classsw_1_1_property.html", null ], + [ "sw::Property< Orientation >", "classsw_1_1_property.html", null ], [ "sw::Property< sw::Orientation >", "classsw_1_1_property.html", null ], [ "sw::Property< TabAlignment >", "classsw_1_1_property.html", null ], [ "sw::Property< sw::Thickness >", "classsw_1_1_property.html", null ], @@ -263,6 +268,7 @@ var hierarchy = [ "sw::WriteOnlyProperty< double >", "classsw_1_1_write_only_property.html", null ], [ "sw::WriteOnlyProperty< HorizontalAlignment >", "classsw_1_1_write_only_property.html", null ], [ "sw::WriteOnlyProperty< int >", "classsw_1_1_write_only_property.html", null ], + [ "sw::WriteOnlyProperty< Orientation >", "classsw_1_1_write_only_property.html", null ], [ "sw::WriteOnlyProperty< ProgressBarState >", "classsw_1_1_write_only_property.html", null ], [ "sw::WriteOnlyProperty< std::wstring >", "classsw_1_1_write_only_property.html", null ], [ "sw::WriteOnlyProperty< sw::BorderStyle >", "classsw_1_1_write_only_property.html", null ], diff --git a/docs/navtreedata.js b/docs/navtreedata.js index 35e115b4..2889903e 100644 --- a/docs/navtreedata.js +++ b/docs/navtreedata.js @@ -46,9 +46,9 @@ var NAVTREE = var NAVTREEINDEX = [ "_alignment_8h_source.html", -"classsw_1_1_layer.html#a61a3007c7519de5b677dcc61b723034a", -"classsw_1_1_text_box_base.html#a1e7210993dcbf6cfdaff3dcc3246dfd5", -"classsw_1_1_wnd_base.html#ad5e7d8d1a548315b3e709151f71766b3" +"classsw_1_1_layer.html#a465cbfd99c23c60b746529372a071274", +"classsw_1_1_tab_control.html#a6a4c0d7c81d279669765feaef0f55ecd", +"classsw_1_1_wnd_base.html#aaf334072263bea6dddf93a7601979023" ]; var SYNCONMSG = '点击 关闭 面板同步'; diff --git a/docs/navtreeindex0.js b/docs/navtreeindex0.js index 0c88031a..601254b5 100644 --- a/docs/navtreeindex0.js +++ b/docs/navtreeindex0.js @@ -23,58 +23,60 @@ var NAVTREEINDEX0 = "_grid_layout_8h_source.html":[1,0,0,0,20], "_group_box_8h_source.html":[1,0,0,0,21], "_hit_test_result_8h_source.html":[1,0,0,0,22], -"_i_layout_8h_source.html":[1,0,0,0,24], -"_i_tag_8h_source.html":[1,0,0,0,25], -"_icon_8h_source.html":[1,0,0,0,23], -"_items_control_8h_source.html":[1,0,0,0,26], -"_keys_8h_source.html":[1,0,0,0,27], -"_label_8h_source.html":[1,0,0,0,28], -"_layer_8h_source.html":[1,0,0,0,29], -"_layout_host_8h_source.html":[1,0,0,0,30], -"_list_8h_source.html":[1,0,0,0,31], -"_list_box_8h_source.html":[1,0,0,0,32], -"_list_view_8h_source.html":[1,0,0,0,33], -"_menu_8h_source.html":[1,0,0,0,34], -"_menu_base_8h_source.html":[1,0,0,0,35], -"_menu_item_8h_source.html":[1,0,0,0,36], -"_msg_box_8h_source.html":[1,0,0,0,37], -"_panel_8h_source.html":[1,0,0,0,38], -"_panel_base_8h_source.html":[1,0,0,0,39], -"_password_box_8h_source.html":[1,0,0,0,40], -"_path_8h_source.html":[1,0,0,0,41], -"_point_8h_source.html":[1,0,0,0,42], -"_proc_msg_8h_source.html":[1,0,0,0,43], -"_progress_bar_8h_source.html":[1,0,0,0,44], -"_property_8h_source.html":[1,0,0,0,45], -"_radio_button_8h_source.html":[1,0,0,0,46], -"_rect_8h_source.html":[1,0,0,0,47], -"_routed_event_8h_source.html":[1,0,0,0,48], -"_routed_event_args_8h_source.html":[1,0,0,0,49], -"_screen_8h_source.html":[1,0,0,0,50], -"_scroll_enums_8h_source.html":[1,0,0,0,51], -"_simple_window_8h_source.html":[1,0,0,0,52], -"_size_8h_source.html":[1,0,0,0,53], -"_slider_8h_source.html":[1,0,0,0,54], -"_stack_layout_8h_source.html":[1,0,0,0,55], -"_stack_layout_h_8h_source.html":[1,0,0,0,56], -"_stack_layout_v_8h_source.html":[1,0,0,0,57], -"_stack_panel_8h_source.html":[1,0,0,0,58], -"_static_control_8h_source.html":[1,0,0,0,59], -"_tab_control_8h_source.html":[1,0,0,0,60], -"_text_box_8h_source.html":[1,0,0,0,61], -"_text_box_base_8h_source.html":[1,0,0,0,62], -"_thickness_8h_source.html":[1,0,0,0,63], -"_u_i_element_8h_source.html":[1,0,0,0,64], -"_uniform_grid_8h_source.html":[1,0,0,0,65], -"_uniform_grid_layout_8h_source.html":[1,0,0,0,66], -"_utils_8h_source.html":[1,0,0,0,67], -"_window_8h_source.html":[1,0,0,0,68], -"_wnd_base_8h_source.html":[1,0,0,0,69], -"_wnd_msg_8h_source.html":[1,0,0,0,70], -"_wrap_layout_8h_source.html":[1,0,0,0,71], -"_wrap_layout_h_8h_source.html":[1,0,0,0,72], -"_wrap_layout_v_8h_source.html":[1,0,0,0,73], -"_wrap_panel_8h_source.html":[1,0,0,0,74], +"_hwnd_host_8h_source.html":[1,0,0,0,23], +"_i_layout_8h_source.html":[1,0,0,0,25], +"_i_tag_8h_source.html":[1,0,0,0,26], +"_icon_8h_source.html":[1,0,0,0,24], +"_items_control_8h_source.html":[1,0,0,0,27], +"_keys_8h_source.html":[1,0,0,0,28], +"_label_8h_source.html":[1,0,0,0,29], +"_layer_8h_source.html":[1,0,0,0,30], +"_layout_host_8h_source.html":[1,0,0,0,31], +"_list_8h_source.html":[1,0,0,0,32], +"_list_box_8h_source.html":[1,0,0,0,33], +"_list_view_8h_source.html":[1,0,0,0,34], +"_menu_8h_source.html":[1,0,0,0,35], +"_menu_base_8h_source.html":[1,0,0,0,36], +"_menu_item_8h_source.html":[1,0,0,0,37], +"_msg_box_8h_source.html":[1,0,0,0,38], +"_panel_8h_source.html":[1,0,0,0,39], +"_panel_base_8h_source.html":[1,0,0,0,40], +"_password_box_8h_source.html":[1,0,0,0,41], +"_path_8h_source.html":[1,0,0,0,42], +"_point_8h_source.html":[1,0,0,0,43], +"_proc_msg_8h_source.html":[1,0,0,0,44], +"_progress_bar_8h_source.html":[1,0,0,0,45], +"_property_8h_source.html":[1,0,0,0,46], +"_radio_button_8h_source.html":[1,0,0,0,47], +"_rect_8h_source.html":[1,0,0,0,48], +"_routed_event_8h_source.html":[1,0,0,0,49], +"_routed_event_args_8h_source.html":[1,0,0,0,50], +"_screen_8h_source.html":[1,0,0,0,51], +"_scroll_enums_8h_source.html":[1,0,0,0,52], +"_simple_window_8h_source.html":[1,0,0,0,53], +"_size_8h_source.html":[1,0,0,0,54], +"_slider_8h_source.html":[1,0,0,0,55], +"_splitter_8h_source.html":[1,0,0,0,56], +"_stack_layout_8h_source.html":[1,0,0,0,57], +"_stack_layout_h_8h_source.html":[1,0,0,0,58], +"_stack_layout_v_8h_source.html":[1,0,0,0,59], +"_stack_panel_8h_source.html":[1,0,0,0,60], +"_static_control_8h_source.html":[1,0,0,0,61], +"_tab_control_8h_source.html":[1,0,0,0,62], +"_text_box_8h_source.html":[1,0,0,0,63], +"_text_box_base_8h_source.html":[1,0,0,0,64], +"_thickness_8h_source.html":[1,0,0,0,65], +"_u_i_element_8h_source.html":[1,0,0,0,66], +"_uniform_grid_8h_source.html":[1,0,0,0,67], +"_uniform_grid_layout_8h_source.html":[1,0,0,0,68], +"_utils_8h_source.html":[1,0,0,0,69], +"_window_8h_source.html":[1,0,0,0,70], +"_wnd_base_8h_source.html":[1,0,0,0,71], +"_wnd_msg_8h_source.html":[1,0,0,0,72], +"_wrap_layout_8h_source.html":[1,0,0,0,73], +"_wrap_layout_h_8h_source.html":[1,0,0,0,74], +"_wrap_layout_v_8h_source.html":[1,0,0,0,75], +"_wrap_panel_8h_source.html":[1,0,0,0,76], "annotated.html":[0,0], "classes.html":[0,1], "classsw_1_1_app.html":[0,0,0,3], @@ -201,53 +203,51 @@ var NAVTREEINDEX0 = "classsw_1_1_grid_layout.html#aac702cbbed9459c559d85c337313d3a9":[0,0,0,31,1], "classsw_1_1_group_box.html":[0,0,0,34], "classsw_1_1_group_box.html#a6241500d4cd923499613dc0162a38275":[0,0,0,34,0], -"classsw_1_1_i_layout.html":[0,0,0,36], -"classsw_1_1_i_layout.html#a081e12b24d148735bfeeb5cc97b230f1":[0,0,0,36,3], -"classsw_1_1_i_layout.html#a5616892d25adc2666e83211036db7d80":[0,0,0,36,0], -"classsw_1_1_i_layout.html#a5b95a9aba620f4f42447869f5e7f75c3":[0,0,0,36,4], -"classsw_1_1_i_layout.html#aa07f4408aab5c6b088b69ede010fccd9":[0,0,0,36,2], -"classsw_1_1_i_layout.html#ab5c5df73b4a3e76840c5d16ab1dfb7fc":[0,0,0,36,6], -"classsw_1_1_i_layout.html#ab6a7ef612525020012594123732d24d4":[0,0,0,36,1], -"classsw_1_1_i_layout.html#afcdbdecd5f99cdb25b891c7dc3093fdb":[0,0,0,36,5], -"classsw_1_1_i_tag.html":[0,0,0,37], -"classsw_1_1_i_tag.html#a814b2084a60df545ba5d47e96f7928d3":[0,0,0,37,1], -"classsw_1_1_i_tag.html#ad50507cafd55b2d9c18cc5c74a0ed946":[0,0,0,37,0], -"classsw_1_1_icon_helper.html":[0,0,0,35], -"classsw_1_1_items_control.html":[0,0,0,38], -"classsw_1_1_items_control.html#a22321dbf927a5b508a3614e2565c76c2":[0,0,0,38,3], -"classsw_1_1_items_control.html#a34a19d40a81adc967b14e84689e8a7e4":[0,0,0,38,2], -"classsw_1_1_items_control.html#a36312564b15eb327474696bf407b7864":[0,0,0,38,1], -"classsw_1_1_items_control.html#a5fab112663e10fe37cf901fc6288bcff":[0,0,0,38,0], -"classsw_1_1_items_control.html#a765b2e51cb5f439c464abbe031b0db09":[0,0,0,38,11], -"classsw_1_1_items_control.html#a81efc45fe838c47908e37e241614c672":[0,0,0,38,13], -"classsw_1_1_items_control.html#a8cbd0b52306bcf3cec2d96be0c6dd0ba":[0,0,0,38,5], -"classsw_1_1_items_control.html#a8ee8ced8a1134133fa7066ee4e29b7eb":[0,0,0,38,8], -"classsw_1_1_items_control.html#aa23a550b08ca55e7d1c412f462124527":[0,0,0,38,9], -"classsw_1_1_items_control.html#aaf5eb0f69c26b57da81fe8a22f962ec6":[0,0,0,38,7], -"classsw_1_1_items_control.html#ab4f053e3c099caf009fab48f7370ad96":[0,0,0,38,6], -"classsw_1_1_items_control.html#ac8b269a4d6bd5b46f6f7026d5470b2c5":[0,0,0,38,4], -"classsw_1_1_items_control.html#ae78a074093f7746f18c1ece3654fdcf6":[0,0,0,38,12], -"classsw_1_1_items_control.html#af169d6e1cce32846f8d0043a69ab69b1":[0,0,0,38,10], -"classsw_1_1_label.html":[0,0,0,42], -"classsw_1_1_label.html#a18a52422a3d9c21f2025a4830533b088":[0,0,0,42,4], -"classsw_1_1_label.html#a83b3ae20c61b09a613cc07dddc1c9179":[0,0,0,42,6], -"classsw_1_1_label.html#a967e6a7cfc9341958f362ae94c56f583":[0,0,0,42,7], -"classsw_1_1_label.html#aa7fe8e679f9d35eaf5691403ed5c9a96":[0,0,0,42,2], -"classsw_1_1_label.html#ab127ad68d85e658bb2e8cb271df5cedc":[0,0,0,42,8], -"classsw_1_1_label.html#ae1ee6644b4de352317836eb2a4c00c3c":[0,0,0,42,0], -"classsw_1_1_label.html#af5e6d5d4530ee12b52ce2ab16f180aac":[0,0,0,42,1], -"classsw_1_1_label.html#af90d6f76f8d674ae945193f3f4f630e9":[0,0,0,42,3], -"classsw_1_1_label.html#af94d8f66f1119690c6c2dbca2f794de6":[0,0,0,42,5], -"classsw_1_1_layer.html":[0,0,0,43], -"classsw_1_1_layer.html#a3ac4fcba5970f01d5c944c0376a354c7":[0,0,0,43,10], -"classsw_1_1_layer.html#a3f5248e4483b277a2f99c9b3cde086b7":[0,0,0,43,9], -"classsw_1_1_layer.html#a418f1f936414fd657ad11a0c0f437cdb":[0,0,0,43,2], -"classsw_1_1_layer.html#a465cbfd99c23c60b746529372a071274":[0,0,0,43,6], -"classsw_1_1_layer.html#a4bb56843061a3db9497703f16e58f4ba":[0,0,0,43,27], -"classsw_1_1_layer.html#a4c9e94621cab7abd5ca2e10f5691c3c1":[0,0,0,43,3], -"classsw_1_1_layer.html#a53bc897b0a8c50761ccc6c2daf4e2e02":[0,0,0,43,23], -"classsw_1_1_layer.html#a57498353e1b1b74f708ec8da81b48605":[0,0,0,43,5], -"classsw_1_1_layer.html#a5965bfa865e07371ad9e2e773f720653":[0,0,0,43,4], -"classsw_1_1_layer.html#a5af8ff318d2438eab8f8b325cf8e66da":[0,0,0,43,28], -"classsw_1_1_layer.html#a61030d006cafc26525bc07bced899b92":[0,0,0,43,0] +"classsw_1_1_hwnd_host.html":[0,0,0,35], +"classsw_1_1_hwnd_host.html#a811a6d21dd8534addfc401bb79f829f7":[0,0,0,35,4], +"classsw_1_1_hwnd_host.html#a9535b63e17fbb079ce4f618c288cb9bd":[0,0,0,35,3], +"classsw_1_1_hwnd_host.html#a9ac22adfa9d96348e7f89932d82cf3d3":[0,0,0,35,0], +"classsw_1_1_hwnd_host.html#aebdcab5949f812ae64ecd79633cacc49":[0,0,0,35,2], +"classsw_1_1_hwnd_host.html#af644778e078302b01faf0ac2f5c7b75c":[0,0,0,35,1], +"classsw_1_1_i_layout.html":[0,0,0,37], +"classsw_1_1_i_layout.html#a081e12b24d148735bfeeb5cc97b230f1":[0,0,0,37,3], +"classsw_1_1_i_layout.html#a5616892d25adc2666e83211036db7d80":[0,0,0,37,0], +"classsw_1_1_i_layout.html#a5b95a9aba620f4f42447869f5e7f75c3":[0,0,0,37,4], +"classsw_1_1_i_layout.html#aa07f4408aab5c6b088b69ede010fccd9":[0,0,0,37,2], +"classsw_1_1_i_layout.html#ab5c5df73b4a3e76840c5d16ab1dfb7fc":[0,0,0,37,6], +"classsw_1_1_i_layout.html#ab6a7ef612525020012594123732d24d4":[0,0,0,37,1], +"classsw_1_1_i_layout.html#afcdbdecd5f99cdb25b891c7dc3093fdb":[0,0,0,37,5], +"classsw_1_1_i_tag.html":[0,0,0,38], +"classsw_1_1_i_tag.html#a814b2084a60df545ba5d47e96f7928d3":[0,0,0,38,1], +"classsw_1_1_i_tag.html#ad50507cafd55b2d9c18cc5c74a0ed946":[0,0,0,38,0], +"classsw_1_1_icon_helper.html":[0,0,0,36], +"classsw_1_1_items_control.html":[0,0,0,39], +"classsw_1_1_items_control.html#a22321dbf927a5b508a3614e2565c76c2":[0,0,0,39,3], +"classsw_1_1_items_control.html#a34a19d40a81adc967b14e84689e8a7e4":[0,0,0,39,2], +"classsw_1_1_items_control.html#a36312564b15eb327474696bf407b7864":[0,0,0,39,1], +"classsw_1_1_items_control.html#a5fab112663e10fe37cf901fc6288bcff":[0,0,0,39,0], +"classsw_1_1_items_control.html#a765b2e51cb5f439c464abbe031b0db09":[0,0,0,39,11], +"classsw_1_1_items_control.html#a81efc45fe838c47908e37e241614c672":[0,0,0,39,13], +"classsw_1_1_items_control.html#a8cbd0b52306bcf3cec2d96be0c6dd0ba":[0,0,0,39,5], +"classsw_1_1_items_control.html#a8ee8ced8a1134133fa7066ee4e29b7eb":[0,0,0,39,8], +"classsw_1_1_items_control.html#aa23a550b08ca55e7d1c412f462124527":[0,0,0,39,9], +"classsw_1_1_items_control.html#aaf5eb0f69c26b57da81fe8a22f962ec6":[0,0,0,39,7], +"classsw_1_1_items_control.html#ab4f053e3c099caf009fab48f7370ad96":[0,0,0,39,6], +"classsw_1_1_items_control.html#ac8b269a4d6bd5b46f6f7026d5470b2c5":[0,0,0,39,4], +"classsw_1_1_items_control.html#ae78a074093f7746f18c1ece3654fdcf6":[0,0,0,39,12], +"classsw_1_1_items_control.html#af169d6e1cce32846f8d0043a69ab69b1":[0,0,0,39,10], +"classsw_1_1_label.html":[0,0,0,43], +"classsw_1_1_label.html#a18a52422a3d9c21f2025a4830533b088":[0,0,0,43,4], +"classsw_1_1_label.html#a83b3ae20c61b09a613cc07dddc1c9179":[0,0,0,43,6], +"classsw_1_1_label.html#a967e6a7cfc9341958f362ae94c56f583":[0,0,0,43,7], +"classsw_1_1_label.html#aa7fe8e679f9d35eaf5691403ed5c9a96":[0,0,0,43,2], +"classsw_1_1_label.html#ab127ad68d85e658bb2e8cb271df5cedc":[0,0,0,43,8], +"classsw_1_1_label.html#ae1ee6644b4de352317836eb2a4c00c3c":[0,0,0,43,0], +"classsw_1_1_label.html#af5e6d5d4530ee12b52ce2ab16f180aac":[0,0,0,43,1], +"classsw_1_1_label.html#af90d6f76f8d674ae945193f3f4f630e9":[0,0,0,43,3], +"classsw_1_1_label.html#af94d8f66f1119690c6c2dbca2f794de6":[0,0,0,43,5], +"classsw_1_1_layer.html":[0,0,0,44], +"classsw_1_1_layer.html#a3ac4fcba5970f01d5c944c0376a354c7":[0,0,0,44,10], +"classsw_1_1_layer.html#a3f5248e4483b277a2f99c9b3cde086b7":[0,0,0,44,9], +"classsw_1_1_layer.html#a418f1f936414fd657ad11a0c0f437cdb":[0,0,0,44,2] }; diff --git a/docs/navtreeindex1.js b/docs/navtreeindex1.js index 8c70bc15..a976674d 100644 --- a/docs/navtreeindex1.js +++ b/docs/navtreeindex1.js @@ -1,253 +1,253 @@ var NAVTREEINDEX1 = { -"classsw_1_1_layer.html#a61a3007c7519de5b677dcc61b723034a":[0,0,0,43,7], -"classsw_1_1_layer.html#a64d09c3003a00ede215ebf5b52efd328":[0,0,0,43,19], -"classsw_1_1_layer.html#a6a371d0a4688e0ec05ad508572df3866":[0,0,0,43,15], -"classsw_1_1_layer.html#a764863242261f4373f2ec3da99ef0310":[0,0,0,43,22], -"classsw_1_1_layer.html#a76769d6a5eb98783dfe42b1473560996":[0,0,0,43,24], -"classsw_1_1_layer.html#a8c9c171806dc6021ea15c6a444a74efa":[0,0,0,43,14], -"classsw_1_1_layer.html#a9704f14ac77a0e0902b79058a2d29c8d":[0,0,0,43,1], -"classsw_1_1_layer.html#aa86cca7662b17b6a03467d0e7d1975da":[0,0,0,43,16], -"classsw_1_1_layer.html#aac08647d3f15d95e874a2c84c6237dde":[0,0,0,43,21], -"classsw_1_1_layer.html#ab199e8fc6b90975b7dcb5fdb4e5f2853":[0,0,0,43,11], -"classsw_1_1_layer.html#ab71b81212d598db06271a1338b42ff1e":[0,0,0,43,25], -"classsw_1_1_layer.html#ac06c5746cd104b7f8f9ab4d9ea9c5833":[0,0,0,43,13], -"classsw_1_1_layer.html#ac2826d1b12341d63b5b6be854dffd419":[0,0,0,43,18], -"classsw_1_1_layer.html#accb80d7a016d5a56b1c744db4ef96059":[0,0,0,43,30], -"classsw_1_1_layer.html#ad4a741e4ddddbd9886cefb88efd9e3e0":[0,0,0,43,26], -"classsw_1_1_layer.html#adac6ce15772ba5e2dcf2bfeed126e9d7":[0,0,0,43,33], -"classsw_1_1_layer.html#ae738d7ede2ba0d5547553df25f8d8ed8":[0,0,0,43,29], -"classsw_1_1_layer.html#ae79ad98e8d7f2fe5f66132ce797e9f70":[0,0,0,43,32], -"classsw_1_1_layer.html#aead2fa34ba3641781a849d3abd7f5839":[0,0,0,43,20], -"classsw_1_1_layer.html#aecfdee30e69119db86f0824d35a50ea4":[0,0,0,43,31], -"classsw_1_1_layer.html#aed843519d2ebd313ff0fb598548414aa":[0,0,0,43,17], -"classsw_1_1_layer.html#af21620044342125a8e59671a6fb222e8":[0,0,0,43,12], -"classsw_1_1_layer.html#af373e47fda965795550b31e622839a7f":[0,0,0,43,8], -"classsw_1_1_layout_host.html":[0,0,0,44], -"classsw_1_1_layout_host.html#a035aefcab7040b1ac1503e4f25501e48":[0,0,0,44,9], -"classsw_1_1_layout_host.html#a0c6c9750b12c5816608d78d72225b872":[0,0,0,44,4], -"classsw_1_1_layout_host.html#a4206d0a20d92581d33a4510fb2ba1871":[0,0,0,44,8], -"classsw_1_1_layout_host.html#a52f5e12df00e032fd424db409fd73951":[0,0,0,44,0], -"classsw_1_1_layout_host.html#a7099b15d8916a42f58de10d0266e89f6":[0,0,0,44,5], -"classsw_1_1_layout_host.html#aa520181822f89994362a010237687b3f":[0,0,0,44,7], -"classsw_1_1_layout_host.html#ab89962ec32dec364e4e18ea0afe44d52":[0,0,0,44,6], -"classsw_1_1_layout_host.html#abd04747a5d0395d5f95f06185e28b964":[0,0,0,44,3], -"classsw_1_1_layout_host.html#ac28cdcd081c105a2acedfddce436897d":[0,0,0,44,1], -"classsw_1_1_layout_host.html#ace58d1aefa8427892f71bfa8b91e9281":[0,0,0,44,2], -"classsw_1_1_list.html":[0,0,0,45], -"classsw_1_1_list.html#a39b94e22ea344de135667df991fbbe11":[0,0,0,45,4], -"classsw_1_1_list.html#a459de7b71327cf474c1ac24909b49773":[0,0,0,45,7], -"classsw_1_1_list.html#a4e4501c96b9e786d67b420312cafb8cc":[0,0,0,45,2], -"classsw_1_1_list.html#a53adb5e4e7172f03bf87113443e9d2b5":[0,0,0,45,11], -"classsw_1_1_list.html#a56e16552c6690d1c808646c4232dd992":[0,0,0,45,14], -"classsw_1_1_list.html#a5d1e8dcbb8c1b4ba128cb011ee401f3a":[0,0,0,45,15], -"classsw_1_1_list.html#a61b8b974966080702d94323ef0e46f85":[0,0,0,45,17], -"classsw_1_1_list.html#a68c7aaae99a0e18274de59cad82c5743":[0,0,0,45,12], -"classsw_1_1_list.html#a6998243269a9ad3bc5f4c9bdb6d90f99":[0,0,0,45,5], -"classsw_1_1_list.html#a6c5f217b25ad01a2af3b311520bcfc8e":[0,0,0,45,21], -"classsw_1_1_list.html#a765086d760ea625121500730a2579d28":[0,0,0,45,8], -"classsw_1_1_list.html#a926521f6a537069d6e398306b9f870fb":[0,0,0,45,18], -"classsw_1_1_list.html#a9630ceee45943beca3b53931b7864095":[0,0,0,45,10], -"classsw_1_1_list.html#a9a9a3e947b9591f2a0e7fde6fb2ac9a8":[0,0,0,45,6], -"classsw_1_1_list.html#aa14a40283db35522ff884cd737762720":[0,0,0,45,3], -"classsw_1_1_list.html#ab3818bbafce8936cc4a4f7a43dc163aa":[0,0,0,45,19], -"classsw_1_1_list.html#ab50f6f7c37c3c4649e332d596d5bda2f":[0,0,0,45,20], -"classsw_1_1_list.html#abfff18bc7387d154bc89481259f847a0":[0,0,0,45,1], -"classsw_1_1_list.html#ac06d9081e817d6c808453928dd33525a":[0,0,0,45,9], -"classsw_1_1_list.html#ad84dc17e0d073e18e2f44871c27025de":[0,0,0,45,0], -"classsw_1_1_list.html#ae0f77fc0d146ee739725da4cc337bbe4":[0,0,0,45,16], -"classsw_1_1_list.html#aed38231dffce414f40d272aba6e7099c":[0,0,0,45,13], -"classsw_1_1_list_box.html":[0,0,0,46], -"classsw_1_1_list_box.html#a016fb10dca302d2636bee60c8eabf6d9":[0,0,0,46,7], -"classsw_1_1_list_box.html#a018949ce98442934f04da456de5c6db1":[0,0,0,46,12], -"classsw_1_1_list_box.html#a0f6d69e679814a36523d091d81e839d7":[0,0,0,46,5], -"classsw_1_1_list_box.html#a1708816955c247ec4b7e0a1291486088":[0,0,0,46,13], -"classsw_1_1_list_box.html#a1b4104d35b0bbe19239fdaa4f43dd956":[0,0,0,46,15], -"classsw_1_1_list_box.html#a32f2ac7b969a63bf52d0d6f320e7f17c":[0,0,0,46,8], -"classsw_1_1_list_box.html#a3a55067d310d058f12c6bae420ca50e9":[0,0,0,46,3], -"classsw_1_1_list_box.html#a3fa1be9a1a9752e54d61cb6cadd1bc4a":[0,0,0,46,20], -"classsw_1_1_list_box.html#a479eeef30684198f09eaaa472def8550":[0,0,0,46,0], -"classsw_1_1_list_box.html#a6a75757143482d8024559027fe6ee524":[0,0,0,46,17], -"classsw_1_1_list_box.html#a6f921779be05ff24d598701feffd1705":[0,0,0,46,19], -"classsw_1_1_list_box.html#a7bc0ff18482d6a90f643e9b4d796c9ed":[0,0,0,46,14], -"classsw_1_1_list_box.html#a7de3b077cac741f297c0d5639e8a9edb":[0,0,0,46,10], -"classsw_1_1_list_box.html#a8082569a03ff936208ac5e07dfcf3ae8":[0,0,0,46,9], -"classsw_1_1_list_box.html#aa6dd58ecf150a782c5c3ec8f4f3c0355":[0,0,0,46,4], -"classsw_1_1_list_box.html#aa8db114872f69e0be2f32bebba134b20":[0,0,0,46,6], -"classsw_1_1_list_box.html#aaea8164e80a16084fb2fa47c894a16db":[0,0,0,46,16], -"classsw_1_1_list_box.html#abaa05ef08a38822976373307156029b2":[0,0,0,46,11], -"classsw_1_1_list_box.html#ac46c5faa96a5e3e28e9652f40a7e7486":[0,0,0,46,1], -"classsw_1_1_list_box.html#ae9db46dd55f8f156d31cf5fa9ea3409c":[0,0,0,46,18], -"classsw_1_1_list_box.html#af8f7832d3773fc8e9ddafbcfa617457f":[0,0,0,46,2], -"classsw_1_1_list_view.html":[0,0,0,47], -"classsw_1_1_list_view.html#a07b5ecb6c37936ae7b6cef9d68d7a541":[0,0,0,47,39], -"classsw_1_1_list_view.html#a0abf70d4eee217e060b84686f30b8a09":[0,0,0,47,16], -"classsw_1_1_list_view.html#a0b84ba1066f16317e48629059b94ded8":[0,0,0,47,37], -"classsw_1_1_list_view.html#a281ac94e46cb287611a25f78a3b91a06":[0,0,0,47,32], -"classsw_1_1_list_view.html#a294d8b15fd8755f4b6aa303092d5290a":[0,0,0,47,20], -"classsw_1_1_list_view.html#a34425690bf39e914861b2211004c2ce1":[0,0,0,47,17], -"classsw_1_1_list_view.html#a35e0f172950516ae97ab0bbbfddbab14":[0,0,0,47,6], -"classsw_1_1_list_view.html#a3c9979454e598336e819586d0cd8ea33":[0,0,0,47,7], -"classsw_1_1_list_view.html#a3d46f549079a2f75656de1e5903671cf":[0,0,0,47,25], -"classsw_1_1_list_view.html#a4158ee431cd207fc45ef4212baf7b37a":[0,0,0,47,41], -"classsw_1_1_list_view.html#a46f3f478e2f3bd4c1b3518eefd2a75fe":[0,0,0,47,2], -"classsw_1_1_list_view.html#a4ac92414b9424dc44aad14ed796ed943":[0,0,0,47,13], -"classsw_1_1_list_view.html#a56b546d6ddeadd258522b2441ec9bcc4":[0,0,0,47,28], -"classsw_1_1_list_view.html#a5b4b18df705396deeb3a2dc2fb0048cc":[0,0,0,47,18], -"classsw_1_1_list_view.html#a5b7f4ebd627de9cfcbfc9fa87dce183c":[0,0,0,47,3], -"classsw_1_1_list_view.html#a5c953126fc14e93dc7479efc03ceb4f9":[0,0,0,47,11], -"classsw_1_1_list_view.html#a60fce24f88dc39ab4b25a24edd44d940":[0,0,0,47,22], -"classsw_1_1_list_view.html#a65e4a2137e9cf7509adff246248732cc":[0,0,0,47,12], -"classsw_1_1_list_view.html#a6708aba4c056b8729c66fe39b4035b7b":[0,0,0,47,36], -"classsw_1_1_list_view.html#a6f491872e0416f1ab65cdb3866009293":[0,0,0,47,0], -"classsw_1_1_list_view.html#a71c4c33a03aa2811a3fee6d7a9d0c2c3":[0,0,0,47,30], -"classsw_1_1_list_view.html#a739a22388145f5bdc9d694e0a7cdf060":[0,0,0,47,26], -"classsw_1_1_list_view.html#a8ee454faaa1351526c069174589f5403":[0,0,0,47,29], -"classsw_1_1_list_view.html#a95013292cf5b588ff83ceeb4865a2993":[0,0,0,47,14], -"classsw_1_1_list_view.html#a985c48bef310cdcb10b722c9aec8ebbf":[0,0,0,47,15], -"classsw_1_1_list_view.html#a9f6978e162ff25d4328cad8496205ee9":[0,0,0,47,21], -"classsw_1_1_list_view.html#aa8794834f72d435f8b6dee8b34d1d59c":[0,0,0,47,27], -"classsw_1_1_list_view.html#aaa8be22cc91981886a241ca44c932c65":[0,0,0,47,10], -"classsw_1_1_list_view.html#aaad9cba6a7d80f3862720d2771cb28dc":[0,0,0,47,24], -"classsw_1_1_list_view.html#aad1b3b081bf328350b93f1cfba68cd0e":[0,0,0,47,23], -"classsw_1_1_list_view.html#ab3b05ee1d7f10c5abcc7b31facc5964b":[0,0,0,47,38], -"classsw_1_1_list_view.html#ab3fba4c9cb19eb933b132ba4a7694cac":[0,0,0,47,34], -"classsw_1_1_list_view.html#ab9a96bf777e2b3662007f17b274a4a2e":[0,0,0,47,8], -"classsw_1_1_list_view.html#abb85e686c9e461b12b9184763a5bc76a":[0,0,0,47,4], -"classsw_1_1_list_view.html#abdc6fdb5bbe352fa0cfed2587260f6fc":[0,0,0,47,1], -"classsw_1_1_list_view.html#ac34d4382c8e43346da5a67ebcf78f97f":[0,0,0,47,9], -"classsw_1_1_list_view.html#ac4de7a880d513d5fe78d9600304979d2":[0,0,0,47,5], -"classsw_1_1_list_view.html#acb06dc6710aafdb341e75fd92fc08af1":[0,0,0,47,33], -"classsw_1_1_list_view.html#ad51ae3ae4b5cf3b60d56867738a8b960":[0,0,0,47,35], -"classsw_1_1_list_view.html#ae1e499b6f04912769eb8f4fe732ad35c":[0,0,0,47,40], -"classsw_1_1_list_view.html#aebad3b5c7fafae2aa71f811beecfaeb8":[0,0,0,47,19], -"classsw_1_1_list_view.html#affa13393f8c08a2e1f1b9b4018ceef3f":[0,0,0,47,31], -"classsw_1_1_menu.html":[0,0,0,52], -"classsw_1_1_menu.html#a522312cc29234ea9048d94fae7258027":[0,0,0,52,3], -"classsw_1_1_menu.html#a546af91c1b0778610d79ed7e56423dd1":[0,0,0,52,2], -"classsw_1_1_menu.html#a6fb318031278424d8e571ee05b6654bc":[0,0,0,52,0], -"classsw_1_1_menu.html#ac24676f02acaac6350331a49ca2e6f44":[0,0,0,52,1], -"classsw_1_1_menu_base.html":[0,0,0,53], -"classsw_1_1_menu_base.html#a09259eb19e71878bd77f4d3dece7fed8":[0,0,0,53,10], -"classsw_1_1_menu_base.html#a114b4fe9eb2cd543c605479198d67517":[0,0,0,53,17], -"classsw_1_1_menu_base.html#a1aec7eb5fee274eed8a9a49179383a94":[0,0,0,53,19], -"classsw_1_1_menu_base.html#a1cb75444ab44b6b4dc3599634b30b07e":[0,0,0,53,11], -"classsw_1_1_menu_base.html#a207341719edb495ca22be7090b3a8b37":[0,0,0,53,9], -"classsw_1_1_menu_base.html#a2a631549b5be6a41f8a24342a880826d":[0,0,0,53,5], -"classsw_1_1_menu_base.html#a2f4d2832b6bcc759e291a99278b3eb12":[0,0,0,53,20], -"classsw_1_1_menu_base.html#a300bc76b5be03814cb8fa534a3a74cfe":[0,0,0,53,3], -"classsw_1_1_menu_base.html#a47fe9d419c9c50459389c46b410849d8":[0,0,0,53,8], -"classsw_1_1_menu_base.html#a48c5d3f04743099a94a1832fa7d9d31b":[0,0,0,53,1], -"classsw_1_1_menu_base.html#a537663148790e0516c1a2aca7b02afd1":[0,0,0,53,18], -"classsw_1_1_menu_base.html#a661efe79f75f4e6ae0d5b166b7db4147":[0,0,0,53,23], -"classsw_1_1_menu_base.html#a6fcf63228e79f855d4fa11c083028fb5":[0,0,0,53,15], -"classsw_1_1_menu_base.html#a75c96dd59694d38a9ea59e3973cd5bea":[0,0,0,53,16], -"classsw_1_1_menu_base.html#a7f18755d0245d1e8c536438b5ec99093":[0,0,0,53,7], -"classsw_1_1_menu_base.html#a84c15b6a20df581e6aed4b9df9e84f9a":[0,0,0,53,12], -"classsw_1_1_menu_base.html#a9f94aca19decada231feeed33ab19743":[0,0,0,53,13], -"classsw_1_1_menu_base.html#a9f9fb3eda715d2c71e3e4a1b0562bac8":[0,0,0,53,21], -"classsw_1_1_menu_base.html#aa105bc5eb9ecf6a59f1ccff4b075643c":[0,0,0,53,14], -"classsw_1_1_menu_base.html#aa48a89a167974e8a7397ffe6058c475f":[0,0,0,53,4], -"classsw_1_1_menu_base.html#aa5e31e8a7e3f1744fec35acfdce47b2e":[0,0,0,53,22], -"classsw_1_1_menu_base.html#aae4c6660b8c5341160a67d88bca9bc18":[0,0,0,53,0], -"classsw_1_1_menu_base.html#ab610a8a98e4bf6f199fe7706dbb57f4d":[0,0,0,53,6], -"classsw_1_1_menu_base.html#abde93ccb3c829385d8e15f6ee1a36d0f":[0,0,0,53,2], -"classsw_1_1_menu_item.html":[0,0,0,54], -"classsw_1_1_menu_item.html#a0f67fc28cb879876a328495035031979":[0,0,0,54,10], -"classsw_1_1_menu_item.html#a1187cb70902ab261b8302e7c0c561da9":[0,0,0,54,4], -"classsw_1_1_menu_item.html#a136e71998ffff40e3d165749ba7f7306":[0,0,0,54,5], -"classsw_1_1_menu_item.html#a1b1b34eaed41f83ca8e6072c0db486a0":[0,0,0,54,3], -"classsw_1_1_menu_item.html#a45cb03eb9423fbe1c187f237ec89377a":[0,0,0,54,0], -"classsw_1_1_menu_item.html#a71e23c18ace7346f28415ed747d80905":[0,0,0,54,9], -"classsw_1_1_menu_item.html#a7723b9fa2888c82ed5c61875ef077aad":[0,0,0,54,7], -"classsw_1_1_menu_item.html#a7f24130f1770af6fce9792fb41cba522":[0,0,0,54,2], -"classsw_1_1_menu_item.html#ab0b1236f09532f993324f76c07c7b8c7":[0,0,0,54,6], -"classsw_1_1_menu_item.html#ac8e01802bb6cc6f1336025819050f3c4":[0,0,0,54,8], -"classsw_1_1_menu_item.html#af68934d85fe10b3b01bf4038d66275e4":[0,0,0,54,1], -"classsw_1_1_msg_box.html":[0,0,0,59], -"classsw_1_1_panel.html":[0,0,0,60], -"classsw_1_1_panel.html#a655497d6bdbf760e34df1d799d89b009":[0,0,0,60,2], -"classsw_1_1_panel.html#a937db7d8878602d93eead371e0aab655":[0,0,0,60,0], -"classsw_1_1_panel.html#aa7b04b11114891c5df7b84932fd3370f":[0,0,0,60,3], -"classsw_1_1_panel.html#ab57a6afea25cdefeea622ff364727a8e":[0,0,0,60,1], -"classsw_1_1_panel_base.html":[0,0,0,61], -"classsw_1_1_panel_base.html#a7acc50ef3ccea1f4efa8d1d3fdf18fa9":[0,0,0,61,1], -"classsw_1_1_panel_base.html#a8ac6001fdc5c32131b3d33678bd376b3":[0,0,0,61,3], -"classsw_1_1_panel_base.html#a9d40f5306f341eb9fff7c389b11f76f6":[0,0,0,61,4], -"classsw_1_1_panel_base.html#ab7630a76728d4d464b0bee1bfdbdca9b":[0,0,0,61,2], -"classsw_1_1_panel_base.html#abab2cca25b5d32f8bce01252e9db500e":[0,0,0,61,0], -"classsw_1_1_panel_base.html#af23d21a7b280c75e49278ce141ff428b":[0,0,0,61,5], -"classsw_1_1_password_box.html":[0,0,0,62], -"classsw_1_1_password_box.html#a5e6b907e4c80b16dc1691eb6271778f5":[0,0,0,62,0], -"classsw_1_1_password_box.html#acb858c64ba690363567d5c73cc49ad7e":[0,0,0,62,1], -"classsw_1_1_path.html":[0,0,0,63], -"classsw_1_1_progress_bar.html":[0,0,0,67], -"classsw_1_1_progress_bar.html#a23e176b3cc807b9e0e403e214421179c":[0,0,0,67,1], -"classsw_1_1_progress_bar.html#a3a211f4e0318c79bcc4a64720b6f8651":[0,0,0,67,5], -"classsw_1_1_progress_bar.html#a461cb23f2cc6c276eda9312cb269a403":[0,0,0,67,0], -"classsw_1_1_progress_bar.html#a596e05cda7fcc656dde20354a519cee4":[0,0,0,67,3], -"classsw_1_1_progress_bar.html#a6dd5e209fbc7f35a89309f4056ae3d1f":[0,0,0,67,4], -"classsw_1_1_progress_bar.html#ad6ae6e88db8560fb7574e22c87a72ce5":[0,0,0,67,2], -"classsw_1_1_property.html":[0,0,0,68], -"classsw_1_1_property.html#a15318a6d29413d76006662d698f447c5":[0,0,0,68,2], -"classsw_1_1_property.html#a657ad195af10d76fb55801b3cec62aca":[0,0,0,68,0], -"classsw_1_1_property.html#adbca5ee89c3f7d07035fcece6af5c9be":[0,0,0,68,1], -"classsw_1_1_radio_button.html":[0,0,0,69], -"classsw_1_1_radio_button.html#ab3a285dc904b85423de229d3187ec408":[0,0,0,69,0], -"classsw_1_1_read_only_property.html":[0,0,0,70], -"classsw_1_1_read_only_property.html#a081d365b2904532c706e9dc7e4c0bd90":[0,0,0,70,4], -"classsw_1_1_read_only_property.html#a7610c93a1d2bcbdb34a97ac90e36fcea":[0,0,0,70,2], -"classsw_1_1_read_only_property.html#a800a531ff60f5be40012d548537be339":[0,0,0,70,0], -"classsw_1_1_read_only_property.html#ac4317dbef2c25af64659b805cbbb26f6":[0,0,0,70,1], -"classsw_1_1_read_only_property.html#ace02f4ac6e2e2ba863038ed5b1befb8c":[0,0,0,70,3], -"classsw_1_1_screen.html":[0,0,0,74], -"classsw_1_1_slider.html":[0,0,0,79], -"classsw_1_1_slider.html#a0614fc49d6825b3f864171246fa15892":[0,0,0,79,2], -"classsw_1_1_slider.html#a1bc544724aafc7ac79ca14fdc0e126a5":[0,0,0,79,4], -"classsw_1_1_slider.html#a3f0efcf4b566cec56fed536786556a00":[0,0,0,79,9], -"classsw_1_1_slider.html#a44907de8805117d38ba3631545f39453":[0,0,0,79,0], -"classsw_1_1_slider.html#a7791814523c6758f573499fa9f1ca074":[0,0,0,79,1], -"classsw_1_1_slider.html#a85276ebc466a4dbe6923f033bfe2b1cf":[0,0,0,79,8], -"classsw_1_1_slider.html#ab44222d9c4bacb9294a6578778b56256":[0,0,0,79,5], -"classsw_1_1_slider.html#ac4595d8d74e4759310cb0fc07fb7308a":[0,0,0,79,7], -"classsw_1_1_slider.html#acf6c700d10cedb1ac2c69072a9ea0549":[0,0,0,79,3], -"classsw_1_1_slider.html#ae3a7b7c831318c34341bfdf363daf4c2":[0,0,0,79,6], -"classsw_1_1_stack_layout.html":[0,0,0,80], -"classsw_1_1_stack_layout.html#a45b50cf0df7e1ce86e817a47940e7226":[0,0,0,80,0], -"classsw_1_1_stack_layout.html#aa425ef22052ca56ed1e0358374db00a5":[0,0,0,80,2], -"classsw_1_1_stack_layout.html#aeae06d336288887cf29c912aee4c03b6":[0,0,0,80,1], -"classsw_1_1_stack_layout_h.html":[0,0,0,81], -"classsw_1_1_stack_layout_h.html#a1b527c76303aed32cad3f4a13bd991a2":[0,0,0,81,0], -"classsw_1_1_stack_layout_h.html#ab5ae73207dfc9020a799c3fd1a4d9231":[0,0,0,81,1], -"classsw_1_1_stack_layout_v.html":[0,0,0,82], -"classsw_1_1_stack_layout_v.html#a11f007de647c9b1c88120aeed9ea65b7":[0,0,0,82,1], -"classsw_1_1_stack_layout_v.html#a383ec238bac4bdb91d20e39b8ac8a0e1":[0,0,0,82,0], -"classsw_1_1_stack_panel.html":[0,0,0,83], -"classsw_1_1_stack_panel.html#a1d7bd2e8b8293003e47f5d297c58044b":[0,0,0,83,1], -"classsw_1_1_stack_panel.html#adaf90a1ad8018e5365e22f45a0a0341a":[0,0,0,83,0], -"classsw_1_1_stack_panel.html#affb5896d0e3e3b615bcbb285c8e03bf4":[0,0,0,83,2], -"classsw_1_1_static_control.html":[0,0,0,84], -"classsw_1_1_static_control.html#a1aa16699f8b60dd9fb6cd3c6b6c129e4":[0,0,0,84,1], -"classsw_1_1_static_control.html#a88dea3db611c5cc94df004cdae9c74ef":[0,0,0,84,0], -"classsw_1_1_tab_control.html":[0,0,0,85], -"classsw_1_1_tab_control.html#a09a693f18956f7629fab2377ab1a1dda":[0,0,0,85,9], -"classsw_1_1_tab_control.html#a14f5debfc882417906f0d610617f5b05":[0,0,0,85,10], -"classsw_1_1_tab_control.html#a1642e450b1cf606338eb85bd9f93c82c":[0,0,0,85,5], -"classsw_1_1_tab_control.html#a2826913f7180e01ec24542dd87ea8676":[0,0,0,85,1], -"classsw_1_1_tab_control.html#a402ae0be40a8a236d09b5c8a31c5aca1":[0,0,0,85,0], -"classsw_1_1_tab_control.html#a5e70f66a21997157773d149dec3339ce":[0,0,0,85,12], -"classsw_1_1_tab_control.html#a654688668bdf8331e27cbe4564d6cf63":[0,0,0,85,6], -"classsw_1_1_tab_control.html#a6a4c0d7c81d279669765feaef0f55ecd":[0,0,0,85,3], -"classsw_1_1_tab_control.html#ab14ce7faf0e6feb71ba66e7a1029673c":[0,0,0,85,8], -"classsw_1_1_tab_control.html#ac0342af02418896ed6e98f6d11125348":[0,0,0,85,4], -"classsw_1_1_tab_control.html#ac52a5ebc430c68920f8ee7e7755f7f34":[0,0,0,85,2], -"classsw_1_1_tab_control.html#acbde185af6197161f7b22485ebff02b2":[0,0,0,85,7], -"classsw_1_1_tab_control.html#ae0fc4dead5149c903eb429d0927ec182":[0,0,0,85,11], -"classsw_1_1_text_box.html":[0,0,0,86], -"classsw_1_1_text_box.html#a4fed0b73690d263fb740f09eda870fdb":[0,0,0,86,2], -"classsw_1_1_text_box.html#a74bf917de24ebc4ce676306922a080ec":[0,0,0,86,3], -"classsw_1_1_text_box.html#a8fa3d053d6386f3aac435133dbe3a05a":[0,0,0,86,4], -"classsw_1_1_text_box.html#aada3afc3bd30f97361d20b598903dabb":[0,0,0,86,1], -"classsw_1_1_text_box.html#ae2cffffb2a78119a7094d78109060326":[0,0,0,86,0], -"classsw_1_1_text_box_base.html":[0,0,0,87] +"classsw_1_1_layer.html#a465cbfd99c23c60b746529372a071274":[0,0,0,44,6], +"classsw_1_1_layer.html#a4bb56843061a3db9497703f16e58f4ba":[0,0,0,44,27], +"classsw_1_1_layer.html#a4c9e94621cab7abd5ca2e10f5691c3c1":[0,0,0,44,3], +"classsw_1_1_layer.html#a53bc897b0a8c50761ccc6c2daf4e2e02":[0,0,0,44,23], +"classsw_1_1_layer.html#a57498353e1b1b74f708ec8da81b48605":[0,0,0,44,5], +"classsw_1_1_layer.html#a5965bfa865e07371ad9e2e773f720653":[0,0,0,44,4], +"classsw_1_1_layer.html#a5af8ff318d2438eab8f8b325cf8e66da":[0,0,0,44,28], +"classsw_1_1_layer.html#a61030d006cafc26525bc07bced899b92":[0,0,0,44,0], +"classsw_1_1_layer.html#a61a3007c7519de5b677dcc61b723034a":[0,0,0,44,7], +"classsw_1_1_layer.html#a64d09c3003a00ede215ebf5b52efd328":[0,0,0,44,19], +"classsw_1_1_layer.html#a6a371d0a4688e0ec05ad508572df3866":[0,0,0,44,15], +"classsw_1_1_layer.html#a764863242261f4373f2ec3da99ef0310":[0,0,0,44,22], +"classsw_1_1_layer.html#a76769d6a5eb98783dfe42b1473560996":[0,0,0,44,24], +"classsw_1_1_layer.html#a8c9c171806dc6021ea15c6a444a74efa":[0,0,0,44,14], +"classsw_1_1_layer.html#a9704f14ac77a0e0902b79058a2d29c8d":[0,0,0,44,1], +"classsw_1_1_layer.html#aa86cca7662b17b6a03467d0e7d1975da":[0,0,0,44,16], +"classsw_1_1_layer.html#aac08647d3f15d95e874a2c84c6237dde":[0,0,0,44,21], +"classsw_1_1_layer.html#ab199e8fc6b90975b7dcb5fdb4e5f2853":[0,0,0,44,11], +"classsw_1_1_layer.html#ab71b81212d598db06271a1338b42ff1e":[0,0,0,44,25], +"classsw_1_1_layer.html#ac06c5746cd104b7f8f9ab4d9ea9c5833":[0,0,0,44,13], +"classsw_1_1_layer.html#ac2826d1b12341d63b5b6be854dffd419":[0,0,0,44,18], +"classsw_1_1_layer.html#accb80d7a016d5a56b1c744db4ef96059":[0,0,0,44,30], +"classsw_1_1_layer.html#ad4a741e4ddddbd9886cefb88efd9e3e0":[0,0,0,44,26], +"classsw_1_1_layer.html#adac6ce15772ba5e2dcf2bfeed126e9d7":[0,0,0,44,33], +"classsw_1_1_layer.html#ae738d7ede2ba0d5547553df25f8d8ed8":[0,0,0,44,29], +"classsw_1_1_layer.html#ae79ad98e8d7f2fe5f66132ce797e9f70":[0,0,0,44,32], +"classsw_1_1_layer.html#aead2fa34ba3641781a849d3abd7f5839":[0,0,0,44,20], +"classsw_1_1_layer.html#aecfdee30e69119db86f0824d35a50ea4":[0,0,0,44,31], +"classsw_1_1_layer.html#aed843519d2ebd313ff0fb598548414aa":[0,0,0,44,17], +"classsw_1_1_layer.html#af21620044342125a8e59671a6fb222e8":[0,0,0,44,12], +"classsw_1_1_layer.html#af373e47fda965795550b31e622839a7f":[0,0,0,44,8], +"classsw_1_1_layout_host.html":[0,0,0,45], +"classsw_1_1_layout_host.html#a035aefcab7040b1ac1503e4f25501e48":[0,0,0,45,9], +"classsw_1_1_layout_host.html#a0c6c9750b12c5816608d78d72225b872":[0,0,0,45,4], +"classsw_1_1_layout_host.html#a4206d0a20d92581d33a4510fb2ba1871":[0,0,0,45,8], +"classsw_1_1_layout_host.html#a52f5e12df00e032fd424db409fd73951":[0,0,0,45,0], +"classsw_1_1_layout_host.html#a7099b15d8916a42f58de10d0266e89f6":[0,0,0,45,5], +"classsw_1_1_layout_host.html#aa520181822f89994362a010237687b3f":[0,0,0,45,7], +"classsw_1_1_layout_host.html#ab89962ec32dec364e4e18ea0afe44d52":[0,0,0,45,6], +"classsw_1_1_layout_host.html#abd04747a5d0395d5f95f06185e28b964":[0,0,0,45,3], +"classsw_1_1_layout_host.html#ac28cdcd081c105a2acedfddce436897d":[0,0,0,45,1], +"classsw_1_1_layout_host.html#ace58d1aefa8427892f71bfa8b91e9281":[0,0,0,45,2], +"classsw_1_1_list.html":[0,0,0,46], +"classsw_1_1_list.html#a39b94e22ea344de135667df991fbbe11":[0,0,0,46,4], +"classsw_1_1_list.html#a459de7b71327cf474c1ac24909b49773":[0,0,0,46,7], +"classsw_1_1_list.html#a4e4501c96b9e786d67b420312cafb8cc":[0,0,0,46,2], +"classsw_1_1_list.html#a53adb5e4e7172f03bf87113443e9d2b5":[0,0,0,46,11], +"classsw_1_1_list.html#a56e16552c6690d1c808646c4232dd992":[0,0,0,46,14], +"classsw_1_1_list.html#a5d1e8dcbb8c1b4ba128cb011ee401f3a":[0,0,0,46,15], +"classsw_1_1_list.html#a61b8b974966080702d94323ef0e46f85":[0,0,0,46,17], +"classsw_1_1_list.html#a68c7aaae99a0e18274de59cad82c5743":[0,0,0,46,12], +"classsw_1_1_list.html#a6998243269a9ad3bc5f4c9bdb6d90f99":[0,0,0,46,5], +"classsw_1_1_list.html#a6c5f217b25ad01a2af3b311520bcfc8e":[0,0,0,46,21], +"classsw_1_1_list.html#a765086d760ea625121500730a2579d28":[0,0,0,46,8], +"classsw_1_1_list.html#a926521f6a537069d6e398306b9f870fb":[0,0,0,46,18], +"classsw_1_1_list.html#a9630ceee45943beca3b53931b7864095":[0,0,0,46,10], +"classsw_1_1_list.html#a9a9a3e947b9591f2a0e7fde6fb2ac9a8":[0,0,0,46,6], +"classsw_1_1_list.html#aa14a40283db35522ff884cd737762720":[0,0,0,46,3], +"classsw_1_1_list.html#ab3818bbafce8936cc4a4f7a43dc163aa":[0,0,0,46,19], +"classsw_1_1_list.html#ab50f6f7c37c3c4649e332d596d5bda2f":[0,0,0,46,20], +"classsw_1_1_list.html#abfff18bc7387d154bc89481259f847a0":[0,0,0,46,1], +"classsw_1_1_list.html#ac06d9081e817d6c808453928dd33525a":[0,0,0,46,9], +"classsw_1_1_list.html#ad84dc17e0d073e18e2f44871c27025de":[0,0,0,46,0], +"classsw_1_1_list.html#ae0f77fc0d146ee739725da4cc337bbe4":[0,0,0,46,16], +"classsw_1_1_list.html#aed38231dffce414f40d272aba6e7099c":[0,0,0,46,13], +"classsw_1_1_list_box.html":[0,0,0,47], +"classsw_1_1_list_box.html#a016fb10dca302d2636bee60c8eabf6d9":[0,0,0,47,7], +"classsw_1_1_list_box.html#a018949ce98442934f04da456de5c6db1":[0,0,0,47,12], +"classsw_1_1_list_box.html#a0f6d69e679814a36523d091d81e839d7":[0,0,0,47,5], +"classsw_1_1_list_box.html#a1708816955c247ec4b7e0a1291486088":[0,0,0,47,13], +"classsw_1_1_list_box.html#a1b4104d35b0bbe19239fdaa4f43dd956":[0,0,0,47,15], +"classsw_1_1_list_box.html#a32f2ac7b969a63bf52d0d6f320e7f17c":[0,0,0,47,8], +"classsw_1_1_list_box.html#a3a55067d310d058f12c6bae420ca50e9":[0,0,0,47,3], +"classsw_1_1_list_box.html#a3fa1be9a1a9752e54d61cb6cadd1bc4a":[0,0,0,47,20], +"classsw_1_1_list_box.html#a479eeef30684198f09eaaa472def8550":[0,0,0,47,0], +"classsw_1_1_list_box.html#a6a75757143482d8024559027fe6ee524":[0,0,0,47,17], +"classsw_1_1_list_box.html#a6f921779be05ff24d598701feffd1705":[0,0,0,47,19], +"classsw_1_1_list_box.html#a7bc0ff18482d6a90f643e9b4d796c9ed":[0,0,0,47,14], +"classsw_1_1_list_box.html#a7de3b077cac741f297c0d5639e8a9edb":[0,0,0,47,10], +"classsw_1_1_list_box.html#a8082569a03ff936208ac5e07dfcf3ae8":[0,0,0,47,9], +"classsw_1_1_list_box.html#aa6dd58ecf150a782c5c3ec8f4f3c0355":[0,0,0,47,4], +"classsw_1_1_list_box.html#aa8db114872f69e0be2f32bebba134b20":[0,0,0,47,6], +"classsw_1_1_list_box.html#aaea8164e80a16084fb2fa47c894a16db":[0,0,0,47,16], +"classsw_1_1_list_box.html#abaa05ef08a38822976373307156029b2":[0,0,0,47,11], +"classsw_1_1_list_box.html#ac46c5faa96a5e3e28e9652f40a7e7486":[0,0,0,47,1], +"classsw_1_1_list_box.html#ae9db46dd55f8f156d31cf5fa9ea3409c":[0,0,0,47,18], +"classsw_1_1_list_box.html#af8f7832d3773fc8e9ddafbcfa617457f":[0,0,0,47,2], +"classsw_1_1_list_view.html":[0,0,0,48], +"classsw_1_1_list_view.html#a07b5ecb6c37936ae7b6cef9d68d7a541":[0,0,0,48,39], +"classsw_1_1_list_view.html#a0abf70d4eee217e060b84686f30b8a09":[0,0,0,48,16], +"classsw_1_1_list_view.html#a0b84ba1066f16317e48629059b94ded8":[0,0,0,48,37], +"classsw_1_1_list_view.html#a281ac94e46cb287611a25f78a3b91a06":[0,0,0,48,32], +"classsw_1_1_list_view.html#a294d8b15fd8755f4b6aa303092d5290a":[0,0,0,48,20], +"classsw_1_1_list_view.html#a34425690bf39e914861b2211004c2ce1":[0,0,0,48,17], +"classsw_1_1_list_view.html#a35e0f172950516ae97ab0bbbfddbab14":[0,0,0,48,6], +"classsw_1_1_list_view.html#a3c9979454e598336e819586d0cd8ea33":[0,0,0,48,7], +"classsw_1_1_list_view.html#a3d46f549079a2f75656de1e5903671cf":[0,0,0,48,25], +"classsw_1_1_list_view.html#a4158ee431cd207fc45ef4212baf7b37a":[0,0,0,48,41], +"classsw_1_1_list_view.html#a46f3f478e2f3bd4c1b3518eefd2a75fe":[0,0,0,48,2], +"classsw_1_1_list_view.html#a4ac92414b9424dc44aad14ed796ed943":[0,0,0,48,13], +"classsw_1_1_list_view.html#a56b546d6ddeadd258522b2441ec9bcc4":[0,0,0,48,28], +"classsw_1_1_list_view.html#a5b4b18df705396deeb3a2dc2fb0048cc":[0,0,0,48,18], +"classsw_1_1_list_view.html#a5b7f4ebd627de9cfcbfc9fa87dce183c":[0,0,0,48,3], +"classsw_1_1_list_view.html#a5c953126fc14e93dc7479efc03ceb4f9":[0,0,0,48,11], +"classsw_1_1_list_view.html#a60fce24f88dc39ab4b25a24edd44d940":[0,0,0,48,22], +"classsw_1_1_list_view.html#a65e4a2137e9cf7509adff246248732cc":[0,0,0,48,12], +"classsw_1_1_list_view.html#a6708aba4c056b8729c66fe39b4035b7b":[0,0,0,48,36], +"classsw_1_1_list_view.html#a6f491872e0416f1ab65cdb3866009293":[0,0,0,48,0], +"classsw_1_1_list_view.html#a71c4c33a03aa2811a3fee6d7a9d0c2c3":[0,0,0,48,30], +"classsw_1_1_list_view.html#a739a22388145f5bdc9d694e0a7cdf060":[0,0,0,48,26], +"classsw_1_1_list_view.html#a8ee454faaa1351526c069174589f5403":[0,0,0,48,29], +"classsw_1_1_list_view.html#a95013292cf5b588ff83ceeb4865a2993":[0,0,0,48,14], +"classsw_1_1_list_view.html#a985c48bef310cdcb10b722c9aec8ebbf":[0,0,0,48,15], +"classsw_1_1_list_view.html#a9f6978e162ff25d4328cad8496205ee9":[0,0,0,48,21], +"classsw_1_1_list_view.html#aa8794834f72d435f8b6dee8b34d1d59c":[0,0,0,48,27], +"classsw_1_1_list_view.html#aaa8be22cc91981886a241ca44c932c65":[0,0,0,48,10], +"classsw_1_1_list_view.html#aaad9cba6a7d80f3862720d2771cb28dc":[0,0,0,48,24], +"classsw_1_1_list_view.html#aad1b3b081bf328350b93f1cfba68cd0e":[0,0,0,48,23], +"classsw_1_1_list_view.html#ab3b05ee1d7f10c5abcc7b31facc5964b":[0,0,0,48,38], +"classsw_1_1_list_view.html#ab3fba4c9cb19eb933b132ba4a7694cac":[0,0,0,48,34], +"classsw_1_1_list_view.html#ab9a96bf777e2b3662007f17b274a4a2e":[0,0,0,48,8], +"classsw_1_1_list_view.html#abb85e686c9e461b12b9184763a5bc76a":[0,0,0,48,4], +"classsw_1_1_list_view.html#abdc6fdb5bbe352fa0cfed2587260f6fc":[0,0,0,48,1], +"classsw_1_1_list_view.html#ac34d4382c8e43346da5a67ebcf78f97f":[0,0,0,48,9], +"classsw_1_1_list_view.html#ac4de7a880d513d5fe78d9600304979d2":[0,0,0,48,5], +"classsw_1_1_list_view.html#acb06dc6710aafdb341e75fd92fc08af1":[0,0,0,48,33], +"classsw_1_1_list_view.html#ad51ae3ae4b5cf3b60d56867738a8b960":[0,0,0,48,35], +"classsw_1_1_list_view.html#ae1e499b6f04912769eb8f4fe732ad35c":[0,0,0,48,40], +"classsw_1_1_list_view.html#aebad3b5c7fafae2aa71f811beecfaeb8":[0,0,0,48,19], +"classsw_1_1_list_view.html#affa13393f8c08a2e1f1b9b4018ceef3f":[0,0,0,48,31], +"classsw_1_1_menu.html":[0,0,0,53], +"classsw_1_1_menu.html#a522312cc29234ea9048d94fae7258027":[0,0,0,53,3], +"classsw_1_1_menu.html#a546af91c1b0778610d79ed7e56423dd1":[0,0,0,53,2], +"classsw_1_1_menu.html#a6fb318031278424d8e571ee05b6654bc":[0,0,0,53,0], +"classsw_1_1_menu.html#ac24676f02acaac6350331a49ca2e6f44":[0,0,0,53,1], +"classsw_1_1_menu_base.html":[0,0,0,54], +"classsw_1_1_menu_base.html#a09259eb19e71878bd77f4d3dece7fed8":[0,0,0,54,10], +"classsw_1_1_menu_base.html#a114b4fe9eb2cd543c605479198d67517":[0,0,0,54,17], +"classsw_1_1_menu_base.html#a1aec7eb5fee274eed8a9a49179383a94":[0,0,0,54,19], +"classsw_1_1_menu_base.html#a1cb75444ab44b6b4dc3599634b30b07e":[0,0,0,54,11], +"classsw_1_1_menu_base.html#a207341719edb495ca22be7090b3a8b37":[0,0,0,54,9], +"classsw_1_1_menu_base.html#a2a631549b5be6a41f8a24342a880826d":[0,0,0,54,5], +"classsw_1_1_menu_base.html#a2f4d2832b6bcc759e291a99278b3eb12":[0,0,0,54,20], +"classsw_1_1_menu_base.html#a300bc76b5be03814cb8fa534a3a74cfe":[0,0,0,54,3], +"classsw_1_1_menu_base.html#a47fe9d419c9c50459389c46b410849d8":[0,0,0,54,8], +"classsw_1_1_menu_base.html#a48c5d3f04743099a94a1832fa7d9d31b":[0,0,0,54,1], +"classsw_1_1_menu_base.html#a537663148790e0516c1a2aca7b02afd1":[0,0,0,54,18], +"classsw_1_1_menu_base.html#a661efe79f75f4e6ae0d5b166b7db4147":[0,0,0,54,23], +"classsw_1_1_menu_base.html#a6fcf63228e79f855d4fa11c083028fb5":[0,0,0,54,15], +"classsw_1_1_menu_base.html#a75c96dd59694d38a9ea59e3973cd5bea":[0,0,0,54,16], +"classsw_1_1_menu_base.html#a7f18755d0245d1e8c536438b5ec99093":[0,0,0,54,7], +"classsw_1_1_menu_base.html#a84c15b6a20df581e6aed4b9df9e84f9a":[0,0,0,54,12], +"classsw_1_1_menu_base.html#a9f94aca19decada231feeed33ab19743":[0,0,0,54,13], +"classsw_1_1_menu_base.html#a9f9fb3eda715d2c71e3e4a1b0562bac8":[0,0,0,54,21], +"classsw_1_1_menu_base.html#aa105bc5eb9ecf6a59f1ccff4b075643c":[0,0,0,54,14], +"classsw_1_1_menu_base.html#aa48a89a167974e8a7397ffe6058c475f":[0,0,0,54,4], +"classsw_1_1_menu_base.html#aa5e31e8a7e3f1744fec35acfdce47b2e":[0,0,0,54,22], +"classsw_1_1_menu_base.html#aae4c6660b8c5341160a67d88bca9bc18":[0,0,0,54,0], +"classsw_1_1_menu_base.html#ab610a8a98e4bf6f199fe7706dbb57f4d":[0,0,0,54,6], +"classsw_1_1_menu_base.html#abde93ccb3c829385d8e15f6ee1a36d0f":[0,0,0,54,2], +"classsw_1_1_menu_item.html":[0,0,0,55], +"classsw_1_1_menu_item.html#a0f67fc28cb879876a328495035031979":[0,0,0,55,10], +"classsw_1_1_menu_item.html#a1187cb70902ab261b8302e7c0c561da9":[0,0,0,55,4], +"classsw_1_1_menu_item.html#a136e71998ffff40e3d165749ba7f7306":[0,0,0,55,5], +"classsw_1_1_menu_item.html#a1b1b34eaed41f83ca8e6072c0db486a0":[0,0,0,55,3], +"classsw_1_1_menu_item.html#a45cb03eb9423fbe1c187f237ec89377a":[0,0,0,55,0], +"classsw_1_1_menu_item.html#a71e23c18ace7346f28415ed747d80905":[0,0,0,55,9], +"classsw_1_1_menu_item.html#a7723b9fa2888c82ed5c61875ef077aad":[0,0,0,55,7], +"classsw_1_1_menu_item.html#a7f24130f1770af6fce9792fb41cba522":[0,0,0,55,2], +"classsw_1_1_menu_item.html#ab0b1236f09532f993324f76c07c7b8c7":[0,0,0,55,6], +"classsw_1_1_menu_item.html#ac8e01802bb6cc6f1336025819050f3c4":[0,0,0,55,8], +"classsw_1_1_menu_item.html#af68934d85fe10b3b01bf4038d66275e4":[0,0,0,55,1], +"classsw_1_1_msg_box.html":[0,0,0,60], +"classsw_1_1_panel.html":[0,0,0,61], +"classsw_1_1_panel.html#a655497d6bdbf760e34df1d799d89b009":[0,0,0,61,2], +"classsw_1_1_panel.html#a937db7d8878602d93eead371e0aab655":[0,0,0,61,0], +"classsw_1_1_panel.html#aa7b04b11114891c5df7b84932fd3370f":[0,0,0,61,3], +"classsw_1_1_panel.html#ab57a6afea25cdefeea622ff364727a8e":[0,0,0,61,1], +"classsw_1_1_panel_base.html":[0,0,0,62], +"classsw_1_1_panel_base.html#a7acc50ef3ccea1f4efa8d1d3fdf18fa9":[0,0,0,62,1], +"classsw_1_1_panel_base.html#a8ac6001fdc5c32131b3d33678bd376b3":[0,0,0,62,3], +"classsw_1_1_panel_base.html#a9d40f5306f341eb9fff7c389b11f76f6":[0,0,0,62,4], +"classsw_1_1_panel_base.html#ab7630a76728d4d464b0bee1bfdbdca9b":[0,0,0,62,2], +"classsw_1_1_panel_base.html#abab2cca25b5d32f8bce01252e9db500e":[0,0,0,62,0], +"classsw_1_1_panel_base.html#af23d21a7b280c75e49278ce141ff428b":[0,0,0,62,5], +"classsw_1_1_password_box.html":[0,0,0,63], +"classsw_1_1_password_box.html#a5e6b907e4c80b16dc1691eb6271778f5":[0,0,0,63,0], +"classsw_1_1_password_box.html#acb858c64ba690363567d5c73cc49ad7e":[0,0,0,63,1], +"classsw_1_1_path.html":[0,0,0,64], +"classsw_1_1_progress_bar.html":[0,0,0,68], +"classsw_1_1_progress_bar.html#a23e176b3cc807b9e0e403e214421179c":[0,0,0,68,1], +"classsw_1_1_progress_bar.html#a3a211f4e0318c79bcc4a64720b6f8651":[0,0,0,68,5], +"classsw_1_1_progress_bar.html#a461cb23f2cc6c276eda9312cb269a403":[0,0,0,68,0], +"classsw_1_1_progress_bar.html#a596e05cda7fcc656dde20354a519cee4":[0,0,0,68,3], +"classsw_1_1_progress_bar.html#a6dd5e209fbc7f35a89309f4056ae3d1f":[0,0,0,68,4], +"classsw_1_1_progress_bar.html#ad6ae6e88db8560fb7574e22c87a72ce5":[0,0,0,68,2], +"classsw_1_1_property.html":[0,0,0,69], +"classsw_1_1_property.html#a15318a6d29413d76006662d698f447c5":[0,0,0,69,2], +"classsw_1_1_property.html#a657ad195af10d76fb55801b3cec62aca":[0,0,0,69,0], +"classsw_1_1_property.html#adbca5ee89c3f7d07035fcece6af5c9be":[0,0,0,69,1], +"classsw_1_1_radio_button.html":[0,0,0,70], +"classsw_1_1_radio_button.html#ab3a285dc904b85423de229d3187ec408":[0,0,0,70,0], +"classsw_1_1_read_only_property.html":[0,0,0,71], +"classsw_1_1_read_only_property.html#a081d365b2904532c706e9dc7e4c0bd90":[0,0,0,71,4], +"classsw_1_1_read_only_property.html#a7610c93a1d2bcbdb34a97ac90e36fcea":[0,0,0,71,2], +"classsw_1_1_read_only_property.html#a800a531ff60f5be40012d548537be339":[0,0,0,71,0], +"classsw_1_1_read_only_property.html#ac4317dbef2c25af64659b805cbbb26f6":[0,0,0,71,1], +"classsw_1_1_read_only_property.html#ace02f4ac6e2e2ba863038ed5b1befb8c":[0,0,0,71,3], +"classsw_1_1_screen.html":[0,0,0,75], +"classsw_1_1_slider.html":[0,0,0,80], +"classsw_1_1_slider.html#a0614fc49d6825b3f864171246fa15892":[0,0,0,80,2], +"classsw_1_1_slider.html#a1bc544724aafc7ac79ca14fdc0e126a5":[0,0,0,80,4], +"classsw_1_1_slider.html#a3f0efcf4b566cec56fed536786556a00":[0,0,0,80,9], +"classsw_1_1_slider.html#a44907de8805117d38ba3631545f39453":[0,0,0,80,0], +"classsw_1_1_slider.html#a7791814523c6758f573499fa9f1ca074":[0,0,0,80,1], +"classsw_1_1_slider.html#a85276ebc466a4dbe6923f033bfe2b1cf":[0,0,0,80,8], +"classsw_1_1_slider.html#ab44222d9c4bacb9294a6578778b56256":[0,0,0,80,5], +"classsw_1_1_slider.html#ac4595d8d74e4759310cb0fc07fb7308a":[0,0,0,80,7], +"classsw_1_1_slider.html#acf6c700d10cedb1ac2c69072a9ea0549":[0,0,0,80,3], +"classsw_1_1_slider.html#ae3a7b7c831318c34341bfdf363daf4c2":[0,0,0,80,6], +"classsw_1_1_splitter.html":[0,0,0,81], +"classsw_1_1_splitter.html#a363276ad838de7235b53f76d767a408d":[0,0,0,81,1], +"classsw_1_1_splitter.html#a961677b3a6e12fc522bdb4e7b22690c2":[0,0,0,81,2], +"classsw_1_1_splitter.html#a9c922b8e13fa139978a664c1e8fab4d6":[0,0,0,81,3], +"classsw_1_1_splitter.html#acc4ee8d727fd36e75444d014cbf1a1ff":[0,0,0,81,0], +"classsw_1_1_stack_layout.html":[0,0,0,82], +"classsw_1_1_stack_layout.html#a45b50cf0df7e1ce86e817a47940e7226":[0,0,0,82,0], +"classsw_1_1_stack_layout.html#aa425ef22052ca56ed1e0358374db00a5":[0,0,0,82,2], +"classsw_1_1_stack_layout.html#aeae06d336288887cf29c912aee4c03b6":[0,0,0,82,1], +"classsw_1_1_stack_layout_h.html":[0,0,0,83], +"classsw_1_1_stack_layout_h.html#a1b527c76303aed32cad3f4a13bd991a2":[0,0,0,83,0], +"classsw_1_1_stack_layout_h.html#ab5ae73207dfc9020a799c3fd1a4d9231":[0,0,0,83,1], +"classsw_1_1_stack_layout_v.html":[0,0,0,84], +"classsw_1_1_stack_layout_v.html#a11f007de647c9b1c88120aeed9ea65b7":[0,0,0,84,1], +"classsw_1_1_stack_layout_v.html#a383ec238bac4bdb91d20e39b8ac8a0e1":[0,0,0,84,0], +"classsw_1_1_stack_panel.html":[0,0,0,85], +"classsw_1_1_stack_panel.html#a1d7bd2e8b8293003e47f5d297c58044b":[0,0,0,85,1], +"classsw_1_1_stack_panel.html#adaf90a1ad8018e5365e22f45a0a0341a":[0,0,0,85,0], +"classsw_1_1_stack_panel.html#affb5896d0e3e3b615bcbb285c8e03bf4":[0,0,0,85,2], +"classsw_1_1_static_control.html":[0,0,0,86], +"classsw_1_1_static_control.html#a1aa16699f8b60dd9fb6cd3c6b6c129e4":[0,0,0,86,1], +"classsw_1_1_static_control.html#a88dea3db611c5cc94df004cdae9c74ef":[0,0,0,86,0], +"classsw_1_1_tab_control.html":[0,0,0,87], +"classsw_1_1_tab_control.html#a09a693f18956f7629fab2377ab1a1dda":[0,0,0,87,9], +"classsw_1_1_tab_control.html#a14f5debfc882417906f0d610617f5b05":[0,0,0,87,10], +"classsw_1_1_tab_control.html#a1642e450b1cf606338eb85bd9f93c82c":[0,0,0,87,5], +"classsw_1_1_tab_control.html#a2826913f7180e01ec24542dd87ea8676":[0,0,0,87,1], +"classsw_1_1_tab_control.html#a402ae0be40a8a236d09b5c8a31c5aca1":[0,0,0,87,0], +"classsw_1_1_tab_control.html#a5e70f66a21997157773d149dec3339ce":[0,0,0,87,12], +"classsw_1_1_tab_control.html#a654688668bdf8331e27cbe4564d6cf63":[0,0,0,87,6] }; diff --git a/docs/navtreeindex2.js b/docs/navtreeindex2.js index 589b0f4a..7a8eb090 100644 --- a/docs/navtreeindex2.js +++ b/docs/navtreeindex2.js @@ -1,253 +1,253 @@ var NAVTREEINDEX2 = { -"classsw_1_1_text_box_base.html#a1e7210993dcbf6cfdaff3dcc3246dfd5":[0,0,0,87,6], -"classsw_1_1_text_box_base.html#a221765241d6ca76156d3564440306d51":[0,0,0,87,9], -"classsw_1_1_text_box_base.html#a2fb455bb1ed2c1b3f3c12a82a5a4b720":[0,0,0,87,1], -"classsw_1_1_text_box_base.html#a364003a9b7b601f385861108a4e3273e":[0,0,0,87,3], -"classsw_1_1_text_box_base.html#a3a6843f34013ed31f3828263f0984233":[0,0,0,87,4], -"classsw_1_1_text_box_base.html#a63ae3c3e273a7a69d0f7ca07b102f64b":[0,0,0,87,14], -"classsw_1_1_text_box_base.html#a67d628d8d0d746292ef4350ad1a5a84a":[0,0,0,87,0], -"classsw_1_1_text_box_base.html#a77e44c645068eb384a5e77765fdccbae":[0,0,0,87,16], -"classsw_1_1_text_box_base.html#a7c7ccda9b5161642d002a88cab7da1c3":[0,0,0,87,12], -"classsw_1_1_text_box_base.html#a83561e8ffe232f84c13dc14c941600f6":[0,0,0,87,8], -"classsw_1_1_text_box_base.html#a89b507ceef32d379c93a60b5989b74fe":[0,0,0,87,7], -"classsw_1_1_text_box_base.html#a9100aef79b476bac6f50933c7d73d5ee":[0,0,0,87,2], -"classsw_1_1_text_box_base.html#a91bad54640a2bdd486232d3836611608":[0,0,0,87,13], -"classsw_1_1_text_box_base.html#aa1e5c56604dd112fb3f116d12c1603d4":[0,0,0,87,11], -"classsw_1_1_text_box_base.html#aa22188dc026379eb3e76a2415b8bf0c9":[0,0,0,87,10], -"classsw_1_1_text_box_base.html#aa88527cddd82fc158e0ac3ca662604c1":[0,0,0,87,5], -"classsw_1_1_text_box_base.html#abaa4c52632b7a8d2bdb41341fc1ab0e8":[0,0,0,87,15], -"classsw_1_1_u_i_element.html":[0,0,0,89], -"classsw_1_1_u_i_element.html#a05b569383791dce14d9d6789e3a43d85":[0,0,0,89,88], -"classsw_1_1_u_i_element.html#a0635558e1928f1144566a30b884303aa":[0,0,0,89,60], -"classsw_1_1_u_i_element.html#a06a50134522985f88bb0db352b2be689":[0,0,0,89,16], -"classsw_1_1_u_i_element.html#a09946400c66a4bfd34cfb8918652a34a":[0,0,0,89,62], -"classsw_1_1_u_i_element.html#a09acdba6221e69b6ecb17b49975a1414":[0,0,0,89,76], -"classsw_1_1_u_i_element.html#a0cbfb44f8280a3e5e01b71906e588d69":[0,0,0,89,79], -"classsw_1_1_u_i_element.html#a0ce7edc8a920e950a9a75cf1a84ea627":[0,0,0,89,71], -"classsw_1_1_u_i_element.html#a0d9db652043bc5c5cd3483d82b35dcbe":[0,0,0,89,74], -"classsw_1_1_u_i_element.html#a0f0826e68eb96f7b7dd7882c4c0171b9":[0,0,0,89,55], -"classsw_1_1_u_i_element.html#a0fe3a905c1fd58baa911bc13aac9f181":[0,0,0,89,63], -"classsw_1_1_u_i_element.html#a135d4fc74c3bf7a434271620944b9f9b":[0,0,0,89,59], -"classsw_1_1_u_i_element.html#a1576ecfeec8347256a1c43a33169e1dc":[0,0,0,89,2], -"classsw_1_1_u_i_element.html#a18dde4a75ac25ae0458ae616eb9bca85":[0,0,0,89,19], -"classsw_1_1_u_i_element.html#a1c1f0b6a491e639c76e46a29bff00d65":[0,0,0,89,32], -"classsw_1_1_u_i_element.html#a1f0bde7d9646b68dfe7251eba908cc08":[0,0,0,89,13], -"classsw_1_1_u_i_element.html#a2589db7fdbba4423307e64f6289a4650":[0,0,0,89,46], -"classsw_1_1_u_i_element.html#a2b54e00e1e41af2a634ad694da3ffa98":[0,0,0,89,93], -"classsw_1_1_u_i_element.html#a307e0afb1a83b8a31a54844089483f76":[0,0,0,89,42], -"classsw_1_1_u_i_element.html#a32893339be348aa964441954f3a31101":[0,0,0,89,4], -"classsw_1_1_u_i_element.html#a3370e535f462680d66063e45b92807f6":[0,0,0,89,73], -"classsw_1_1_u_i_element.html#a3683672f3c2fc8f80e4f808aac78d262":[0,0,0,89,11], -"classsw_1_1_u_i_element.html#a3a92f96787dd7981f0c1934ff618b36e":[0,0,0,89,31], -"classsw_1_1_u_i_element.html#a3dee0000f9edfdce128c7ca3c95ec4ab":[0,0,0,89,57], -"classsw_1_1_u_i_element.html#a3e08b05c1a3ac1d95fd54a3ffaab81a0":[0,0,0,89,3], -"classsw_1_1_u_i_element.html#a421400e98ae700b0593cda2ceec5c1f7":[0,0,0,89,68], -"classsw_1_1_u_i_element.html#a42ce311746de9bace84a221efeed7e1f":[0,0,0,89,48], -"classsw_1_1_u_i_element.html#a45cf2817669c10b59535acf8406a1a09":[0,0,0,89,23], -"classsw_1_1_u_i_element.html#a4d8e08dc4281b7bf67bb60c9f92fbde0":[0,0,0,89,49], -"classsw_1_1_u_i_element.html#a560ae73ce93ab62df8d04170b11a1f39":[0,0,0,89,20], -"classsw_1_1_u_i_element.html#a57a1cb1cc82765f93b21fa8261ec2e50":[0,0,0,89,36], -"classsw_1_1_u_i_element.html#a5c452519bad920ad9b91f9610ea202e0":[0,0,0,89,84], -"classsw_1_1_u_i_element.html#a5e16c574d3fc57a9da8ac8d9c2bf1a24":[0,0,0,89,33], -"classsw_1_1_u_i_element.html#a6175e146290ecff80407d4c8afa1cf05":[0,0,0,89,52], -"classsw_1_1_u_i_element.html#a622a68f74b9122c0de9c57e547b0a62b":[0,0,0,89,67], -"classsw_1_1_u_i_element.html#a62c0e59790735abb3f0a9f002e651c16":[0,0,0,89,61], -"classsw_1_1_u_i_element.html#a62da7e785db521278afb58d28e30f4fa":[0,0,0,89,45], -"classsw_1_1_u_i_element.html#a633ace3fad478f1cc6480fa5512288fb":[0,0,0,89,14], -"classsw_1_1_u_i_element.html#a6482d770b94d6b40da944d64730e8237":[0,0,0,89,50], -"classsw_1_1_u_i_element.html#a656bb4995529a018d8c823fc45abf233":[0,0,0,89,34], -"classsw_1_1_u_i_element.html#a67bd7d81e6091118e4c97cc24c68543d":[0,0,0,89,24], -"classsw_1_1_u_i_element.html#a6968c7b711722677fb0b9dd7f5f80442":[0,0,0,89,17], -"classsw_1_1_u_i_element.html#a6b8833ac8fe8798edd0480f737aea426":[0,0,0,89,39], -"classsw_1_1_u_i_element.html#a70e870fcabb76b1d74c06d50637f4f92":[0,0,0,89,90], -"classsw_1_1_u_i_element.html#a78d190af4c3b1768776db0ebd6d0d71a":[0,0,0,89,35], -"classsw_1_1_u_i_element.html#a78f1c406d3faac2afcb956e9375f65ec":[0,0,0,89,21], -"classsw_1_1_u_i_element.html#a793adc7d50d0373d099b26b0a511b95d":[0,0,0,89,27], -"classsw_1_1_u_i_element.html#a7b2f0c77c7ec5d6d68bc3c772a72201a":[0,0,0,89,69], -"classsw_1_1_u_i_element.html#a7bda5652549fe9909e3b6b1383754b30":[0,0,0,89,10], -"classsw_1_1_u_i_element.html#a7da2f416b1ed5038d8a3a59d6e44fcf5":[0,0,0,89,89], -"classsw_1_1_u_i_element.html#a7e1fbc142c7cfe4a4a60959daf0753bc":[0,0,0,89,56], -"classsw_1_1_u_i_element.html#a82ef0065e6b21ce989852862bc1a0e21":[0,0,0,89,18], -"classsw_1_1_u_i_element.html#a848d8b2ee3267758e9a784be75b65e46":[0,0,0,89,72], -"classsw_1_1_u_i_element.html#a87b86762809c8e4a0ace610a977caa78":[0,0,0,89,58], -"classsw_1_1_u_i_element.html#a895d79a2fa53382a43b3d02dee195360":[0,0,0,89,94], -"classsw_1_1_u_i_element.html#a8d1a3049967256fa8306f1364ba209c9":[0,0,0,89,47], -"classsw_1_1_u_i_element.html#a8fe2c0aebc77409d3fbdefbd79d45a1e":[0,0,0,89,91], -"classsw_1_1_u_i_element.html#a8ff6722c909efcb10fbbc63476ab64d6":[0,0,0,89,22], -"classsw_1_1_u_i_element.html#a925353891b62cb6989410d788a8a4e90":[0,0,0,89,66], -"classsw_1_1_u_i_element.html#a952e87aef0f2dfdec6bd98e944b6d891":[0,0,0,89,85], -"classsw_1_1_u_i_element.html#a9585aee58045291cdca577e64f4a56e3":[0,0,0,89,7], -"classsw_1_1_u_i_element.html#a95c6eb88c9f93bb135da9ee303ada3be":[0,0,0,89,53], -"classsw_1_1_u_i_element.html#a98812949329f77e400f7e0e381c56c3d":[0,0,0,89,82], -"classsw_1_1_u_i_element.html#a994aad366bc1f62ef7d53defa9456e64":[0,0,0,89,12], -"classsw_1_1_u_i_element.html#a9e825715639370ad2dd1f1276e6cb97f":[0,0,0,89,65], -"classsw_1_1_u_i_element.html#aa89a8c272d1a9016d2586c6eeab64dce":[0,0,0,89,15], -"classsw_1_1_u_i_element.html#aa9d544a538ca2cfa3d022da61e7637e5":[0,0,0,89,96], -"classsw_1_1_u_i_element.html#aabbfe747a3396f5cb08e952cd583c825":[0,0,0,89,44], -"classsw_1_1_u_i_element.html#aadedba1a9bca85555b70bc247b8ef835":[0,0,0,89,51], -"classsw_1_1_u_i_element.html#aaf6897b58dc2899c37a3b395bfe124b9":[0,0,0,89,83], -"classsw_1_1_u_i_element.html#ab48faeb3dde62fbbe944a28dce2f3133":[0,0,0,89,9], -"classsw_1_1_u_i_element.html#ab5832ef956cdc4face3e9dbd0c72e66e":[0,0,0,89,29], -"classsw_1_1_u_i_element.html#ab7adb46425947c0b14b3bc5b60f6fdac":[0,0,0,89,37], -"classsw_1_1_u_i_element.html#ab8557638ba9975346d62f5339de55664":[0,0,0,89,77], -"classsw_1_1_u_i_element.html#abb7de98159e23ece7285c87a2592d7ea":[0,0,0,89,64], -"classsw_1_1_u_i_element.html#abce4a26101de27550375c300b121d95d":[0,0,0,89,28], -"classsw_1_1_u_i_element.html#ac020bc2d263e0dcffa59e0f474ea6e95":[0,0,0,89,5], -"classsw_1_1_u_i_element.html#ac0d66604bc2dd555c37688135878a7f0":[0,0,0,89,87], -"classsw_1_1_u_i_element.html#ac65b1a6485b454004801a296c788db6a":[0,0,0,89,41], -"classsw_1_1_u_i_element.html#ac8088cf88b28c6b4a5f93cd7a66a769e":[0,0,0,89,6], -"classsw_1_1_u_i_element.html#aca1d15ee60f06d11aeccadfc92ed23d2":[0,0,0,89,40], -"classsw_1_1_u_i_element.html#acbe28513919da89bf3f9a5102d6353c3":[0,0,0,89,1], -"classsw_1_1_u_i_element.html#acf5b0f1e5c2e24390b7f267db28c595a":[0,0,0,89,80], -"classsw_1_1_u_i_element.html#ad2be8df1de363a180ef2c32606e2fc74":[0,0,0,89,38], -"classsw_1_1_u_i_element.html#ad3360842adfd2298d4d505305250a6eb":[0,0,0,89,43], -"classsw_1_1_u_i_element.html#ad685138138402ddd8a5fde67bbb85a45":[0,0,0,89,75], -"classsw_1_1_u_i_element.html#ad825a0e12b75238b13f422f47ddf292b":[0,0,0,89,92], -"classsw_1_1_u_i_element.html#ad9f49244beb6b854b436e8bbd18f4e21":[0,0,0,89,97], -"classsw_1_1_u_i_element.html#adf8152f31c5e109ba016316182bcec47":[0,0,0,89,25], -"classsw_1_1_u_i_element.html#ae3e134d807af7614e1cc812abb860762":[0,0,0,89,30], -"classsw_1_1_u_i_element.html#ae43f4f3c5a5c723d29f20e5590641388":[0,0,0,89,8], -"classsw_1_1_u_i_element.html#ae513a79247f76498e8f586d4ced1ff6e":[0,0,0,89,78], -"classsw_1_1_u_i_element.html#ae5706cc9d6ef3fab9176ccded231b99e":[0,0,0,89,86], -"classsw_1_1_u_i_element.html#ae7e788c5e662363d6244414c5250a39d":[0,0,0,89,81], -"classsw_1_1_u_i_element.html#aeaf2381fdffd82bd41e90c1a2cf69022":[0,0,0,89,95], -"classsw_1_1_u_i_element.html#aeebf42b059a9962fd9c2ba64dcc309ca":[0,0,0,89,0], -"classsw_1_1_u_i_element.html#aef217f2655c4a746606bf302edc16cf4":[0,0,0,89,26], -"classsw_1_1_u_i_element.html#af4f4d3a0d23a886c0257c439821f5809":[0,0,0,89,54], -"classsw_1_1_u_i_element.html#af60b45de9f894f4fb152491413f1fa73":[0,0,0,89,70], -"classsw_1_1_uniform_grid.html":[0,0,0,90], -"classsw_1_1_uniform_grid.html#a65a180db32f61dee181c0ae7e36364a6":[0,0,0,90,4], -"classsw_1_1_uniform_grid.html#a8fc9ee46df1fab2fd0538880d3d2e536":[0,0,0,90,3], -"classsw_1_1_uniform_grid.html#a9e262983bba94ed0841bff604b4fbd29":[0,0,0,90,0], -"classsw_1_1_uniform_grid.html#ac6abb7aaf70869b91207c53cfaf59bca":[0,0,0,90,2], -"classsw_1_1_uniform_grid.html#aeedb9dcb3c92bd39fa33589dc8922fcb":[0,0,0,90,1], -"classsw_1_1_uniform_grid_layout.html":[0,0,0,91], -"classsw_1_1_uniform_grid_layout.html#a2cde92e2a61f62efb85761f11c221390":[0,0,0,91,4], -"classsw_1_1_uniform_grid_layout.html#a62cfcb1c77d3d25b7adf07730aa3a144":[0,0,0,91,0], -"classsw_1_1_uniform_grid_layout.html#a73d71cc8e99540d40ab1f4fd528b9492":[0,0,0,91,2], -"classsw_1_1_uniform_grid_layout.html#aa5e7c87ab71f2ffd2c9e227ab46dab0e":[0,0,0,91,3], -"classsw_1_1_uniform_grid_layout.html#aaf9adca410dd56a6736c5ec0b96a167f":[0,0,0,91,1], -"classsw_1_1_utils.html":[0,0,0,92], -"classsw_1_1_window.html":[0,0,0,93], -"classsw_1_1_window.html#a09165434040ada6ea3f00a7d79b1f7a2":[0,0,0,93,6], -"classsw_1_1_window.html#a1a15faeb81c21aa3327dcd8fefdc5ffd":[0,0,0,93,31], -"classsw_1_1_window.html#a1cdd78ebe0571b1c9bb49403ed8d8381":[0,0,0,93,3], -"classsw_1_1_window.html#a236c7f298b6bbb432ce7c3c82a5eaacd":[0,0,0,93,15], -"classsw_1_1_window.html#a2403f422df1271f56f2ef574d91f232d":[0,0,0,93,4], -"classsw_1_1_window.html#a24eed02d394d13b368f5cf99b2a68c44":[0,0,0,93,0], -"classsw_1_1_window.html#a257ba940703f41b12990678bb3ff0e0e":[0,0,0,93,29], -"classsw_1_1_window.html#a27de84e46eda2bccca6f5b2f30fb3117":[0,0,0,93,23], -"classsw_1_1_window.html#a3281c944ffc505243ff2b958b42e6fa7":[0,0,0,93,16], -"classsw_1_1_window.html#a35a8bd930f1cf8a85204569f00b33f34":[0,0,0,93,9], -"classsw_1_1_window.html#a37bc59a8775b6f39e244cdd6f82d5e51":[0,0,0,93,17], -"classsw_1_1_window.html#a3daeab5c99e045449a8a5f086c19877e":[0,0,0,93,1], -"classsw_1_1_window.html#a4a09a7ec772a2febfcda54b9aa6a8557":[0,0,0,93,28], -"classsw_1_1_window.html#a50969fbd9f30ad27e72f11cb28ee4697":[0,0,0,93,5], -"classsw_1_1_window.html#a518c14e6ddbf171489a86baff4cbb6a3":[0,0,0,93,27], -"classsw_1_1_window.html#a5c4a30ad5dd71cba0de201846867de25":[0,0,0,93,19], -"classsw_1_1_window.html#a64ad0c8611945758af32b7681a74a0f7":[0,0,0,93,20], -"classsw_1_1_window.html#a6852326120a03242ffef09aa3bae9e09":[0,0,0,93,21], -"classsw_1_1_window.html#a850c77ff7a3271e6d2bc77258c2ed11d":[0,0,0,93,7], -"classsw_1_1_window.html#a881e11126ef89b4b0badb890c8f7ac21":[0,0,0,93,22], -"classsw_1_1_window.html#a8ff6176f2fb886593f448b430c21fc90":[0,0,0,93,11], -"classsw_1_1_window.html#a9046c167eb2a1572f420ecd5bd8aef1c":[0,0,0,93,13], -"classsw_1_1_window.html#a9f8bea034629f087944e9b33af60d9ec":[0,0,0,93,10], -"classsw_1_1_window.html#aa39df901ba7c3d77ac013ccdf6caf161":[0,0,0,93,26], -"classsw_1_1_window.html#aa9476a0b4bff312e523bba76aa82b96b":[0,0,0,93,25], -"classsw_1_1_window.html#aa9782debda43bce7438531290aa509ae":[0,0,0,93,24], -"classsw_1_1_window.html#abafe422b0435aa15ec04ced4300b6b76":[0,0,0,93,2], -"classsw_1_1_window.html#abdf47e48c8a4e9d9c368cb549ba3d938":[0,0,0,93,14], -"classsw_1_1_window.html#abff0275ae90d22951d40b769f952d415":[0,0,0,93,18], -"classsw_1_1_window.html#ac61382d82d410403dc2a9bc0afe49f38":[0,0,0,93,30], -"classsw_1_1_window.html#adfcacbd8da1c33b53a16990c76d86079":[0,0,0,93,8], -"classsw_1_1_window.html#afa57e21216664a6fa3f9fdf04dad7a7d":[0,0,0,93,12], -"classsw_1_1_wnd_base.html":[0,0,0,95], -"classsw_1_1_wnd_base.html#a0126115c0626d137ba3e7b0a5c8d793b":[0,0,0,95,84], -"classsw_1_1_wnd_base.html#a029ba4be0e492f8383f2b5fe22125acb":[0,0,0,95,53], -"classsw_1_1_wnd_base.html#a0522e3e1706406923b77d9e450016ed8":[0,0,0,95,6], -"classsw_1_1_wnd_base.html#a0e30c4d0b87c473115e7521c5c95703a":[0,0,0,95,19], -"classsw_1_1_wnd_base.html#a118948e07b472d90fce7e9811ea174aa":[0,0,0,95,39], -"classsw_1_1_wnd_base.html#a12044a0ffde9b79b03adef97bd266a1a":[0,0,0,95,5], -"classsw_1_1_wnd_base.html#a143aff6cca9e55608630d1fc320d4666":[0,0,0,95,43], -"classsw_1_1_wnd_base.html#a1445af2018a8e840a25a7487da22c51b":[0,0,0,95,50], -"classsw_1_1_wnd_base.html#a163464ef6f42dc8e6c10557715607ad2":[0,0,0,95,73], -"classsw_1_1_wnd_base.html#a17769747f602f2f7c18a0a49ce97a125":[0,0,0,95,49], -"classsw_1_1_wnd_base.html#a191f7c32914b029dca7c93e03b4841e0":[0,0,0,95,52], -"classsw_1_1_wnd_base.html#a1c0d183115a35f097b0598af43c9ca9a":[0,0,0,95,66], -"classsw_1_1_wnd_base.html#a292bd97b5820a1b4e7a38d65e2b609e8":[0,0,0,95,78], -"classsw_1_1_wnd_base.html#a292d93c230f5534cdf68ac5d685dd487":[0,0,0,95,65], -"classsw_1_1_wnd_base.html#a2c436f7819721b3f1a700c39ea538003":[0,0,0,95,22], -"classsw_1_1_wnd_base.html#a2eec178adddff9e44d83238f19d57b1b":[0,0,0,95,7], -"classsw_1_1_wnd_base.html#a33d23326907c603a24385f81e179e174":[0,0,0,95,67], -"classsw_1_1_wnd_base.html#a348d10334d2f74a44f741bf85eddaa2c":[0,0,0,95,42], -"classsw_1_1_wnd_base.html#a3e4f8edb05ac0381561f4a105db73a34":[0,0,0,95,81], -"classsw_1_1_wnd_base.html#a4030b80afd9e81e3046ccd5ec94ec83f":[0,0,0,95,83], -"classsw_1_1_wnd_base.html#a436818f8ad91446f86b42081dd1a7358":[0,0,0,95,2], -"classsw_1_1_wnd_base.html#a445edbe5db50a5a4486ddff98e8ffbae":[0,0,0,95,101], -"classsw_1_1_wnd_base.html#a46dafa7371fbef198ee7a38c4aabc632":[0,0,0,95,60], -"classsw_1_1_wnd_base.html#a4889c45dfad820c103dd7f74f2cd0661":[0,0,0,95,13], -"classsw_1_1_wnd_base.html#a4aa14c2130ef0fbb656d28c287e401f5":[0,0,0,95,41], -"classsw_1_1_wnd_base.html#a4aad533e3d37a7de43645d703dda1a84":[0,0,0,95,51], -"classsw_1_1_wnd_base.html#a4b15e8f2bcac32da4d5e540445ae201a":[0,0,0,95,55], -"classsw_1_1_wnd_base.html#a4b368860fef40406c091880fc72f9cbb":[0,0,0,95,11], -"classsw_1_1_wnd_base.html#a4c72db003eeb8a29565576ad26cc89b8":[0,0,0,95,26], -"classsw_1_1_wnd_base.html#a4c802a79d332af6e6a6ddcf13005a587":[0,0,0,95,46], -"classsw_1_1_wnd_base.html#a4d09cfbc382789150798ff6ad3d9f988":[0,0,0,95,63], -"classsw_1_1_wnd_base.html#a4f0b57de9babc053c655872ed91468dd":[0,0,0,95,95], -"classsw_1_1_wnd_base.html#a50e006e69f07abb4e6ba381121abcd22":[0,0,0,95,91], -"classsw_1_1_wnd_base.html#a515de5eb7bc6dbc8314c447a99154c6c":[0,0,0,95,57], -"classsw_1_1_wnd_base.html#a51fdc4b943e62bd67ffbff4a6e65de2a":[0,0,0,95,93], -"classsw_1_1_wnd_base.html#a529436cd730fc39ad2875728cdfe4a51":[0,0,0,95,88], -"classsw_1_1_wnd_base.html#a54aa973b24b4bc4b681ac2c21a50d204":[0,0,0,95,94], -"classsw_1_1_wnd_base.html#a585967d861673ea0477f25c1a5c0fb30":[0,0,0,95,3], -"classsw_1_1_wnd_base.html#a58f8e7dd73212a5aed4785a5af1f8a76":[0,0,0,95,70], -"classsw_1_1_wnd_base.html#a5a8952400bee12db2117fbf76312d373":[0,0,0,95,38], -"classsw_1_1_wnd_base.html#a5b90855aaaa4556e5ef5fe68e8149669":[0,0,0,95,45], -"classsw_1_1_wnd_base.html#a5fd142cef45421381b2e8b89cac67d86":[0,0,0,95,71], -"classsw_1_1_wnd_base.html#a60707bc74fd7d0599da1ea014cc37b5d":[0,0,0,95,12], -"classsw_1_1_wnd_base.html#a60e633e3cfea36b186c4a210925e865a":[0,0,0,95,21], -"classsw_1_1_wnd_base.html#a69256166096bb51cde45f101c4e9ae95":[0,0,0,95,23], -"classsw_1_1_wnd_base.html#a6c99714fa3f313e7535936585f63b9cb":[0,0,0,95,1], -"classsw_1_1_wnd_base.html#a6dbe3776aeb038659f0a290fbe1dc6d7":[0,0,0,95,99], -"classsw_1_1_wnd_base.html#a6de15bd6a264721f6bfadd40d9fce3b0":[0,0,0,95,35], -"classsw_1_1_wnd_base.html#a6e9cac4e02b3a420c42968cbf061fd02":[0,0,0,95,28], -"classsw_1_1_wnd_base.html#a6ee668e7a5261f96df0bd69a1fb868d3":[0,0,0,95,15], -"classsw_1_1_wnd_base.html#a6f1b33e5930fc14467f65ad89c2c35c3":[0,0,0,95,64], -"classsw_1_1_wnd_base.html#a71498b3ad8ae548fd7f4a531a6b70982":[0,0,0,95,87], -"classsw_1_1_wnd_base.html#a72a4024b2096ecef4248b1c254b674e2":[0,0,0,95,62], -"classsw_1_1_wnd_base.html#a72a604f374bba1e6c34b5d5e56cd26f0":[0,0,0,95,89], -"classsw_1_1_wnd_base.html#a748fda35e75d416077598f243afe9da1":[0,0,0,95,31], -"classsw_1_1_wnd_base.html#a755bd826227232fd30ba5fda47bfb060":[0,0,0,95,29], -"classsw_1_1_wnd_base.html#a7598603457217f09aae0deaad59ef063":[0,0,0,95,97], -"classsw_1_1_wnd_base.html#a792eeeffd1b43bd75024352f99822144":[0,0,0,95,8], -"classsw_1_1_wnd_base.html#a7bda583e7535a89b8b5bd327c1f32ccd":[0,0,0,95,96], -"classsw_1_1_wnd_base.html#a7dd30ab5e8700832140c329739b4b671":[0,0,0,95,24], -"classsw_1_1_wnd_base.html#a808f5d6fd407e3b65cff88f1873bd754":[0,0,0,95,100], -"classsw_1_1_wnd_base.html#a863b26226e16cf37f7169c6edc96a3b4":[0,0,0,95,80], -"classsw_1_1_wnd_base.html#a87c9d860ba24487f2b61b72987a4bd63":[0,0,0,95,16], -"classsw_1_1_wnd_base.html#a888df1f6b89e8da1ba8c7cc8f4671370":[0,0,0,95,10], -"classsw_1_1_wnd_base.html#a8ce7cbd3dad20122738f9472e51346e9":[0,0,0,95,72], -"classsw_1_1_wnd_base.html#a91165e81b129c626cabcc7b3d8a5dc43":[0,0,0,95,82], -"classsw_1_1_wnd_base.html#a935f2bb51b99929ac5166ad52396971a":[0,0,0,95,17], -"classsw_1_1_wnd_base.html#a97898f967c916e67c152c69f4c7c6cd6":[0,0,0,95,85], -"classsw_1_1_wnd_base.html#a98d960679d1889998ba548af6a3c8fc4":[0,0,0,95,27], -"classsw_1_1_wnd_base.html#a9afff86d32e9b54cccc204ef29a85891":[0,0,0,95,98], -"classsw_1_1_wnd_base.html#aa04cd83e79c42d21127799e573d9f299":[0,0,0,95,25], -"classsw_1_1_wnd_base.html#aa605b4a21b4cd8c43c226349665a5f28":[0,0,0,95,20], -"classsw_1_1_wnd_base.html#aab509b68c9c0b612862cf41d8ef685a3":[0,0,0,95,0], -"classsw_1_1_wnd_base.html#aaba3c3ea0a8d12be237ef28e44018677":[0,0,0,95,56], -"classsw_1_1_wnd_base.html#aaf334072263bea6dddf93a7601979023":[0,0,0,95,37], -"classsw_1_1_wnd_base.html#ab37c3f3ea7654eb6a0b15405196c4549":[0,0,0,95,54], -"classsw_1_1_wnd_base.html#ab69baf3851ba40b7f6bba5fb67f9ab51":[0,0,0,95,69], -"classsw_1_1_wnd_base.html#ab7ac81f0ed48a5093fd3170c7c756963":[0,0,0,95,76], -"classsw_1_1_wnd_base.html#aba0ab3734c3d4c07f3b9bbb029b98edb":[0,0,0,95,74], -"classsw_1_1_wnd_base.html#abc0b653ccc071c2cfcba42fa8eef738f":[0,0,0,95,92], -"classsw_1_1_wnd_base.html#ac34494921eed0f67a053a9393d78bcf9":[0,0,0,95,4], -"classsw_1_1_wnd_base.html#ac49c6452ceb4950dd581189615753b0c":[0,0,0,95,90], -"classsw_1_1_wnd_base.html#ace8f6b05caa5d335f7d574c38035bfa7":[0,0,0,95,14], -"classsw_1_1_wnd_base.html#acf4e6c0bbc8fddc9e790864e403c5c91":[0,0,0,95,58], -"classsw_1_1_wnd_base.html#ad0f719a2feffe354737cef9b13b63db0":[0,0,0,95,18], -"classsw_1_1_wnd_base.html#ad188b201bbbc650c4ad9c388dbac18b4":[0,0,0,95,44], -"classsw_1_1_wnd_base.html#ad50166a8ade9a7eaf0088f13fd708e2f":[0,0,0,95,68] +"classsw_1_1_tab_control.html#a6a4c0d7c81d279669765feaef0f55ecd":[0,0,0,87,3], +"classsw_1_1_tab_control.html#ab14ce7faf0e6feb71ba66e7a1029673c":[0,0,0,87,8], +"classsw_1_1_tab_control.html#ac0342af02418896ed6e98f6d11125348":[0,0,0,87,4], +"classsw_1_1_tab_control.html#ac52a5ebc430c68920f8ee7e7755f7f34":[0,0,0,87,2], +"classsw_1_1_tab_control.html#acbde185af6197161f7b22485ebff02b2":[0,0,0,87,7], +"classsw_1_1_tab_control.html#ae0fc4dead5149c903eb429d0927ec182":[0,0,0,87,11], +"classsw_1_1_text_box.html":[0,0,0,88], +"classsw_1_1_text_box.html#a4fed0b73690d263fb740f09eda870fdb":[0,0,0,88,2], +"classsw_1_1_text_box.html#a74bf917de24ebc4ce676306922a080ec":[0,0,0,88,3], +"classsw_1_1_text_box.html#a8fa3d053d6386f3aac435133dbe3a05a":[0,0,0,88,4], +"classsw_1_1_text_box.html#aada3afc3bd30f97361d20b598903dabb":[0,0,0,88,1], +"classsw_1_1_text_box.html#ae2cffffb2a78119a7094d78109060326":[0,0,0,88,0], +"classsw_1_1_text_box_base.html":[0,0,0,89], +"classsw_1_1_text_box_base.html#a1e7210993dcbf6cfdaff3dcc3246dfd5":[0,0,0,89,6], +"classsw_1_1_text_box_base.html#a221765241d6ca76156d3564440306d51":[0,0,0,89,9], +"classsw_1_1_text_box_base.html#a2fb455bb1ed2c1b3f3c12a82a5a4b720":[0,0,0,89,1], +"classsw_1_1_text_box_base.html#a364003a9b7b601f385861108a4e3273e":[0,0,0,89,3], +"classsw_1_1_text_box_base.html#a3a6843f34013ed31f3828263f0984233":[0,0,0,89,4], +"classsw_1_1_text_box_base.html#a63ae3c3e273a7a69d0f7ca07b102f64b":[0,0,0,89,14], +"classsw_1_1_text_box_base.html#a67d628d8d0d746292ef4350ad1a5a84a":[0,0,0,89,0], +"classsw_1_1_text_box_base.html#a77e44c645068eb384a5e77765fdccbae":[0,0,0,89,16], +"classsw_1_1_text_box_base.html#a7c7ccda9b5161642d002a88cab7da1c3":[0,0,0,89,12], +"classsw_1_1_text_box_base.html#a83561e8ffe232f84c13dc14c941600f6":[0,0,0,89,8], +"classsw_1_1_text_box_base.html#a89b507ceef32d379c93a60b5989b74fe":[0,0,0,89,7], +"classsw_1_1_text_box_base.html#a9100aef79b476bac6f50933c7d73d5ee":[0,0,0,89,2], +"classsw_1_1_text_box_base.html#a91bad54640a2bdd486232d3836611608":[0,0,0,89,13], +"classsw_1_1_text_box_base.html#aa1e5c56604dd112fb3f116d12c1603d4":[0,0,0,89,11], +"classsw_1_1_text_box_base.html#aa22188dc026379eb3e76a2415b8bf0c9":[0,0,0,89,10], +"classsw_1_1_text_box_base.html#aa88527cddd82fc158e0ac3ca662604c1":[0,0,0,89,5], +"classsw_1_1_text_box_base.html#abaa4c52632b7a8d2bdb41341fc1ab0e8":[0,0,0,89,15], +"classsw_1_1_u_i_element.html":[0,0,0,91], +"classsw_1_1_u_i_element.html#a05b569383791dce14d9d6789e3a43d85":[0,0,0,91,88], +"classsw_1_1_u_i_element.html#a0635558e1928f1144566a30b884303aa":[0,0,0,91,60], +"classsw_1_1_u_i_element.html#a06a50134522985f88bb0db352b2be689":[0,0,0,91,16], +"classsw_1_1_u_i_element.html#a09946400c66a4bfd34cfb8918652a34a":[0,0,0,91,62], +"classsw_1_1_u_i_element.html#a09acdba6221e69b6ecb17b49975a1414":[0,0,0,91,76], +"classsw_1_1_u_i_element.html#a0cbfb44f8280a3e5e01b71906e588d69":[0,0,0,91,79], +"classsw_1_1_u_i_element.html#a0ce7edc8a920e950a9a75cf1a84ea627":[0,0,0,91,71], +"classsw_1_1_u_i_element.html#a0d9db652043bc5c5cd3483d82b35dcbe":[0,0,0,91,74], +"classsw_1_1_u_i_element.html#a0f0826e68eb96f7b7dd7882c4c0171b9":[0,0,0,91,55], +"classsw_1_1_u_i_element.html#a0fe3a905c1fd58baa911bc13aac9f181":[0,0,0,91,63], +"classsw_1_1_u_i_element.html#a135d4fc74c3bf7a434271620944b9f9b":[0,0,0,91,59], +"classsw_1_1_u_i_element.html#a1576ecfeec8347256a1c43a33169e1dc":[0,0,0,91,2], +"classsw_1_1_u_i_element.html#a18dde4a75ac25ae0458ae616eb9bca85":[0,0,0,91,19], +"classsw_1_1_u_i_element.html#a1c1f0b6a491e639c76e46a29bff00d65":[0,0,0,91,32], +"classsw_1_1_u_i_element.html#a1f0bde7d9646b68dfe7251eba908cc08":[0,0,0,91,13], +"classsw_1_1_u_i_element.html#a2589db7fdbba4423307e64f6289a4650":[0,0,0,91,46], +"classsw_1_1_u_i_element.html#a2b54e00e1e41af2a634ad694da3ffa98":[0,0,0,91,93], +"classsw_1_1_u_i_element.html#a307e0afb1a83b8a31a54844089483f76":[0,0,0,91,42], +"classsw_1_1_u_i_element.html#a32893339be348aa964441954f3a31101":[0,0,0,91,4], +"classsw_1_1_u_i_element.html#a3370e535f462680d66063e45b92807f6":[0,0,0,91,73], +"classsw_1_1_u_i_element.html#a3683672f3c2fc8f80e4f808aac78d262":[0,0,0,91,11], +"classsw_1_1_u_i_element.html#a3a92f96787dd7981f0c1934ff618b36e":[0,0,0,91,31], +"classsw_1_1_u_i_element.html#a3dee0000f9edfdce128c7ca3c95ec4ab":[0,0,0,91,57], +"classsw_1_1_u_i_element.html#a3e08b05c1a3ac1d95fd54a3ffaab81a0":[0,0,0,91,3], +"classsw_1_1_u_i_element.html#a421400e98ae700b0593cda2ceec5c1f7":[0,0,0,91,68], +"classsw_1_1_u_i_element.html#a42ce311746de9bace84a221efeed7e1f":[0,0,0,91,48], +"classsw_1_1_u_i_element.html#a45cf2817669c10b59535acf8406a1a09":[0,0,0,91,23], +"classsw_1_1_u_i_element.html#a4d8e08dc4281b7bf67bb60c9f92fbde0":[0,0,0,91,49], +"classsw_1_1_u_i_element.html#a560ae73ce93ab62df8d04170b11a1f39":[0,0,0,91,20], +"classsw_1_1_u_i_element.html#a57a1cb1cc82765f93b21fa8261ec2e50":[0,0,0,91,36], +"classsw_1_1_u_i_element.html#a5c452519bad920ad9b91f9610ea202e0":[0,0,0,91,84], +"classsw_1_1_u_i_element.html#a5e16c574d3fc57a9da8ac8d9c2bf1a24":[0,0,0,91,33], +"classsw_1_1_u_i_element.html#a6175e146290ecff80407d4c8afa1cf05":[0,0,0,91,52], +"classsw_1_1_u_i_element.html#a622a68f74b9122c0de9c57e547b0a62b":[0,0,0,91,67], +"classsw_1_1_u_i_element.html#a62c0e59790735abb3f0a9f002e651c16":[0,0,0,91,61], +"classsw_1_1_u_i_element.html#a62da7e785db521278afb58d28e30f4fa":[0,0,0,91,45], +"classsw_1_1_u_i_element.html#a633ace3fad478f1cc6480fa5512288fb":[0,0,0,91,14], +"classsw_1_1_u_i_element.html#a6482d770b94d6b40da944d64730e8237":[0,0,0,91,50], +"classsw_1_1_u_i_element.html#a656bb4995529a018d8c823fc45abf233":[0,0,0,91,34], +"classsw_1_1_u_i_element.html#a67bd7d81e6091118e4c97cc24c68543d":[0,0,0,91,24], +"classsw_1_1_u_i_element.html#a6968c7b711722677fb0b9dd7f5f80442":[0,0,0,91,17], +"classsw_1_1_u_i_element.html#a6b8833ac8fe8798edd0480f737aea426":[0,0,0,91,39], +"classsw_1_1_u_i_element.html#a70e870fcabb76b1d74c06d50637f4f92":[0,0,0,91,90], +"classsw_1_1_u_i_element.html#a78d190af4c3b1768776db0ebd6d0d71a":[0,0,0,91,35], +"classsw_1_1_u_i_element.html#a78f1c406d3faac2afcb956e9375f65ec":[0,0,0,91,21], +"classsw_1_1_u_i_element.html#a793adc7d50d0373d099b26b0a511b95d":[0,0,0,91,27], +"classsw_1_1_u_i_element.html#a7b2f0c77c7ec5d6d68bc3c772a72201a":[0,0,0,91,69], +"classsw_1_1_u_i_element.html#a7bda5652549fe9909e3b6b1383754b30":[0,0,0,91,10], +"classsw_1_1_u_i_element.html#a7da2f416b1ed5038d8a3a59d6e44fcf5":[0,0,0,91,89], +"classsw_1_1_u_i_element.html#a7e1fbc142c7cfe4a4a60959daf0753bc":[0,0,0,91,56], +"classsw_1_1_u_i_element.html#a82ef0065e6b21ce989852862bc1a0e21":[0,0,0,91,18], +"classsw_1_1_u_i_element.html#a848d8b2ee3267758e9a784be75b65e46":[0,0,0,91,72], +"classsw_1_1_u_i_element.html#a87b86762809c8e4a0ace610a977caa78":[0,0,0,91,58], +"classsw_1_1_u_i_element.html#a895d79a2fa53382a43b3d02dee195360":[0,0,0,91,94], +"classsw_1_1_u_i_element.html#a8d1a3049967256fa8306f1364ba209c9":[0,0,0,91,47], +"classsw_1_1_u_i_element.html#a8fe2c0aebc77409d3fbdefbd79d45a1e":[0,0,0,91,91], +"classsw_1_1_u_i_element.html#a8ff6722c909efcb10fbbc63476ab64d6":[0,0,0,91,22], +"classsw_1_1_u_i_element.html#a925353891b62cb6989410d788a8a4e90":[0,0,0,91,66], +"classsw_1_1_u_i_element.html#a952e87aef0f2dfdec6bd98e944b6d891":[0,0,0,91,85], +"classsw_1_1_u_i_element.html#a9585aee58045291cdca577e64f4a56e3":[0,0,0,91,7], +"classsw_1_1_u_i_element.html#a95c6eb88c9f93bb135da9ee303ada3be":[0,0,0,91,53], +"classsw_1_1_u_i_element.html#a98812949329f77e400f7e0e381c56c3d":[0,0,0,91,82], +"classsw_1_1_u_i_element.html#a994aad366bc1f62ef7d53defa9456e64":[0,0,0,91,12], +"classsw_1_1_u_i_element.html#a9e825715639370ad2dd1f1276e6cb97f":[0,0,0,91,65], +"classsw_1_1_u_i_element.html#aa89a8c272d1a9016d2586c6eeab64dce":[0,0,0,91,15], +"classsw_1_1_u_i_element.html#aa9d544a538ca2cfa3d022da61e7637e5":[0,0,0,91,96], +"classsw_1_1_u_i_element.html#aabbfe747a3396f5cb08e952cd583c825":[0,0,0,91,44], +"classsw_1_1_u_i_element.html#aadedba1a9bca85555b70bc247b8ef835":[0,0,0,91,51], +"classsw_1_1_u_i_element.html#aaf6897b58dc2899c37a3b395bfe124b9":[0,0,0,91,83], +"classsw_1_1_u_i_element.html#ab48faeb3dde62fbbe944a28dce2f3133":[0,0,0,91,9], +"classsw_1_1_u_i_element.html#ab5832ef956cdc4face3e9dbd0c72e66e":[0,0,0,91,29], +"classsw_1_1_u_i_element.html#ab7adb46425947c0b14b3bc5b60f6fdac":[0,0,0,91,37], +"classsw_1_1_u_i_element.html#ab8557638ba9975346d62f5339de55664":[0,0,0,91,77], +"classsw_1_1_u_i_element.html#abb7de98159e23ece7285c87a2592d7ea":[0,0,0,91,64], +"classsw_1_1_u_i_element.html#abce4a26101de27550375c300b121d95d":[0,0,0,91,28], +"classsw_1_1_u_i_element.html#ac020bc2d263e0dcffa59e0f474ea6e95":[0,0,0,91,5], +"classsw_1_1_u_i_element.html#ac0d66604bc2dd555c37688135878a7f0":[0,0,0,91,87], +"classsw_1_1_u_i_element.html#ac65b1a6485b454004801a296c788db6a":[0,0,0,91,41], +"classsw_1_1_u_i_element.html#ac8088cf88b28c6b4a5f93cd7a66a769e":[0,0,0,91,6], +"classsw_1_1_u_i_element.html#aca1d15ee60f06d11aeccadfc92ed23d2":[0,0,0,91,40], +"classsw_1_1_u_i_element.html#acbe28513919da89bf3f9a5102d6353c3":[0,0,0,91,1], +"classsw_1_1_u_i_element.html#acf5b0f1e5c2e24390b7f267db28c595a":[0,0,0,91,80], +"classsw_1_1_u_i_element.html#ad2be8df1de363a180ef2c32606e2fc74":[0,0,0,91,38], +"classsw_1_1_u_i_element.html#ad3360842adfd2298d4d505305250a6eb":[0,0,0,91,43], +"classsw_1_1_u_i_element.html#ad685138138402ddd8a5fde67bbb85a45":[0,0,0,91,75], +"classsw_1_1_u_i_element.html#ad825a0e12b75238b13f422f47ddf292b":[0,0,0,91,92], +"classsw_1_1_u_i_element.html#ad9f49244beb6b854b436e8bbd18f4e21":[0,0,0,91,97], +"classsw_1_1_u_i_element.html#adf8152f31c5e109ba016316182bcec47":[0,0,0,91,25], +"classsw_1_1_u_i_element.html#ae3e134d807af7614e1cc812abb860762":[0,0,0,91,30], +"classsw_1_1_u_i_element.html#ae43f4f3c5a5c723d29f20e5590641388":[0,0,0,91,8], +"classsw_1_1_u_i_element.html#ae513a79247f76498e8f586d4ced1ff6e":[0,0,0,91,78], +"classsw_1_1_u_i_element.html#ae5706cc9d6ef3fab9176ccded231b99e":[0,0,0,91,86], +"classsw_1_1_u_i_element.html#ae7e788c5e662363d6244414c5250a39d":[0,0,0,91,81], +"classsw_1_1_u_i_element.html#aeaf2381fdffd82bd41e90c1a2cf69022":[0,0,0,91,95], +"classsw_1_1_u_i_element.html#aeebf42b059a9962fd9c2ba64dcc309ca":[0,0,0,91,0], +"classsw_1_1_u_i_element.html#aef217f2655c4a746606bf302edc16cf4":[0,0,0,91,26], +"classsw_1_1_u_i_element.html#af4f4d3a0d23a886c0257c439821f5809":[0,0,0,91,54], +"classsw_1_1_u_i_element.html#af60b45de9f894f4fb152491413f1fa73":[0,0,0,91,70], +"classsw_1_1_uniform_grid.html":[0,0,0,92], +"classsw_1_1_uniform_grid.html#a65a180db32f61dee181c0ae7e36364a6":[0,0,0,92,4], +"classsw_1_1_uniform_grid.html#a8fc9ee46df1fab2fd0538880d3d2e536":[0,0,0,92,3], +"classsw_1_1_uniform_grid.html#a9e262983bba94ed0841bff604b4fbd29":[0,0,0,92,0], +"classsw_1_1_uniform_grid.html#ac6abb7aaf70869b91207c53cfaf59bca":[0,0,0,92,2], +"classsw_1_1_uniform_grid.html#aeedb9dcb3c92bd39fa33589dc8922fcb":[0,0,0,92,1], +"classsw_1_1_uniform_grid_layout.html":[0,0,0,93], +"classsw_1_1_uniform_grid_layout.html#a2cde92e2a61f62efb85761f11c221390":[0,0,0,93,4], +"classsw_1_1_uniform_grid_layout.html#a62cfcb1c77d3d25b7adf07730aa3a144":[0,0,0,93,0], +"classsw_1_1_uniform_grid_layout.html#a73d71cc8e99540d40ab1f4fd528b9492":[0,0,0,93,2], +"classsw_1_1_uniform_grid_layout.html#aa5e7c87ab71f2ffd2c9e227ab46dab0e":[0,0,0,93,3], +"classsw_1_1_uniform_grid_layout.html#aaf9adca410dd56a6736c5ec0b96a167f":[0,0,0,93,1], +"classsw_1_1_utils.html":[0,0,0,94], +"classsw_1_1_window.html":[0,0,0,95], +"classsw_1_1_window.html#a09165434040ada6ea3f00a7d79b1f7a2":[0,0,0,95,6], +"classsw_1_1_window.html#a1a15faeb81c21aa3327dcd8fefdc5ffd":[0,0,0,95,31], +"classsw_1_1_window.html#a1cdd78ebe0571b1c9bb49403ed8d8381":[0,0,0,95,3], +"classsw_1_1_window.html#a236c7f298b6bbb432ce7c3c82a5eaacd":[0,0,0,95,15], +"classsw_1_1_window.html#a2403f422df1271f56f2ef574d91f232d":[0,0,0,95,4], +"classsw_1_1_window.html#a24eed02d394d13b368f5cf99b2a68c44":[0,0,0,95,0], +"classsw_1_1_window.html#a257ba940703f41b12990678bb3ff0e0e":[0,0,0,95,29], +"classsw_1_1_window.html#a27de84e46eda2bccca6f5b2f30fb3117":[0,0,0,95,23], +"classsw_1_1_window.html#a3281c944ffc505243ff2b958b42e6fa7":[0,0,0,95,16], +"classsw_1_1_window.html#a35a8bd930f1cf8a85204569f00b33f34":[0,0,0,95,9], +"classsw_1_1_window.html#a37bc59a8775b6f39e244cdd6f82d5e51":[0,0,0,95,17], +"classsw_1_1_window.html#a3daeab5c99e045449a8a5f086c19877e":[0,0,0,95,1], +"classsw_1_1_window.html#a4a09a7ec772a2febfcda54b9aa6a8557":[0,0,0,95,28], +"classsw_1_1_window.html#a50969fbd9f30ad27e72f11cb28ee4697":[0,0,0,95,5], +"classsw_1_1_window.html#a518c14e6ddbf171489a86baff4cbb6a3":[0,0,0,95,27], +"classsw_1_1_window.html#a5c4a30ad5dd71cba0de201846867de25":[0,0,0,95,19], +"classsw_1_1_window.html#a64ad0c8611945758af32b7681a74a0f7":[0,0,0,95,20], +"classsw_1_1_window.html#a6852326120a03242ffef09aa3bae9e09":[0,0,0,95,21], +"classsw_1_1_window.html#a850c77ff7a3271e6d2bc77258c2ed11d":[0,0,0,95,7], +"classsw_1_1_window.html#a881e11126ef89b4b0badb890c8f7ac21":[0,0,0,95,22], +"classsw_1_1_window.html#a8ff6176f2fb886593f448b430c21fc90":[0,0,0,95,11], +"classsw_1_1_window.html#a9046c167eb2a1572f420ecd5bd8aef1c":[0,0,0,95,13], +"classsw_1_1_window.html#a9f8bea034629f087944e9b33af60d9ec":[0,0,0,95,10], +"classsw_1_1_window.html#aa39df901ba7c3d77ac013ccdf6caf161":[0,0,0,95,26], +"classsw_1_1_window.html#aa9476a0b4bff312e523bba76aa82b96b":[0,0,0,95,25], +"classsw_1_1_window.html#aa9782debda43bce7438531290aa509ae":[0,0,0,95,24], +"classsw_1_1_window.html#abafe422b0435aa15ec04ced4300b6b76":[0,0,0,95,2], +"classsw_1_1_window.html#abdf47e48c8a4e9d9c368cb549ba3d938":[0,0,0,95,14], +"classsw_1_1_window.html#abff0275ae90d22951d40b769f952d415":[0,0,0,95,18], +"classsw_1_1_window.html#ac61382d82d410403dc2a9bc0afe49f38":[0,0,0,95,30], +"classsw_1_1_window.html#adfcacbd8da1c33b53a16990c76d86079":[0,0,0,95,8], +"classsw_1_1_window.html#afa57e21216664a6fa3f9fdf04dad7a7d":[0,0,0,95,12], +"classsw_1_1_wnd_base.html":[0,0,0,97], +"classsw_1_1_wnd_base.html#a0126115c0626d137ba3e7b0a5c8d793b":[0,0,0,97,84], +"classsw_1_1_wnd_base.html#a029ba4be0e492f8383f2b5fe22125acb":[0,0,0,97,53], +"classsw_1_1_wnd_base.html#a0522e3e1706406923b77d9e450016ed8":[0,0,0,97,6], +"classsw_1_1_wnd_base.html#a0e30c4d0b87c473115e7521c5c95703a":[0,0,0,97,19], +"classsw_1_1_wnd_base.html#a118948e07b472d90fce7e9811ea174aa":[0,0,0,97,39], +"classsw_1_1_wnd_base.html#a12044a0ffde9b79b03adef97bd266a1a":[0,0,0,97,5], +"classsw_1_1_wnd_base.html#a143aff6cca9e55608630d1fc320d4666":[0,0,0,97,43], +"classsw_1_1_wnd_base.html#a1445af2018a8e840a25a7487da22c51b":[0,0,0,97,50], +"classsw_1_1_wnd_base.html#a163464ef6f42dc8e6c10557715607ad2":[0,0,0,97,73], +"classsw_1_1_wnd_base.html#a17769747f602f2f7c18a0a49ce97a125":[0,0,0,97,49], +"classsw_1_1_wnd_base.html#a191f7c32914b029dca7c93e03b4841e0":[0,0,0,97,52], +"classsw_1_1_wnd_base.html#a1c0d183115a35f097b0598af43c9ca9a":[0,0,0,97,66], +"classsw_1_1_wnd_base.html#a292bd97b5820a1b4e7a38d65e2b609e8":[0,0,0,97,78], +"classsw_1_1_wnd_base.html#a292d93c230f5534cdf68ac5d685dd487":[0,0,0,97,65], +"classsw_1_1_wnd_base.html#a2c436f7819721b3f1a700c39ea538003":[0,0,0,97,22], +"classsw_1_1_wnd_base.html#a2eec178adddff9e44d83238f19d57b1b":[0,0,0,97,7], +"classsw_1_1_wnd_base.html#a33d23326907c603a24385f81e179e174":[0,0,0,97,67], +"classsw_1_1_wnd_base.html#a348d10334d2f74a44f741bf85eddaa2c":[0,0,0,97,42], +"classsw_1_1_wnd_base.html#a3e4f8edb05ac0381561f4a105db73a34":[0,0,0,97,81], +"classsw_1_1_wnd_base.html#a4030b80afd9e81e3046ccd5ec94ec83f":[0,0,0,97,83], +"classsw_1_1_wnd_base.html#a436818f8ad91446f86b42081dd1a7358":[0,0,0,97,2], +"classsw_1_1_wnd_base.html#a445edbe5db50a5a4486ddff98e8ffbae":[0,0,0,97,101], +"classsw_1_1_wnd_base.html#a46dafa7371fbef198ee7a38c4aabc632":[0,0,0,97,60], +"classsw_1_1_wnd_base.html#a4889c45dfad820c103dd7f74f2cd0661":[0,0,0,97,13], +"classsw_1_1_wnd_base.html#a4aa14c2130ef0fbb656d28c287e401f5":[0,0,0,97,41], +"classsw_1_1_wnd_base.html#a4aad533e3d37a7de43645d703dda1a84":[0,0,0,97,51], +"classsw_1_1_wnd_base.html#a4b15e8f2bcac32da4d5e540445ae201a":[0,0,0,97,55], +"classsw_1_1_wnd_base.html#a4b368860fef40406c091880fc72f9cbb":[0,0,0,97,11], +"classsw_1_1_wnd_base.html#a4c72db003eeb8a29565576ad26cc89b8":[0,0,0,97,26], +"classsw_1_1_wnd_base.html#a4c802a79d332af6e6a6ddcf13005a587":[0,0,0,97,46], +"classsw_1_1_wnd_base.html#a4d09cfbc382789150798ff6ad3d9f988":[0,0,0,97,63], +"classsw_1_1_wnd_base.html#a4f0b57de9babc053c655872ed91468dd":[0,0,0,97,95], +"classsw_1_1_wnd_base.html#a50e006e69f07abb4e6ba381121abcd22":[0,0,0,97,91], +"classsw_1_1_wnd_base.html#a515de5eb7bc6dbc8314c447a99154c6c":[0,0,0,97,57], +"classsw_1_1_wnd_base.html#a51fdc4b943e62bd67ffbff4a6e65de2a":[0,0,0,97,93], +"classsw_1_1_wnd_base.html#a529436cd730fc39ad2875728cdfe4a51":[0,0,0,97,88], +"classsw_1_1_wnd_base.html#a54aa973b24b4bc4b681ac2c21a50d204":[0,0,0,97,94], +"classsw_1_1_wnd_base.html#a585967d861673ea0477f25c1a5c0fb30":[0,0,0,97,3], +"classsw_1_1_wnd_base.html#a58f8e7dd73212a5aed4785a5af1f8a76":[0,0,0,97,70], +"classsw_1_1_wnd_base.html#a5a8952400bee12db2117fbf76312d373":[0,0,0,97,38], +"classsw_1_1_wnd_base.html#a5b90855aaaa4556e5ef5fe68e8149669":[0,0,0,97,45], +"classsw_1_1_wnd_base.html#a5fd142cef45421381b2e8b89cac67d86":[0,0,0,97,71], +"classsw_1_1_wnd_base.html#a60707bc74fd7d0599da1ea014cc37b5d":[0,0,0,97,12], +"classsw_1_1_wnd_base.html#a60e633e3cfea36b186c4a210925e865a":[0,0,0,97,21], +"classsw_1_1_wnd_base.html#a69256166096bb51cde45f101c4e9ae95":[0,0,0,97,23], +"classsw_1_1_wnd_base.html#a6c99714fa3f313e7535936585f63b9cb":[0,0,0,97,1], +"classsw_1_1_wnd_base.html#a6dbe3776aeb038659f0a290fbe1dc6d7":[0,0,0,97,99], +"classsw_1_1_wnd_base.html#a6de15bd6a264721f6bfadd40d9fce3b0":[0,0,0,97,35], +"classsw_1_1_wnd_base.html#a6e9cac4e02b3a420c42968cbf061fd02":[0,0,0,97,28], +"classsw_1_1_wnd_base.html#a6ee668e7a5261f96df0bd69a1fb868d3":[0,0,0,97,15], +"classsw_1_1_wnd_base.html#a6f1b33e5930fc14467f65ad89c2c35c3":[0,0,0,97,64], +"classsw_1_1_wnd_base.html#a71498b3ad8ae548fd7f4a531a6b70982":[0,0,0,97,87], +"classsw_1_1_wnd_base.html#a72a4024b2096ecef4248b1c254b674e2":[0,0,0,97,62], +"classsw_1_1_wnd_base.html#a72a604f374bba1e6c34b5d5e56cd26f0":[0,0,0,97,89], +"classsw_1_1_wnd_base.html#a748fda35e75d416077598f243afe9da1":[0,0,0,97,31], +"classsw_1_1_wnd_base.html#a755bd826227232fd30ba5fda47bfb060":[0,0,0,97,29], +"classsw_1_1_wnd_base.html#a7598603457217f09aae0deaad59ef063":[0,0,0,97,97], +"classsw_1_1_wnd_base.html#a792eeeffd1b43bd75024352f99822144":[0,0,0,97,8], +"classsw_1_1_wnd_base.html#a7bda583e7535a89b8b5bd327c1f32ccd":[0,0,0,97,96], +"classsw_1_1_wnd_base.html#a7dd30ab5e8700832140c329739b4b671":[0,0,0,97,24], +"classsw_1_1_wnd_base.html#a808f5d6fd407e3b65cff88f1873bd754":[0,0,0,97,100], +"classsw_1_1_wnd_base.html#a863b26226e16cf37f7169c6edc96a3b4":[0,0,0,97,80], +"classsw_1_1_wnd_base.html#a87c9d860ba24487f2b61b72987a4bd63":[0,0,0,97,16], +"classsw_1_1_wnd_base.html#a888df1f6b89e8da1ba8c7cc8f4671370":[0,0,0,97,10], +"classsw_1_1_wnd_base.html#a8ce7cbd3dad20122738f9472e51346e9":[0,0,0,97,72], +"classsw_1_1_wnd_base.html#a91165e81b129c626cabcc7b3d8a5dc43":[0,0,0,97,82], +"classsw_1_1_wnd_base.html#a935f2bb51b99929ac5166ad52396971a":[0,0,0,97,17], +"classsw_1_1_wnd_base.html#a97898f967c916e67c152c69f4c7c6cd6":[0,0,0,97,85], +"classsw_1_1_wnd_base.html#a98d960679d1889998ba548af6a3c8fc4":[0,0,0,97,27], +"classsw_1_1_wnd_base.html#a9afff86d32e9b54cccc204ef29a85891":[0,0,0,97,98], +"classsw_1_1_wnd_base.html#aa04cd83e79c42d21127799e573d9f299":[0,0,0,97,25], +"classsw_1_1_wnd_base.html#aa605b4a21b4cd8c43c226349665a5f28":[0,0,0,97,20], +"classsw_1_1_wnd_base.html#aab509b68c9c0b612862cf41d8ef685a3":[0,0,0,97,0], +"classsw_1_1_wnd_base.html#aaba3c3ea0a8d12be237ef28e44018677":[0,0,0,97,56] }; diff --git a/docs/navtreeindex3.js b/docs/navtreeindex3.js index 436ebfe9..3ab7ec0b 100644 --- a/docs/navtreeindex3.js +++ b/docs/navtreeindex3.js @@ -1,38 +1,51 @@ var NAVTREEINDEX3 = { -"classsw_1_1_wnd_base.html#ad5e7d8d1a548315b3e709151f71766b3":[0,0,0,95,86], -"classsw_1_1_wnd_base.html#ad63e584926b894913ee1ef4c039a2f98":[0,0,0,95,59], -"classsw_1_1_wnd_base.html#ad82a0ab5f0622abaf30456e7e309409e":[0,0,0,95,40], -"classsw_1_1_wnd_base.html#ad90b0eebbaa959949cae5b736e2104aa":[0,0,0,95,30], -"classsw_1_1_wnd_base.html#adb808283f6ccd5a32834ad25fa2f407b":[0,0,0,95,61], -"classsw_1_1_wnd_base.html#adc6593d8819e1e078cdba6e63d7fd679":[0,0,0,95,9], -"classsw_1_1_wnd_base.html#adcf94f9017f5589b3027955e48c34b62":[0,0,0,95,48], -"classsw_1_1_wnd_base.html#ae2f1b78dd8165c8bca0313180a9f4b81":[0,0,0,95,75], -"classsw_1_1_wnd_base.html#aea1d61cd6e108834e498009926ff3ebd":[0,0,0,95,33], -"classsw_1_1_wnd_base.html#aeb7286fd72b6d49b6d0b22d8cde07941":[0,0,0,95,47], -"classsw_1_1_wnd_base.html#aef02bbac8ef450e5f3f478b41031a3ab":[0,0,0,95,79], -"classsw_1_1_wnd_base.html#af4e6b89a39f12d2fbdf987d79c05b190":[0,0,0,95,34], -"classsw_1_1_wnd_base.html#af6773148b0a9a1fdd3c8a0d8cd54a2fd":[0,0,0,95,32], -"classsw_1_1_wnd_base.html#af8df0384e2be0569e0da1f51985204c8":[0,0,0,95,77], -"classsw_1_1_wnd_base.html#afffc1d57f289f965bc50d8150c4586e1":[0,0,0,95,36], -"classsw_1_1_wrap_layout.html":[0,0,0,96], -"classsw_1_1_wrap_layout.html#a1ce0e6707fe1463b857889755df7ee09":[0,0,0,96,2], -"classsw_1_1_wrap_layout.html#a5d7818fc025713f3a29df602ca934178":[0,0,0,96,1], -"classsw_1_1_wrap_layout.html#ab9be93cbdff99c85100c72559ed36b1b":[0,0,0,96,0], -"classsw_1_1_wrap_layout_h.html":[0,0,0,97], -"classsw_1_1_wrap_layout_h.html#a1c8f53445bcda82c733b1e6d1e45b788":[0,0,0,97,0], -"classsw_1_1_wrap_layout_h.html#a66eacfc28ef8001230272227cb4fcbe3":[0,0,0,97,1], -"classsw_1_1_wrap_layout_v.html":[0,0,0,98], -"classsw_1_1_wrap_layout_v.html#a010cae9030f68a485430c9cbe4b230a6":[0,0,0,98,0], -"classsw_1_1_wrap_layout_v.html#a3e87afe055e4d53c9ac4c6ad0794ddf4":[0,0,0,98,1], -"classsw_1_1_wrap_panel.html":[0,0,0,99], -"classsw_1_1_wrap_panel.html#a2b718024b1dd81f08906afd3fa18a3f7":[0,0,0,99,2], -"classsw_1_1_wrap_panel.html#a7dfc71028a9f60941ff4387ae175b078":[0,0,0,99,0], -"classsw_1_1_wrap_panel.html#ab2961a927e8b28a38d9b5e2d4487d163":[0,0,0,99,1], -"classsw_1_1_write_only_property.html":[0,0,0,100], -"classsw_1_1_write_only_property.html#a38c348942cc3981b10e3929da579a147":[0,0,0,100,0], -"classsw_1_1_write_only_property.html#a63a9ab87270f1ce81833bb36349e258a":[0,0,0,100,1], -"classsw_1_1_write_only_property.html#a870a065cc24bec479bc35eeaa0afee87":[0,0,0,100,2], +"classsw_1_1_wnd_base.html#aaf334072263bea6dddf93a7601979023":[0,0,0,97,37], +"classsw_1_1_wnd_base.html#ab37c3f3ea7654eb6a0b15405196c4549":[0,0,0,97,54], +"classsw_1_1_wnd_base.html#ab69baf3851ba40b7f6bba5fb67f9ab51":[0,0,0,97,69], +"classsw_1_1_wnd_base.html#ab7ac81f0ed48a5093fd3170c7c756963":[0,0,0,97,76], +"classsw_1_1_wnd_base.html#aba0ab3734c3d4c07f3b9bbb029b98edb":[0,0,0,97,74], +"classsw_1_1_wnd_base.html#abc0b653ccc071c2cfcba42fa8eef738f":[0,0,0,97,92], +"classsw_1_1_wnd_base.html#ac34494921eed0f67a053a9393d78bcf9":[0,0,0,97,4], +"classsw_1_1_wnd_base.html#ac49c6452ceb4950dd581189615753b0c":[0,0,0,97,90], +"classsw_1_1_wnd_base.html#ace8f6b05caa5d335f7d574c38035bfa7":[0,0,0,97,14], +"classsw_1_1_wnd_base.html#acf4e6c0bbc8fddc9e790864e403c5c91":[0,0,0,97,58], +"classsw_1_1_wnd_base.html#ad0f719a2feffe354737cef9b13b63db0":[0,0,0,97,18], +"classsw_1_1_wnd_base.html#ad188b201bbbc650c4ad9c388dbac18b4":[0,0,0,97,44], +"classsw_1_1_wnd_base.html#ad50166a8ade9a7eaf0088f13fd708e2f":[0,0,0,97,68], +"classsw_1_1_wnd_base.html#ad5e7d8d1a548315b3e709151f71766b3":[0,0,0,97,86], +"classsw_1_1_wnd_base.html#ad63e584926b894913ee1ef4c039a2f98":[0,0,0,97,59], +"classsw_1_1_wnd_base.html#ad82a0ab5f0622abaf30456e7e309409e":[0,0,0,97,40], +"classsw_1_1_wnd_base.html#ad90b0eebbaa959949cae5b736e2104aa":[0,0,0,97,30], +"classsw_1_1_wnd_base.html#adb808283f6ccd5a32834ad25fa2f407b":[0,0,0,97,61], +"classsw_1_1_wnd_base.html#adc6593d8819e1e078cdba6e63d7fd679":[0,0,0,97,9], +"classsw_1_1_wnd_base.html#adcf94f9017f5589b3027955e48c34b62":[0,0,0,97,48], +"classsw_1_1_wnd_base.html#ae2f1b78dd8165c8bca0313180a9f4b81":[0,0,0,97,75], +"classsw_1_1_wnd_base.html#aea1d61cd6e108834e498009926ff3ebd":[0,0,0,97,33], +"classsw_1_1_wnd_base.html#aeb7286fd72b6d49b6d0b22d8cde07941":[0,0,0,97,47], +"classsw_1_1_wnd_base.html#aef02bbac8ef450e5f3f478b41031a3ab":[0,0,0,97,79], +"classsw_1_1_wnd_base.html#af4e6b89a39f12d2fbdf987d79c05b190":[0,0,0,97,34], +"classsw_1_1_wnd_base.html#af6773148b0a9a1fdd3c8a0d8cd54a2fd":[0,0,0,97,32], +"classsw_1_1_wnd_base.html#af8df0384e2be0569e0da1f51985204c8":[0,0,0,97,77], +"classsw_1_1_wnd_base.html#afffc1d57f289f965bc50d8150c4586e1":[0,0,0,97,36], +"classsw_1_1_wrap_layout.html":[0,0,0,98], +"classsw_1_1_wrap_layout.html#a1ce0e6707fe1463b857889755df7ee09":[0,0,0,98,2], +"classsw_1_1_wrap_layout.html#a5d7818fc025713f3a29df602ca934178":[0,0,0,98,1], +"classsw_1_1_wrap_layout.html#ab9be93cbdff99c85100c72559ed36b1b":[0,0,0,98,0], +"classsw_1_1_wrap_layout_h.html":[0,0,0,99], +"classsw_1_1_wrap_layout_h.html#a1c8f53445bcda82c733b1e6d1e45b788":[0,0,0,99,0], +"classsw_1_1_wrap_layout_h.html#a66eacfc28ef8001230272227cb4fcbe3":[0,0,0,99,1], +"classsw_1_1_wrap_layout_v.html":[0,0,0,100], +"classsw_1_1_wrap_layout_v.html#a010cae9030f68a485430c9cbe4b230a6":[0,0,0,100,0], +"classsw_1_1_wrap_layout_v.html#a3e87afe055e4d53c9ac4c6ad0794ddf4":[0,0,0,100,1], +"classsw_1_1_wrap_panel.html":[0,0,0,101], +"classsw_1_1_wrap_panel.html#a2b718024b1dd81f08906afd3fa18a3f7":[0,0,0,101,2], +"classsw_1_1_wrap_panel.html#a7dfc71028a9f60941ff4387ae175b078":[0,0,0,101,0], +"classsw_1_1_wrap_panel.html#ab2961a927e8b28a38d9b5e2d4487d163":[0,0,0,101,1], +"classsw_1_1_write_only_property.html":[0,0,0,102], +"classsw_1_1_write_only_property.html#a38c348942cc3981b10e3929da579a147":[0,0,0,102,0], +"classsw_1_1_write_only_property.html#a63a9ab87270f1ce81833bb36349e258a":[0,0,0,102,1], +"classsw_1_1_write_only_property.html#a870a065cc24bec479bc35eeaa0afee87":[0,0,0,102,2], "dir_01fcd3835fb4e7d9331b722d86291b65.html":[1,0,0], "dir_ed5f6ece24ffcc4307a76d27c2494db3.html":[1,0,0,0], "files.html":[1,0], @@ -44,8 +57,8 @@ var NAVTREEINDEX3 = "functions_e.html":[0,3,0,4], "functions_enum.html":[0,3,3], "functions_f.html":[0,3,0,5], -"functions_func.html":[0,3,1,0], "functions_func.html":[0,3,1], +"functions_func.html":[0,3,1,0], "functions_func_b.html":[0,3,1,1], "functions_func_c.html":[0,3,1,2], "functions_func_d.html":[0,3,1,3], @@ -139,50 +152,50 @@ var NAVTREEINDEX3 = "structsw_1_1_grid_row.html#a44aaee7c8ea61e9886bab025fcd8271a":[0,0,0,33,2], "structsw_1_1_grid_row.html#a6d8ada10faf765f507353052361bfacf":[0,0,0,33,4], "structsw_1_1_grid_row.html#abe71efc459295a5dbfad7bf7aaff4d4e":[0,0,0,33,3], -"structsw_1_1_key_down_event_args.html":[0,0,0,39], -"structsw_1_1_key_flags.html":[0,0,0,40], -"structsw_1_1_key_up_event_args.html":[0,0,0,41], -"structsw_1_1_list_view_check_state_changed_event_args.html":[0,0,0,48], -"structsw_1_1_list_view_column.html":[0,0,0,49], -"structsw_1_1_list_view_column.html#a073e675567add518aa85b5356d472cf9":[0,0,0,49,0], -"structsw_1_1_list_view_column.html#a2fd382151fa269ec5f5042232cfb84f8":[0,0,0,49,1], -"structsw_1_1_list_view_column.html#abd8ec9f51310be92ec1ff113314e5257":[0,0,0,49,2], -"structsw_1_1_list_view_header_clicked_event_args.html":[0,0,0,50], -"structsw_1_1_list_view_item_clicked_event_args.html":[0,0,0,51], -"structsw_1_1_mouse_button_down_event_args.html":[0,0,0,55], -"structsw_1_1_mouse_button_up_event_args.html":[0,0,0,56], -"structsw_1_1_mouse_move_event_args.html":[0,0,0,57], -"structsw_1_1_mouse_wheel_event_args.html":[0,0,0,58], -"structsw_1_1_point.html":[0,0,0,64], -"structsw_1_1_point.html#a4d0905242fc362a62b21ea6adf2e54e6":[0,0,0,64,1], -"structsw_1_1_point.html#afceae691252771cc050e8e4152971ba9":[0,0,0,64,0], -"structsw_1_1_position_changed_event_args.html":[0,0,0,65], -"structsw_1_1_proc_msg.html":[0,0,0,66], -"structsw_1_1_proc_msg.html#a114f533462da6db1852ad4aa5485d86b":[0,0,0,66,3], -"structsw_1_1_proc_msg.html#a63d6c8d6ebe3bc0621ac4596a487c418":[0,0,0,66,2], -"structsw_1_1_proc_msg.html#a944e366c9c75b08eebbb32fc3959f334":[0,0,0,66,0], -"structsw_1_1_proc_msg.html#acb7f68d396561c6c4c877255b18b1b5d":[0,0,0,66,1], -"structsw_1_1_rect.html":[0,0,0,71], -"structsw_1_1_rect.html#ada69154ab3d734587ef9695b10144b01":[0,0,0,71,3], -"structsw_1_1_rect.html#adeb78de2f6a13f22d475605eb0e0e074":[0,0,0,71,2], -"structsw_1_1_rect.html#af6c8b62aa73047637c58d8cdf6c05aff":[0,0,0,71,1], -"structsw_1_1_rect.html#afb7a0a9a12dad7756f46b2e1abdafa7c":[0,0,0,71,0], -"structsw_1_1_routed_event_args.html":[0,0,0,72], -"structsw_1_1_routed_event_args.html#a46df8118b89dcc6c494cdbded901b082":[0,0,0,72,1], -"structsw_1_1_routed_event_args.html#a9fb971eec1e6ba4aee1366c3f9c20bfd":[0,0,0,72,2], -"structsw_1_1_routed_event_args.html#ac299c564c53fa039f47a06d08272d969":[0,0,0,72,3], -"structsw_1_1_routed_event_args.html#ad6e6da62f114abfabb682afd38b6f7a3":[0,0,0,72,0], -"structsw_1_1_routed_event_args_of_type.html":[0,0,0,73], -"structsw_1_1_scrolling_event_args.html":[0,0,0,75], -"structsw_1_1_show_context_menu_event_args.html":[0,0,0,76], -"structsw_1_1_size.html":[0,0,0,77], -"structsw_1_1_size.html#a084604eba918ac19b2f8402e330d767b":[0,0,0,77,0], -"structsw_1_1_size.html#a22c3b210b0c48e2812604381f729d5bd":[0,0,0,77,1], -"structsw_1_1_size_changed_event_args.html":[0,0,0,78], -"structsw_1_1_thickness.html":[0,0,0,88], -"structsw_1_1_thickness.html#a0efb5b20b89f2d86885a447b36926bd5":[0,0,0,88,2], -"structsw_1_1_thickness.html#a817cf35540e487ad81984daf97b92208":[0,0,0,88,3], -"structsw_1_1_thickness.html#acea3dd0c6fdcc155ac47ec7c3eab97fa":[0,0,0,88,0], -"structsw_1_1_thickness.html#ad060a41dfe2453ef882849546eb7980e":[0,0,0,88,1], -"structsw_1_1_window_closing_event_args.html":[0,0,0,94] +"structsw_1_1_key_down_event_args.html":[0,0,0,40], +"structsw_1_1_key_flags.html":[0,0,0,41], +"structsw_1_1_key_up_event_args.html":[0,0,0,42], +"structsw_1_1_list_view_check_state_changed_event_args.html":[0,0,0,49], +"structsw_1_1_list_view_column.html":[0,0,0,50], +"structsw_1_1_list_view_column.html#a073e675567add518aa85b5356d472cf9":[0,0,0,50,0], +"structsw_1_1_list_view_column.html#a2fd382151fa269ec5f5042232cfb84f8":[0,0,0,50,1], +"structsw_1_1_list_view_column.html#abd8ec9f51310be92ec1ff113314e5257":[0,0,0,50,2], +"structsw_1_1_list_view_header_clicked_event_args.html":[0,0,0,51], +"structsw_1_1_list_view_item_clicked_event_args.html":[0,0,0,52], +"structsw_1_1_mouse_button_down_event_args.html":[0,0,0,56], +"structsw_1_1_mouse_button_up_event_args.html":[0,0,0,57], +"structsw_1_1_mouse_move_event_args.html":[0,0,0,58], +"structsw_1_1_mouse_wheel_event_args.html":[0,0,0,59], +"structsw_1_1_point.html":[0,0,0,65], +"structsw_1_1_point.html#a4d0905242fc362a62b21ea6adf2e54e6":[0,0,0,65,1], +"structsw_1_1_point.html#afceae691252771cc050e8e4152971ba9":[0,0,0,65,0], +"structsw_1_1_position_changed_event_args.html":[0,0,0,66], +"structsw_1_1_proc_msg.html":[0,0,0,67], +"structsw_1_1_proc_msg.html#a114f533462da6db1852ad4aa5485d86b":[0,0,0,67,3], +"structsw_1_1_proc_msg.html#a63d6c8d6ebe3bc0621ac4596a487c418":[0,0,0,67,2], +"structsw_1_1_proc_msg.html#a944e366c9c75b08eebbb32fc3959f334":[0,0,0,67,0], +"structsw_1_1_proc_msg.html#acb7f68d396561c6c4c877255b18b1b5d":[0,0,0,67,1], +"structsw_1_1_rect.html":[0,0,0,72], +"structsw_1_1_rect.html#ada69154ab3d734587ef9695b10144b01":[0,0,0,72,3], +"structsw_1_1_rect.html#adeb78de2f6a13f22d475605eb0e0e074":[0,0,0,72,2], +"structsw_1_1_rect.html#af6c8b62aa73047637c58d8cdf6c05aff":[0,0,0,72,1], +"structsw_1_1_rect.html#afb7a0a9a12dad7756f46b2e1abdafa7c":[0,0,0,72,0], +"structsw_1_1_routed_event_args.html":[0,0,0,73], +"structsw_1_1_routed_event_args.html#a46df8118b89dcc6c494cdbded901b082":[0,0,0,73,1], +"structsw_1_1_routed_event_args.html#a9fb971eec1e6ba4aee1366c3f9c20bfd":[0,0,0,73,2], +"structsw_1_1_routed_event_args.html#ac299c564c53fa039f47a06d08272d969":[0,0,0,73,3], +"structsw_1_1_routed_event_args.html#ad6e6da62f114abfabb682afd38b6f7a3":[0,0,0,73,0], +"structsw_1_1_routed_event_args_of_type.html":[0,0,0,74], +"structsw_1_1_scrolling_event_args.html":[0,0,0,76], +"structsw_1_1_show_context_menu_event_args.html":[0,0,0,77], +"structsw_1_1_size.html":[0,0,0,78], +"structsw_1_1_size.html#a084604eba918ac19b2f8402e330d767b":[0,0,0,78,0], +"structsw_1_1_size.html#a22c3b210b0c48e2812604381f729d5bd":[0,0,0,78,1], +"structsw_1_1_size_changed_event_args.html":[0,0,0,79], +"structsw_1_1_thickness.html":[0,0,0,90], +"structsw_1_1_thickness.html#a0efb5b20b89f2d86885a447b36926bd5":[0,0,0,90,2], +"structsw_1_1_thickness.html#a817cf35540e487ad81984daf97b92208":[0,0,0,90,3], +"structsw_1_1_thickness.html#acea3dd0c6fdcc155ac47ec7c3eab97fa":[0,0,0,90,0], +"structsw_1_1_thickness.html#ad060a41dfe2453ef882849546eb7980e":[0,0,0,90,1], +"structsw_1_1_window_closing_event_args.html":[0,0,0,96] }; diff --git a/docs/search/all_11.js b/docs/search/all_11.js index c3893940..ebb5eb35 100644 --- a/docs/search/all_11.js +++ b/docs/search/all_11.js @@ -13,66 +13,67 @@ var searchData= ['readonlyproperty_3c_20horizontalalignment_20_3e_10',['ReadOnlyProperty< HorizontalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], ['readonlyproperty_3c_20hwnd_20_3e_11',['ReadOnlyProperty< HWND >',['../classsw_1_1_read_only_property.html',1,'sw']]], ['readonlyproperty_3c_20int_20_3e_12',['ReadOnlyProperty< int >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20progressbarstate_20_3e_13',['ReadOnlyProperty< ProgressBarState >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20std_3a_3awstring_20_3e_14',['ReadOnlyProperty< std::wstring >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20strlist_20_3e_15',['ReadOnlyProperty< StrList >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3aborderstyle_20_3e_16',['ReadOnlyProperty< sw::BorderStyle >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3acheckstate_20_3e_17',['ReadOnlyProperty< sw::CheckState >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3acolor_20_3e_18',['ReadOnlyProperty< sw::Color >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3acontextmenu_20_2a_20_3e_19',['ReadOnlyProperty< sw::ContextMenu * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3afont_20_3e_20',['ReadOnlyProperty< sw::Font >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3afontweight_20_3e_21',['ReadOnlyProperty< sw::FontWeight >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3ahorizontalalignment_20_3e_22',['ReadOnlyProperty< sw::HorizontalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3alayouthost_20_2a_20_3e_23',['ReadOnlyProperty< sw::LayoutHost * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3amenu_20_2a_20_3e_24',['ReadOnlyProperty< sw::Menu * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3aorientation_20_3e_25',['ReadOnlyProperty< sw::Orientation >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3apoint_20_3e_26',['ReadOnlyProperty< sw::Point >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3arect_20_3e_27',['ReadOnlyProperty< sw::Rect >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3atexttrimming_20_3e_28',['ReadOnlyProperty< sw::TextTrimming >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3athickness_20_3e_29',['ReadOnlyProperty< sw::Thickness >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3auielement_20_2a_20_3e_30',['ReadOnlyProperty< sw::UIElement * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3averticalalignment_20_3e_31',['ReadOnlyProperty< sw::VerticalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3awindow_20_2a_20_3e_32',['ReadOnlyProperty< sw::Window * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3awndbase_20_2a_20_3e_33',['ReadOnlyProperty< sw::WndBase * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20tabalignment_20_3e_34',['ReadOnlyProperty< TabAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20titem_20_3e_35',['ReadOnlyProperty< TItem >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20uint16_5ft_20_3e_36',['ReadOnlyProperty< uint16_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20uint64_5ft_20_3e_37',['ReadOnlyProperty< uint64_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20verticalalignment_20_3e_38',['ReadOnlyProperty< VerticalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20wchar_5ft_20_3e_39',['ReadOnlyProperty< wchar_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20windowstartuplocation_20_3e_40',['ReadOnlyProperty< WindowStartupLocation >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20windowstate_20_3e_41',['ReadOnlyProperty< WindowState >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['rect_42',['Rect',['../structsw_1_1_rect.html',1,'sw::Rect'],['../classsw_1_1_wnd_base.html#a7598603457217f09aae0deaad59ef063',1,'sw::WndBase::Rect']]], - ['redraw_43',['Redraw',['../classsw_1_1_wnd_base.html#a1c0d183115a35f097b0598af43c9ca9a',1,'sw::WndBase']]], - ['registerroutedevent_44',['RegisterRoutedEvent',['../classsw_1_1_u_i_element.html#a62c0e59790735abb3f0a9f002e651c16',1,'sw::UIElement::RegisterRoutedEvent(RoutedEventType eventType, const RoutedEvent &handler)'],['../classsw_1_1_u_i_element.html#a09946400c66a4bfd34cfb8918652a34a',1,'sw::UIElement::RegisterRoutedEvent(RoutedEventType eventType, T &obj, void(T::*handler)(UIElement &, RoutedEventArgs &))'],['../classsw_1_1_u_i_element.html#a0fe3a905c1fd58baa911bc13aac9f181',1,'sw::UIElement::RegisterRoutedEvent(std::function< void(UIElement &, TEventArgs &)> handler)'],['../classsw_1_1_u_i_element.html#abb7de98159e23ece7285c87a2592d7ea',1,'sw::UIElement::RegisterRoutedEvent(THandleObj &obj, void(THandleObj::*handler)(UIElement &, TEventArgs &))']]], - ['remove_45',['Remove',['../classsw_1_1_dictionary.html#afc07e417b7ccc36dc5a7dab5018b6186',1,'sw::Dictionary::Remove()'],['../classsw_1_1_list.html#ae0f77fc0d146ee739725da4cc337bbe4',1,'sw::List::Remove(const T &value) const']]], - ['removeat_46',['RemoveAt',['../classsw_1_1_list.html#a61b8b974966080702d94323ef0e46f85',1,'sw::List']]], - ['removechild_47',['RemoveChild',['../classsw_1_1_u_i_element.html#a925353891b62cb6989410d788a8a4e90',1,'sw::UIElement::RemoveChild(UIElement *element)'],['../classsw_1_1_u_i_element.html#a9e825715639370ad2dd1f1276e6cb97f',1,'sw::UIElement::RemoveChild(UIElement &element)']]], - ['removechildat_48',['RemoveChildAt',['../classsw_1_1_u_i_element.html#a622a68f74b9122c0de9c57e547b0a62b',1,'sw::UIElement']]], - ['removecolumnat_49',['RemoveColumnAt',['../classsw_1_1_list_view.html#a739a22388145f5bdc9d694e0a7cdf060',1,'sw::ListView']]], - ['removeitem_50',['RemoveItem',['../classsw_1_1_menu_base.html#a75c96dd59694d38a9ea59e3973cd5bea',1,'sw::MenuBase']]], - ['removeitemat_51',['RemoveItemAt',['../classsw_1_1_combo_box.html#acd95ee1c4a1d8909d78df8c8e1820088',1,'sw::ComboBox::RemoveItemAt()'],['../classsw_1_1_items_control.html#a8ee8ced8a1134133fa7066ee4e29b7eb',1,'sw::ItemsControl::RemoveItemAt()'],['../classsw_1_1_list_box.html#a7bc0ff18482d6a90f643e9b4d796c9ed',1,'sw::ListBox::RemoveItemAt()'],['../classsw_1_1_list_view.html#aa8794834f72d435f8b6dee8b34d1d59c',1,'sw::ListView::RemoveItemAt()']]], - ['rend_52',['rend',['../classsw_1_1_dictionary.html#ab46b8829980f88dd6fe703d4d2961773',1,'sw::Dictionary::rend()'],['../classsw_1_1_list.html#a926521f6a537069d6e398306b9f870fb',1,'sw::List::rend()']]], - ['resetcursor_53',['ResetCursor',['../classsw_1_1_u_i_element.html#a421400e98ae700b0593cda2ceec5c1f7',1,'sw::UIElement']]], - ['resethandle_54',['ResetHandle',['../classsw_1_1_control.html#ac6593e51639858796dfa85f3910ccba9',1,'sw::Control']]], - ['right_55',['right',['../structsw_1_1_thickness.html#a0efb5b20b89f2d86885a447b36926bd5',1,'sw::Thickness']]], - ['routedeventargs_56',['RoutedEventArgs',['../structsw_1_1_routed_event_args.html',1,'sw::RoutedEventArgs'],['../structsw_1_1_routed_event_args.html#ad6e6da62f114abfabb682afd38b6f7a3',1,'sw::RoutedEventArgs::RoutedEventArgs()']]], - ['routedeventargsoftype_57',['RoutedEventArgsOfType',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20layer_5fscrolling_20_3e_58',['RoutedEventArgsOfType< Layer_Scrolling >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20listview_5fcheckstatechanged_20_3e_59',['RoutedEventArgsOfType< ListView_CheckStateChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fgotchar_20_3e_60',['RoutedEventArgsOfType< UIElement_GotChar >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fkeydown_20_3e_61',['RoutedEventArgsOfType< UIElement_KeyDown >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fkeyup_20_3e_62',['RoutedEventArgsOfType< UIElement_KeyUp >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fmousebuttondown_20_3e_63',['RoutedEventArgsOfType< UIElement_MouseButtonDown >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fmousebuttonup_20_3e_64',['RoutedEventArgsOfType< UIElement_MouseButtonUp >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fmousemove_20_3e_65',['RoutedEventArgsOfType< UIElement_MouseMove >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fmousewheel_20_3e_66',['RoutedEventArgsOfType< UIElement_MouseWheel >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fpositionchanged_20_3e_67',['RoutedEventArgsOfType< UIElement_PositionChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fshowcontextmenu_20_3e_68',['RoutedEventArgsOfType< UIElement_ShowContextMenu >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fsizechanged_20_3e_69',['RoutedEventArgsOfType< UIElement_SizeChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20window_5fclosing_20_3e_70',['RoutedEventArgsOfType< Window_Closing >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['row_71',['row',['../structsw_1_1_grid_layout_tag.html#a8411afa319d4ad7cf2d95edd5aa3434c',1,'sw::GridLayoutTag']]], - ['rows_72',['Rows',['../classsw_1_1_uniform_grid.html#a65a180db32f61dee181c0ae7e36364a6',1,'sw::UniformGrid']]], + ['readonlyproperty_3c_20orientation_20_3e_13',['ReadOnlyProperty< Orientation >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20progressbarstate_20_3e_14',['ReadOnlyProperty< ProgressBarState >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20std_3a_3awstring_20_3e_15',['ReadOnlyProperty< std::wstring >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20strlist_20_3e_16',['ReadOnlyProperty< StrList >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3aborderstyle_20_3e_17',['ReadOnlyProperty< sw::BorderStyle >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3acheckstate_20_3e_18',['ReadOnlyProperty< sw::CheckState >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3acolor_20_3e_19',['ReadOnlyProperty< sw::Color >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3acontextmenu_20_2a_20_3e_20',['ReadOnlyProperty< sw::ContextMenu * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3afont_20_3e_21',['ReadOnlyProperty< sw::Font >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3afontweight_20_3e_22',['ReadOnlyProperty< sw::FontWeight >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3ahorizontalalignment_20_3e_23',['ReadOnlyProperty< sw::HorizontalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3alayouthost_20_2a_20_3e_24',['ReadOnlyProperty< sw::LayoutHost * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3amenu_20_2a_20_3e_25',['ReadOnlyProperty< sw::Menu * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3aorientation_20_3e_26',['ReadOnlyProperty< sw::Orientation >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3apoint_20_3e_27',['ReadOnlyProperty< sw::Point >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3arect_20_3e_28',['ReadOnlyProperty< sw::Rect >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3atexttrimming_20_3e_29',['ReadOnlyProperty< sw::TextTrimming >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3athickness_20_3e_30',['ReadOnlyProperty< sw::Thickness >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3auielement_20_2a_20_3e_31',['ReadOnlyProperty< sw::UIElement * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3averticalalignment_20_3e_32',['ReadOnlyProperty< sw::VerticalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3awindow_20_2a_20_3e_33',['ReadOnlyProperty< sw::Window * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3awndbase_20_2a_20_3e_34',['ReadOnlyProperty< sw::WndBase * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20tabalignment_20_3e_35',['ReadOnlyProperty< TabAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20titem_20_3e_36',['ReadOnlyProperty< TItem >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20uint16_5ft_20_3e_37',['ReadOnlyProperty< uint16_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20uint64_5ft_20_3e_38',['ReadOnlyProperty< uint64_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20verticalalignment_20_3e_39',['ReadOnlyProperty< VerticalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20wchar_5ft_20_3e_40',['ReadOnlyProperty< wchar_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20windowstartuplocation_20_3e_41',['ReadOnlyProperty< WindowStartupLocation >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20windowstate_20_3e_42',['ReadOnlyProperty< WindowState >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['rect_43',['Rect',['../structsw_1_1_rect.html',1,'sw::Rect'],['../classsw_1_1_wnd_base.html#a7598603457217f09aae0deaad59ef063',1,'sw::WndBase::Rect']]], + ['redraw_44',['Redraw',['../classsw_1_1_wnd_base.html#a1c0d183115a35f097b0598af43c9ca9a',1,'sw::WndBase']]], + ['registerroutedevent_45',['RegisterRoutedEvent',['../classsw_1_1_u_i_element.html#a62c0e59790735abb3f0a9f002e651c16',1,'sw::UIElement::RegisterRoutedEvent(RoutedEventType eventType, const RoutedEvent &handler)'],['../classsw_1_1_u_i_element.html#a09946400c66a4bfd34cfb8918652a34a',1,'sw::UIElement::RegisterRoutedEvent(RoutedEventType eventType, T &obj, void(T::*handler)(UIElement &, RoutedEventArgs &))'],['../classsw_1_1_u_i_element.html#a0fe3a905c1fd58baa911bc13aac9f181',1,'sw::UIElement::RegisterRoutedEvent(std::function< void(UIElement &, TEventArgs &)> handler)'],['../classsw_1_1_u_i_element.html#abb7de98159e23ece7285c87a2592d7ea',1,'sw::UIElement::RegisterRoutedEvent(THandleObj &obj, void(THandleObj::*handler)(UIElement &, TEventArgs &))']]], + ['remove_46',['Remove',['../classsw_1_1_dictionary.html#afc07e417b7ccc36dc5a7dab5018b6186',1,'sw::Dictionary::Remove()'],['../classsw_1_1_list.html#ae0f77fc0d146ee739725da4cc337bbe4',1,'sw::List::Remove(const T &value) const']]], + ['removeat_47',['RemoveAt',['../classsw_1_1_list.html#a61b8b974966080702d94323ef0e46f85',1,'sw::List']]], + ['removechild_48',['RemoveChild',['../classsw_1_1_u_i_element.html#a925353891b62cb6989410d788a8a4e90',1,'sw::UIElement::RemoveChild(UIElement *element)'],['../classsw_1_1_u_i_element.html#a9e825715639370ad2dd1f1276e6cb97f',1,'sw::UIElement::RemoveChild(UIElement &element)']]], + ['removechildat_49',['RemoveChildAt',['../classsw_1_1_u_i_element.html#a622a68f74b9122c0de9c57e547b0a62b',1,'sw::UIElement']]], + ['removecolumnat_50',['RemoveColumnAt',['../classsw_1_1_list_view.html#a739a22388145f5bdc9d694e0a7cdf060',1,'sw::ListView']]], + ['removeitem_51',['RemoveItem',['../classsw_1_1_menu_base.html#a75c96dd59694d38a9ea59e3973cd5bea',1,'sw::MenuBase']]], + ['removeitemat_52',['RemoveItemAt',['../classsw_1_1_combo_box.html#acd95ee1c4a1d8909d78df8c8e1820088',1,'sw::ComboBox::RemoveItemAt()'],['../classsw_1_1_items_control.html#a8ee8ced8a1134133fa7066ee4e29b7eb',1,'sw::ItemsControl::RemoveItemAt()'],['../classsw_1_1_list_box.html#a7bc0ff18482d6a90f643e9b4d796c9ed',1,'sw::ListBox::RemoveItemAt()'],['../classsw_1_1_list_view.html#aa8794834f72d435f8b6dee8b34d1d59c',1,'sw::ListView::RemoveItemAt()']]], + ['rend_53',['rend',['../classsw_1_1_dictionary.html#ab46b8829980f88dd6fe703d4d2961773',1,'sw::Dictionary::rend()'],['../classsw_1_1_list.html#a926521f6a537069d6e398306b9f870fb',1,'sw::List::rend()']]], + ['resetcursor_54',['ResetCursor',['../classsw_1_1_u_i_element.html#a421400e98ae700b0593cda2ceec5c1f7',1,'sw::UIElement']]], + ['resethandle_55',['ResetHandle',['../classsw_1_1_control.html#ac6593e51639858796dfa85f3910ccba9',1,'sw::Control']]], + ['right_56',['right',['../structsw_1_1_thickness.html#a0efb5b20b89f2d86885a447b36926bd5',1,'sw::Thickness']]], + ['routedeventargs_57',['RoutedEventArgs',['../structsw_1_1_routed_event_args.html',1,'sw::RoutedEventArgs'],['../structsw_1_1_routed_event_args.html#ad6e6da62f114abfabb682afd38b6f7a3',1,'sw::RoutedEventArgs::RoutedEventArgs()']]], + ['routedeventargsoftype_58',['RoutedEventArgsOfType',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20layer_5fscrolling_20_3e_59',['RoutedEventArgsOfType< Layer_Scrolling >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20listview_5fcheckstatechanged_20_3e_60',['RoutedEventArgsOfType< ListView_CheckStateChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fgotchar_20_3e_61',['RoutedEventArgsOfType< UIElement_GotChar >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fkeydown_20_3e_62',['RoutedEventArgsOfType< UIElement_KeyDown >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fkeyup_20_3e_63',['RoutedEventArgsOfType< UIElement_KeyUp >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fmousebuttondown_20_3e_64',['RoutedEventArgsOfType< UIElement_MouseButtonDown >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fmousebuttonup_20_3e_65',['RoutedEventArgsOfType< UIElement_MouseButtonUp >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fmousemove_20_3e_66',['RoutedEventArgsOfType< UIElement_MouseMove >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fmousewheel_20_3e_67',['RoutedEventArgsOfType< UIElement_MouseWheel >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fpositionchanged_20_3e_68',['RoutedEventArgsOfType< UIElement_PositionChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fshowcontextmenu_20_3e_69',['RoutedEventArgsOfType< UIElement_ShowContextMenu >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fsizechanged_20_3e_70',['RoutedEventArgsOfType< UIElement_SizeChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20window_5fclosing_20_3e_71',['RoutedEventArgsOfType< Window_Closing >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['row_72',['row',['../structsw_1_1_grid_layout_tag.html#a8411afa319d4ad7cf2d95edd5aa3434c',1,'sw::GridLayoutTag']]], ['rows_73',['rows',['../classsw_1_1_grid_layout.html#a5ac3f18d6079d89b414a9f0a342670ea',1,'sw::GridLayout::rows'],['../classsw_1_1_uniform_grid_layout.html#a2cde92e2a61f62efb85761f11c221390',1,'sw::UniformGridLayout::rows']]], - ['rowspan_74',['rowSpan',['../structsw_1_1_grid_layout_tag.html#a5caf39bc6aa93afd290f09ee15f2c722',1,'sw::GridLayoutTag']]] + ['rows_74',['Rows',['../classsw_1_1_uniform_grid.html#a65a180db32f61dee181c0ae7e36364a6',1,'sw::UniformGrid']]], + ['rowspan_75',['rowSpan',['../structsw_1_1_grid_layout_tag.html#a5caf39bc6aa93afd290f09ee15f2c722',1,'sw::GridLayoutTag']]] ]; diff --git a/docs/search/all_12.js b/docs/search/all_12.js index 52e4a741..4bfee2a3 100644 --- a/docs/search/all_12.js +++ b/docs/search/all_12.js @@ -62,13 +62,14 @@ var searchData= ['sizetocontent_59',['SizeToContent',['../classsw_1_1_window.html#abff0275ae90d22951d40b769f952d415',1,'sw::Window']]], ['slider_60',['Slider',['../classsw_1_1_slider.html',1,'sw::Slider'],['../classsw_1_1_slider.html#a44907de8805117d38ba3631545f39453',1,'sw::Slider::Slider()']]], ['split_61',['Split',['../classsw_1_1_utils.html#a8f0292de23814b539a4f5db889422a06',1,'sw::Utils']]], - ['stacklayout_62',['StackLayout',['../classsw_1_1_stack_layout.html',1,'sw']]], - ['stacklayouth_63',['StackLayoutH',['../classsw_1_1_stack_layout_h.html',1,'sw']]], - ['stacklayoutv_64',['StackLayoutV',['../classsw_1_1_stack_layout_v.html',1,'sw']]], - ['stackpanel_65',['StackPanel',['../classsw_1_1_stack_panel.html',1,'sw::StackPanel'],['../classsw_1_1_stack_panel.html#adaf90a1ad8018e5365e22f45a0a0341a',1,'sw::StackPanel::StackPanel()']]], - ['startuplocation_66',['StartupLocation',['../classsw_1_1_window.html#a4a09a7ec772a2febfcda54b9aa6a8557',1,'sw::Window']]], - ['state_67',['State',['../classsw_1_1_progress_bar.html#a596e05cda7fcc656dde20354a519cee4',1,'sw::ProgressBar::State'],['../classsw_1_1_window.html#a257ba940703f41b12990678bb3ff0e0e',1,'sw::Window::State']]], - ['staticcontrol_68',['StaticControl',['../classsw_1_1_static_control.html',1,'sw::StaticControl'],['../classsw_1_1_static_control.html#a88dea3db611c5cc94df004cdae9c74ef',1,'sw::StaticControl::StaticControl()']]], - ['strikeout_69',['strikeOut',['../classsw_1_1_font.html#a14ae471a9508e23aad832f3060bbcb85',1,'sw::Font']]], - ['subitems_70',['subItems',['../classsw_1_1_menu_item.html#ac8e01802bb6cc6f1336025819050f3c4',1,'sw::MenuItem']]] + ['splitter_62',['Splitter',['../classsw_1_1_splitter.html',1,'sw::Splitter'],['../classsw_1_1_splitter.html#acc4ee8d727fd36e75444d014cbf1a1ff',1,'sw::Splitter::Splitter()']]], + ['stacklayout_63',['StackLayout',['../classsw_1_1_stack_layout.html',1,'sw']]], + ['stacklayouth_64',['StackLayoutH',['../classsw_1_1_stack_layout_h.html',1,'sw']]], + ['stacklayoutv_65',['StackLayoutV',['../classsw_1_1_stack_layout_v.html',1,'sw']]], + ['stackpanel_66',['StackPanel',['../classsw_1_1_stack_panel.html',1,'sw::StackPanel'],['../classsw_1_1_stack_panel.html#adaf90a1ad8018e5365e22f45a0a0341a',1,'sw::StackPanel::StackPanel()']]], + ['startuplocation_67',['StartupLocation',['../classsw_1_1_window.html#a4a09a7ec772a2febfcda54b9aa6a8557',1,'sw::Window']]], + ['state_68',['State',['../classsw_1_1_progress_bar.html#a596e05cda7fcc656dde20354a519cee4',1,'sw::ProgressBar::State'],['../classsw_1_1_window.html#a257ba940703f41b12990678bb3ff0e0e',1,'sw::Window::State']]], + ['staticcontrol_69',['StaticControl',['../classsw_1_1_static_control.html',1,'sw::StaticControl'],['../classsw_1_1_static_control.html#a88dea3db611c5cc94df004cdae9c74ef',1,'sw::StaticControl::StaticControl()']]], + ['strikeout_70',['strikeOut',['../classsw_1_1_font.html#a14ae471a9508e23aad832f3060bbcb85',1,'sw::Font']]], + ['subitems_71',['subItems',['../classsw_1_1_menu_item.html#ac8e01802bb6cc6f1336025819050f3c4',1,'sw::MenuItem']]] ]; diff --git a/docs/search/all_13.js b/docs/search/all_13.js index b4eddda0..ade7f020 100644 --- a/docs/search/all_13.js +++ b/docs/search/all_13.js @@ -2,10 +2,10 @@ var searchData= [ ['tabcontrol_0',['TabControl',['../classsw_1_1_tab_control.html',1,'sw::TabControl'],['../classsw_1_1_tab_control.html#a402ae0be40a8a236d09b5c8a31c5aca1',1,'sw::TabControl::TabControl()']]], ['tabstop_1',['TabStop',['../classsw_1_1_u_i_element.html#a2b54e00e1e41af2a634ad694da3ffa98',1,'sw::UIElement']]], - ['tag_2',['tag',['../classsw_1_1_menu_item.html#a71e23c18ace7346f28415ed747d80905',1,'sw::MenuItem']]], - ['tag_3',['Tag',['../classsw_1_1_u_i_element.html#a895d79a2fa53382a43b3d02dee195360',1,'sw::UIElement']]], - ['text_4',['Text',['../classsw_1_1_wnd_base.html#a9afff86d32e9b54cccc204ef29a85891',1,'sw::WndBase']]], - ['text_5',['text',['../classsw_1_1_menu_item.html#a0f67fc28cb879876a328495035031979',1,'sw::MenuItem']]], + ['tag_2',['Tag',['../classsw_1_1_u_i_element.html#a895d79a2fa53382a43b3d02dee195360',1,'sw::UIElement']]], + ['tag_3',['tag',['../classsw_1_1_menu_item.html#a71e23c18ace7346f28415ed747d80905',1,'sw::MenuItem']]], + ['text_4',['text',['../classsw_1_1_menu_item.html#a0f67fc28cb879876a328495035031979',1,'sw::MenuItem']]], + ['text_5',['Text',['../classsw_1_1_wnd_base.html#a9afff86d32e9b54cccc204ef29a85891',1,'sw::WndBase']]], ['textbox_6',['TextBox',['../classsw_1_1_text_box.html',1,'sw::TextBox'],['../classsw_1_1_text_box.html#ae2cffffb2a78119a7094d78109060326',1,'sw::TextBox::TextBox()']]], ['textboxbase_7',['TextBoxBase',['../classsw_1_1_text_box_base.html',1,'sw::TextBoxBase'],['../classsw_1_1_text_box_base.html#a67d628d8d0d746292ef4350ad1a5a84a',1,'sw::TextBoxBase::TextBoxBase()']]], ['textcolor_8',['TextColor',['../classsw_1_1_u_i_element.html#aeaf2381fdffd82bd41e90c1a2cf69022',1,'sw::UIElement']]], diff --git a/docs/search/all_16.js b/docs/search/all_16.js index d4151a50..6c675c09 100644 --- a/docs/search/all_16.js +++ b/docs/search/all_16.js @@ -1,8 +1,8 @@ var searchData= [ ['weight_0',['weight',['../classsw_1_1_font.html#aa5126e73aad9ba2fd6aab826bac16a5c',1,'sw::Font']]], - ['width_1',['width',['../structsw_1_1_grid_column.html#aa07dbbfe79ce8c33ebd7bffa430bf6eb',1,'sw::GridColumn::width'],['../structsw_1_1_list_view_column.html#abd8ec9f51310be92ec1ff113314e5257',1,'sw::ListViewColumn::width'],['../structsw_1_1_rect.html#ada69154ab3d734587ef9695b10144b01',1,'sw::Rect::width'],['../structsw_1_1_size.html#a22c3b210b0c48e2812604381f729d5bd',1,'sw::Size::width']]], - ['width_2',['Width',['../classsw_1_1_screen.html#a2276c1ff4a907b74517a0e12b3999c92',1,'sw::Screen::Width'],['../classsw_1_1_wnd_base.html#a445edbe5db50a5a4486ddff98e8ffbae',1,'sw::WndBase::Width']]], + ['width_1',['Width',['../classsw_1_1_screen.html#a2276c1ff4a907b74517a0e12b3999c92',1,'sw::Screen::Width'],['../classsw_1_1_wnd_base.html#a445edbe5db50a5a4486ddff98e8ffbae',1,'sw::WndBase::Width']]], + ['width_2',['width',['../structsw_1_1_grid_column.html#aa07dbbfe79ce8c33ebd7bffa430bf6eb',1,'sw::GridColumn::width'],['../structsw_1_1_list_view_column.html#abd8ec9f51310be92ec1ff113314e5257',1,'sw::ListViewColumn::width'],['../structsw_1_1_rect.html#ada69154ab3d734587ef9695b10144b01',1,'sw::Rect::width'],['../structsw_1_1_size.html#a22c3b210b0c48e2812604381f729d5bd',1,'sw::Size::width']]], ['window_3',['Window',['../classsw_1_1_window.html',1,'sw::Window'],['../classsw_1_1_window.html#a24eed02d394d13b368f5cf99b2a68c44',1,'sw::Window::Window()']]], ['windowclosingeventargs_4',['WindowClosingEventArgs',['../structsw_1_1_window_closing_event_args.html',1,'sw']]], ['windowcount_5',['WindowCount',['../classsw_1_1_window.html#a317c7f1dea4dd3f29d5d7c865563c310',1,'sw::Window']]], @@ -19,27 +19,28 @@ var searchData= ['writeonlyproperty_3c_20double_20_3e_16',['WriteOnlyProperty< double >',['../classsw_1_1_write_only_property.html',1,'sw']]], ['writeonlyproperty_3c_20horizontalalignment_20_3e_17',['WriteOnlyProperty< HorizontalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], ['writeonlyproperty_3c_20int_20_3e_18',['WriteOnlyProperty< int >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20progressbarstate_20_3e_19',['WriteOnlyProperty< ProgressBarState >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20std_3a_3awstring_20_3e_20',['WriteOnlyProperty< std::wstring >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3aborderstyle_20_3e_21',['WriteOnlyProperty< sw::BorderStyle >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3acheckstate_20_3e_22',['WriteOnlyProperty< sw::CheckState >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3acolor_20_3e_23',['WriteOnlyProperty< sw::Color >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3acontextmenu_20_2a_20_3e_24',['WriteOnlyProperty< sw::ContextMenu * >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3afont_20_3e_25',['WriteOnlyProperty< sw::Font >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3afontweight_20_3e_26',['WriteOnlyProperty< sw::FontWeight >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3ahorizontalalignment_20_3e_27',['WriteOnlyProperty< sw::HorizontalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3alayouthost_20_2a_20_3e_28',['WriteOnlyProperty< sw::LayoutHost * >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3amenu_20_2a_20_3e_29',['WriteOnlyProperty< sw::Menu * >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3aorientation_20_3e_30',['WriteOnlyProperty< sw::Orientation >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3arect_20_3e_31',['WriteOnlyProperty< sw::Rect >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3atexttrimming_20_3e_32',['WriteOnlyProperty< sw::TextTrimming >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3athickness_20_3e_33',['WriteOnlyProperty< sw::Thickness >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3averticalalignment_20_3e_34',['WriteOnlyProperty< sw::VerticalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20tabalignment_20_3e_35',['WriteOnlyProperty< TabAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20uint16_5ft_20_3e_36',['WriteOnlyProperty< uint16_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20uint64_5ft_20_3e_37',['WriteOnlyProperty< uint64_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20verticalalignment_20_3e_38',['WriteOnlyProperty< VerticalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20wchar_5ft_20_3e_39',['WriteOnlyProperty< wchar_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20windowstartuplocation_20_3e_40',['WriteOnlyProperty< WindowStartupLocation >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20windowstate_20_3e_41',['WriteOnlyProperty< WindowState >',['../classsw_1_1_write_only_property.html',1,'sw']]] + ['writeonlyproperty_3c_20orientation_20_3e_19',['WriteOnlyProperty< Orientation >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20progressbarstate_20_3e_20',['WriteOnlyProperty< ProgressBarState >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20std_3a_3awstring_20_3e_21',['WriteOnlyProperty< std::wstring >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3aborderstyle_20_3e_22',['WriteOnlyProperty< sw::BorderStyle >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3acheckstate_20_3e_23',['WriteOnlyProperty< sw::CheckState >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3acolor_20_3e_24',['WriteOnlyProperty< sw::Color >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3acontextmenu_20_2a_20_3e_25',['WriteOnlyProperty< sw::ContextMenu * >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3afont_20_3e_26',['WriteOnlyProperty< sw::Font >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3afontweight_20_3e_27',['WriteOnlyProperty< sw::FontWeight >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3ahorizontalalignment_20_3e_28',['WriteOnlyProperty< sw::HorizontalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3alayouthost_20_2a_20_3e_29',['WriteOnlyProperty< sw::LayoutHost * >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3amenu_20_2a_20_3e_30',['WriteOnlyProperty< sw::Menu * >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3aorientation_20_3e_31',['WriteOnlyProperty< sw::Orientation >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3arect_20_3e_32',['WriteOnlyProperty< sw::Rect >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3atexttrimming_20_3e_33',['WriteOnlyProperty< sw::TextTrimming >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3athickness_20_3e_34',['WriteOnlyProperty< sw::Thickness >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3averticalalignment_20_3e_35',['WriteOnlyProperty< sw::VerticalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20tabalignment_20_3e_36',['WriteOnlyProperty< TabAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20uint16_5ft_20_3e_37',['WriteOnlyProperty< uint16_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20uint64_5ft_20_3e_38',['WriteOnlyProperty< uint64_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20verticalalignment_20_3e_39',['WriteOnlyProperty< VerticalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20wchar_5ft_20_3e_40',['WriteOnlyProperty< wchar_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20windowstartuplocation_20_3e_41',['WriteOnlyProperty< WindowStartupLocation >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20windowstate_20_3e_42',['WriteOnlyProperty< WindowState >',['../classsw_1_1_write_only_property.html',1,'sw']]] ]; diff --git a/docs/search/all_2.js b/docs/search/all_2.js index b2183860..c6173f7f 100644 --- a/docs/search/all_2.js +++ b/docs/search/all_2.js @@ -6,6 +6,7 @@ var searchData= ['borderstyle_3',['BorderStyle',['../classsw_1_1_panel.html#aa7b04b11114891c5df7b84932fd3370f',1,'sw::Panel']]], ['bottom_4',['bottom',['../structsw_1_1_thickness.html#acea3dd0c6fdcc155ac47ec7c3eab97fa',1,'sw::Thickness']]], ['buildstr_5',['BuildStr',['../classsw_1_1_utils.html#abb9a32e7b7d1fb83832c9a39a84c3452',1,'sw::Utils']]], - ['button_6',['Button',['../classsw_1_1_button.html',1,'sw::Button'],['../classsw_1_1_button.html#aafd2e523e98d68c45e451d93f22ead13',1,'sw::Button::Button()']]], - ['buttonbase_7',['ButtonBase',['../classsw_1_1_button_base.html',1,'sw::ButtonBase'],['../classsw_1_1_button_base.html#ae5dad2a65523da878df700fa4aefe3ee',1,'sw::ButtonBase::ButtonBase()']]] + ['buildwindowcore_6',['BuildWindowCore',['../classsw_1_1_hwnd_host.html#a9ac22adfa9d96348e7f89932d82cf3d3',1,'sw::HwndHost']]], + ['button_7',['Button',['../classsw_1_1_button.html',1,'sw::Button'],['../classsw_1_1_button.html#aafd2e523e98d68c45e451d93f22ead13',1,'sw::Button::Button()']]], + ['buttonbase_8',['ButtonBase',['../classsw_1_1_button_base.html',1,'sw::ButtonBase'],['../classsw_1_1_button_base.html#ae5dad2a65523da878df700fa4aefe3ee',1,'sw::ButtonBase::ButtonBase()']]] ]; diff --git a/docs/search/all_4.js b/docs/search/all_4.js index 1e08ec03..52540893 100644 --- a/docs/search/all_4.js +++ b/docs/search/all_4.js @@ -1,13 +1,14 @@ var searchData= [ ['defaultwndproc_0',['DefaultWndProc',['../classsw_1_1_wnd_base.html#a585967d861673ea0477f25c1a5c0fb30',1,'sw::WndBase']]], - ['dictionary_1',['Dictionary',['../classsw_1_1_dictionary.html',1,'sw::Dictionary< TKey, TVal >'],['../classsw_1_1_dictionary.html#a77cbfe628092b74f1a698e7b5fe56c69',1,'sw::Dictionary::Dictionary()'],['../classsw_1_1_dictionary.html#a178b607824a4eff707914f2eb3aaaa22',1,'sw::Dictionary::Dictionary(std::initializer_list< std::pair< const TKey, TVal > > list)']]], - ['dip_2',['Dip',['../classsw_1_1_dip.html',1,'sw']]], - ['diptopxx_3',['DipToPxX',['../classsw_1_1_dip.html#a66e3c3a119b77b632ec5f1f37051ee6d',1,'sw::Dip']]], - ['diptopxy_4',['DipToPxY',['../classsw_1_1_dip.html#ae8986a97dc498280957b4c9e5fa53124',1,'sw::Dip']]], - ['disablelayout_5',['DisableLayout',['../classsw_1_1_layer.html#a4c9e94621cab7abd5ca2e10f5691c3c1',1,'sw::Layer']]], - ['docklayout_6',['DockLayout',['../classsw_1_1_dock_layout.html',1,'sw']]], - ['docklayouttag_7',['DockLayoutTag',['../classsw_1_1_dock_layout.html#a35500d2b1512e62f31792ed90aafde5d',1,'sw::DockLayout']]], - ['dockpanel_8',['DockPanel',['../classsw_1_1_dock_panel.html',1,'sw::DockPanel'],['../classsw_1_1_dock_panel.html#a8c9ce34641a342dc14c8bae2d49e3c08',1,'sw::DockPanel::DockPanel()']]], - ['drawmenubar_9',['DrawMenuBar',['../classsw_1_1_window.html#a3daeab5c99e045449a8a5f086c19877e',1,'sw::Window']]] + ['destroywindowcore_1',['DestroyWindowCore',['../classsw_1_1_hwnd_host.html#af644778e078302b01faf0ac2f5c7b75c',1,'sw::HwndHost']]], + ['dictionary_2',['Dictionary',['../classsw_1_1_dictionary.html',1,'sw::Dictionary< TKey, TVal >'],['../classsw_1_1_dictionary.html#a77cbfe628092b74f1a698e7b5fe56c69',1,'sw::Dictionary::Dictionary()'],['../classsw_1_1_dictionary.html#a178b607824a4eff707914f2eb3aaaa22',1,'sw::Dictionary::Dictionary(std::initializer_list< std::pair< const TKey, TVal > > list)']]], + ['dip_3',['Dip',['../classsw_1_1_dip.html',1,'sw']]], + ['diptopxx_4',['DipToPxX',['../classsw_1_1_dip.html#a66e3c3a119b77b632ec5f1f37051ee6d',1,'sw::Dip']]], + ['diptopxy_5',['DipToPxY',['../classsw_1_1_dip.html#ae8986a97dc498280957b4c9e5fa53124',1,'sw::Dip']]], + ['disablelayout_6',['DisableLayout',['../classsw_1_1_layer.html#a4c9e94621cab7abd5ca2e10f5691c3c1',1,'sw::Layer']]], + ['docklayout_7',['DockLayout',['../classsw_1_1_dock_layout.html',1,'sw']]], + ['docklayouttag_8',['DockLayoutTag',['../classsw_1_1_dock_layout.html#a35500d2b1512e62f31792ed90aafde5d',1,'sw::DockLayout']]], + ['dockpanel_9',['DockPanel',['../classsw_1_1_dock_panel.html',1,'sw::DockPanel'],['../classsw_1_1_dock_panel.html#a8c9ce34641a342dc14c8bae2d49e3c08',1,'sw::DockPanel::DockPanel()']]], + ['drawmenubar_10',['DrawMenuBar',['../classsw_1_1_window.html#a3daeab5c99e045449a8a5f086c19877e',1,'sw::Window']]] ]; diff --git a/docs/search/all_5.js b/docs/search/all_5.js index b8f67bcf..93f909b8 100644 --- a/docs/search/all_5.js +++ b/docs/search/all_5.js @@ -4,8 +4,8 @@ var searchData= ['enablelayout_1',['EnableLayout',['../classsw_1_1_layer.html#a5965bfa865e07371ad9e2e773f720653',1,'sw::Layer']]], ['end_2',['end',['../classsw_1_1_dictionary.html#a98945b3a8a7c6b3e1110a406718a49c8',1,'sw::Dictionary::end()'],['../classsw_1_1_list.html#a9630ceee45943beca3b53931b7864095',1,'sw::List::end()']]], ['escapement_3',['escapement',['../classsw_1_1_font.html#a6c870ded0829330446de69e8c0994a1e',1,'sw::Font']]], - ['eventtype_4',['EventType',['../structsw_1_1_routed_event_args_of_type.html#a3fc47b03d3857d9ec7e9bb3c40a61b79',1,'sw::RoutedEventArgsOfType']]], - ['eventtype_5',['eventType',['../structsw_1_1_routed_event_args.html#a46df8118b89dcc6c494cdbded901b082',1,'sw::RoutedEventArgs']]], + ['eventtype_4',['eventType',['../structsw_1_1_routed_event_args.html#a46df8118b89dcc6c494cdbded901b082',1,'sw::RoutedEventArgs']]], + ['eventtype_5',['EventType',['../structsw_1_1_routed_event_args_of_type.html#a3fc47b03d3857d9ec7e9bb3c40a61b79',1,'sw::RoutedEventArgsOfType']]], ['exedirectory_6',['ExeDirectory',['../classsw_1_1_app.html#ab1b7352d6527e1ecad51de96e0b8d759',1,'sw::App']]], ['exepath_7',['ExePath',['../classsw_1_1_app.html#a61a6ac6c879624eb1dff7244e58c7200',1,'sw::App']]] ]; diff --git a/docs/search/all_8.js b/docs/search/all_8.js index 3192642d..dc10df92 100644 --- a/docs/search/all_8.js +++ b/docs/search/all_8.js @@ -6,12 +6,13 @@ var searchData= ['handledmsg_3',['handledMsg',['../structsw_1_1_routed_event_args.html#ac299c564c53fa039f47a06d08272d969',1,'sw::RoutedEventArgs']]], ['handleinitialized_4',['HandleInitialized',['../classsw_1_1_wnd_base.html#a4b368860fef40406c091880fc72f9cbb',1,'sw::WndBase']]], ['header_5',['header',['../structsw_1_1_list_view_column.html#a2fd382151fa269ec5f5042232cfb84f8',1,'sw::ListViewColumn']]], - ['height_6',['height',['../structsw_1_1_grid_row.html#abe71efc459295a5dbfad7bf7aaff4d4e',1,'sw::GridRow::height'],['../structsw_1_1_rect.html#afb7a0a9a12dad7756f46b2e1abdafa7c',1,'sw::Rect::height'],['../structsw_1_1_size.html#a084604eba918ac19b2f8402e330d767b',1,'sw::Size::height']]], - ['height_7',['Height',['../classsw_1_1_screen.html#a904c5ac3f5dc61d271357f22f734b921',1,'sw::Screen::Height'],['../classsw_1_1_wnd_base.html#a51fdc4b943e62bd67ffbff4a6e65de2a',1,'sw::WndBase::Height']]], + ['height_6',['Height',['../classsw_1_1_screen.html#a904c5ac3f5dc61d271357f22f734b921',1,'sw::Screen::Height'],['../classsw_1_1_wnd_base.html#a51fdc4b943e62bd67ffbff4a6e65de2a',1,'sw::WndBase::Height']]], + ['height_7',['height',['../structsw_1_1_grid_row.html#abe71efc459295a5dbfad7bf7aaff4d4e',1,'sw::GridRow::height'],['../structsw_1_1_rect.html#afb7a0a9a12dad7756f46b2e1abdafa7c',1,'sw::Rect::height'],['../structsw_1_1_size.html#a084604eba918ac19b2f8402e330d767b',1,'sw::Size::height']]], ['horizontalalignment_8',['HorizontalAlignment',['../classsw_1_1_u_i_element.html#a05b569383791dce14d9d6789e3a43d85',1,'sw::UIElement']]], ['horizontalcontentalignment_9',['HorizontalContentAlignment',['../classsw_1_1_label.html#a83b3ae20c61b09a613cc07dddc1c9179',1,'sw::Label::HorizontalContentAlignment'],['../classsw_1_1_text_box_base.html#abaa4c52632b7a8d2bdb41341fc1ab0e8',1,'sw::TextBoxBase::HorizontalContentAlignment']]], ['horizontalscrollbar_10',['HorizontalScrollBar',['../classsw_1_1_layer.html#a4bb56843061a3db9497703f16e58f4ba',1,'sw::Layer::HorizontalScrollBar'],['../classsw_1_1_text_box.html#a4fed0b73690d263fb740f09eda870fdb',1,'sw::TextBox::HorizontalScrollBar']]], ['horizontalscrolllimit_11',['HorizontalScrollLimit',['../classsw_1_1_layer.html#a5af8ff318d2438eab8f8b325cf8e66da',1,'sw::Layer']]], ['horizontalscrollpos_12',['HorizontalScrollPos',['../classsw_1_1_layer.html#ae738d7ede2ba0d5547553df25f8d8ed8',1,'sw::Layer']]], - ['hwnd_13',['hwnd',['../structsw_1_1_proc_msg.html#a944e366c9c75b08eebbb32fc3959f334',1,'sw::ProcMsg']]] + ['hwnd_13',['hwnd',['../structsw_1_1_proc_msg.html#a944e366c9c75b08eebbb32fc3959f334',1,'sw::ProcMsg']]], + ['hwndhost_14',['HwndHost',['../classsw_1_1_hwnd_host.html',1,'sw']]] ]; diff --git a/docs/search/all_9.js b/docs/search/all_9.js index 77eced84..e13b80f4 100644 --- a/docs/search/all_9.js +++ b/docs/search/all_9.js @@ -8,28 +8,29 @@ var searchData= ['inherittextcolor_5',['InheritTextColor',['../classsw_1_1_u_i_element.html#a7da2f416b1ed5038d8a3a59d6e44fcf5',1,'sw::UIElement']]], ['initbuttonbase_6',['InitButtonBase',['../classsw_1_1_button_base.html#a35200f7e5429767c50c089eb312ff248',1,'sw::ButtonBase']]], ['initcontrol_7',['InitControl',['../classsw_1_1_wnd_base.html#a60707bc74fd7d0599da1ea014cc37b5d',1,'sw::WndBase']]], - ['initmenubase_8',['InitMenuBase',['../classsw_1_1_menu_base.html#aa105bc5eb9ecf6a59f1ccff4b075643c',1,'sw::MenuBase']]], - ['inittextboxbase_9',['InitTextBoxBase',['../classsw_1_1_text_box_base.html#a3a6843f34013ed31f3828263f0984233',1,'sw::TextBoxBase']]], - ['initwindow_10',['InitWindow',['../classsw_1_1_wnd_base.html#a4889c45dfad820c103dd7f74f2cd0661',1,'sw::WndBase']]], - ['insert_11',['Insert',['../classsw_1_1_list.html#a68c7aaae99a0e18274de59cad82c5743',1,'sw::List']]], - ['insertcolumn_12',['InsertColumn',['../classsw_1_1_list_view.html#a985c48bef310cdcb10b722c9aec8ebbf',1,'sw::ListView::InsertColumn(int index, const ListViewColumn &column)'],['../classsw_1_1_list_view.html#a0abf70d4eee217e060b84686f30b8a09',1,'sw::ListView::InsertColumn(int index, const std::wstring &header)']]], - ['insertitem_13',['InsertItem',['../classsw_1_1_combo_box.html#ab1cf2dc76d67d10a2088acfeb29d1398',1,'sw::ComboBox::InsertItem()'],['../classsw_1_1_items_control.html#ab4f053e3c099caf009fab48f7370ad96',1,'sw::ItemsControl::InsertItem()'],['../classsw_1_1_list_box.html#abaa05ef08a38822976373307156029b2',1,'sw::ListBox::InsertItem()'],['../classsw_1_1_list_view.html#a34425690bf39e914861b2211004c2ce1',1,'sw::ListView::InsertItem()']]], - ['instance_14',['Instance',['../classsw_1_1_app.html#a5a6949cf6702559276151c987a2f5c5c',1,'sw::App']]], - ['ischecked_15',['IsChecked',['../classsw_1_1_checkable_button.html#a52e1547dc73eb7b8f6cd4ecb523e7f56',1,'sw::CheckableButton']]], - ['iscontextmenuid_16',['IsContextMenuID',['../classsw_1_1_context_menu.html#a968f4539826715feb35237acb1ec02b3',1,'sw::ContextMenu']]], - ['iscontrol_17',['IsControl',['../classsw_1_1_wnd_base.html#ace8f6b05caa5d335f7d574c38035bfa7',1,'sw::WndBase']]], - ['isdestroyed_18',['IsDestroyed',['../classsw_1_1_wnd_base.html#a54aa973b24b4bc4b681ac2c21a50d204',1,'sw::WndBase']]], - ['iseditable_19',['IsEditable',['../classsw_1_1_combo_box.html#aa495a8136f05548a3e26bdf3e0612a8f',1,'sw::ComboBox']]], - ['isempty_20',['IsEmpty',['../classsw_1_1_dictionary.html#a16703bd325716445121e257ae489dcc4',1,'sw::Dictionary::IsEmpty()'],['../classsw_1_1_list.html#aed38231dffce414f40d272aba6e7099c',1,'sw::List::IsEmpty()']]], - ['ismodal_21',['IsModal',['../classsw_1_1_window.html#a1cdd78ebe0571b1c9bb49403ed8d8381',1,'sw::Window']]], - ['isrootelement_22',['IsRootElement',['../classsw_1_1_u_i_element.html#a67bd7d81e6091118e4c97cc24c68543d',1,'sw::UIElement']]], - ['isroutedeventregistered_23',['IsRoutedEventRegistered',['../classsw_1_1_u_i_element.html#adf8152f31c5e109ba016316182bcec47',1,'sw::UIElement']]], - ['isseparator_24',['IsSeparator',['../classsw_1_1_menu_item.html#a136e71998ffff40e3d165749ba7f7306',1,'sw::MenuItem']]], - ['isvisible_25',['IsVisible',['../classsw_1_1_wnd_base.html#a6ee668e7a5261f96df0bd69a1fb868d3',1,'sw::WndBase']]], - ['itag_26',['ITag',['../classsw_1_1_i_tag.html',1,'sw']]], - ['italic_27',['italic',['../classsw_1_1_font.html#aa7ea90de17d56a063c395cf015baf11f',1,'sw::Font']]], - ['items_28',['items',['../classsw_1_1_menu_base.html#a661efe79f75f4e6ae0d5b166b7db4147',1,'sw::MenuBase']]], - ['itemscontrol_29',['ItemsControl',['../classsw_1_1_items_control.html',1,'sw']]], - ['itemscontrol_3c_20strlist_20_3e_30',['ItemsControl< StrList >',['../classsw_1_1_items_control.html',1,'sw']]], - ['itemscount_31',['ItemsCount',['../classsw_1_1_items_control.html#a765b2e51cb5f439c464abbe031b0db09',1,'sw::ItemsControl']]] + ['inithwndhost_8',['InitHwndHost',['../classsw_1_1_hwnd_host.html#aebdcab5949f812ae64ecd79633cacc49',1,'sw::HwndHost']]], + ['initmenubase_9',['InitMenuBase',['../classsw_1_1_menu_base.html#aa105bc5eb9ecf6a59f1ccff4b075643c',1,'sw::MenuBase']]], + ['inittextboxbase_10',['InitTextBoxBase',['../classsw_1_1_text_box_base.html#a3a6843f34013ed31f3828263f0984233',1,'sw::TextBoxBase']]], + ['initwindow_11',['InitWindow',['../classsw_1_1_wnd_base.html#a4889c45dfad820c103dd7f74f2cd0661',1,'sw::WndBase']]], + ['insert_12',['Insert',['../classsw_1_1_list.html#a68c7aaae99a0e18274de59cad82c5743',1,'sw::List']]], + ['insertcolumn_13',['InsertColumn',['../classsw_1_1_list_view.html#a985c48bef310cdcb10b722c9aec8ebbf',1,'sw::ListView::InsertColumn(int index, const ListViewColumn &column)'],['../classsw_1_1_list_view.html#a0abf70d4eee217e060b84686f30b8a09',1,'sw::ListView::InsertColumn(int index, const std::wstring &header)']]], + ['insertitem_14',['InsertItem',['../classsw_1_1_combo_box.html#ab1cf2dc76d67d10a2088acfeb29d1398',1,'sw::ComboBox::InsertItem()'],['../classsw_1_1_items_control.html#ab4f053e3c099caf009fab48f7370ad96',1,'sw::ItemsControl::InsertItem()'],['../classsw_1_1_list_box.html#abaa05ef08a38822976373307156029b2',1,'sw::ListBox::InsertItem()'],['../classsw_1_1_list_view.html#a34425690bf39e914861b2211004c2ce1',1,'sw::ListView::InsertItem()']]], + ['instance_15',['Instance',['../classsw_1_1_app.html#a5a6949cf6702559276151c987a2f5c5c',1,'sw::App']]], + ['ischecked_16',['IsChecked',['../classsw_1_1_checkable_button.html#a52e1547dc73eb7b8f6cd4ecb523e7f56',1,'sw::CheckableButton']]], + ['iscontextmenuid_17',['IsContextMenuID',['../classsw_1_1_context_menu.html#a968f4539826715feb35237acb1ec02b3',1,'sw::ContextMenu']]], + ['iscontrol_18',['IsControl',['../classsw_1_1_wnd_base.html#ace8f6b05caa5d335f7d574c38035bfa7',1,'sw::WndBase']]], + ['isdestroyed_19',['IsDestroyed',['../classsw_1_1_wnd_base.html#a54aa973b24b4bc4b681ac2c21a50d204',1,'sw::WndBase']]], + ['iseditable_20',['IsEditable',['../classsw_1_1_combo_box.html#aa495a8136f05548a3e26bdf3e0612a8f',1,'sw::ComboBox']]], + ['isempty_21',['IsEmpty',['../classsw_1_1_dictionary.html#a16703bd325716445121e257ae489dcc4',1,'sw::Dictionary::IsEmpty()'],['../classsw_1_1_list.html#aed38231dffce414f40d272aba6e7099c',1,'sw::List::IsEmpty()']]], + ['ismodal_22',['IsModal',['../classsw_1_1_window.html#a1cdd78ebe0571b1c9bb49403ed8d8381',1,'sw::Window']]], + ['isrootelement_23',['IsRootElement',['../classsw_1_1_u_i_element.html#a67bd7d81e6091118e4c97cc24c68543d',1,'sw::UIElement']]], + ['isroutedeventregistered_24',['IsRoutedEventRegistered',['../classsw_1_1_u_i_element.html#adf8152f31c5e109ba016316182bcec47',1,'sw::UIElement']]], + ['isseparator_25',['IsSeparator',['../classsw_1_1_menu_item.html#a136e71998ffff40e3d165749ba7f7306',1,'sw::MenuItem']]], + ['isvisible_26',['IsVisible',['../classsw_1_1_wnd_base.html#a6ee668e7a5261f96df0bd69a1fb868d3',1,'sw::WndBase']]], + ['itag_27',['ITag',['../classsw_1_1_i_tag.html',1,'sw']]], + ['italic_28',['italic',['../classsw_1_1_font.html#aa7ea90de17d56a063c395cf015baf11f',1,'sw::Font']]], + ['items_29',['items',['../classsw_1_1_menu_base.html#a661efe79f75f4e6ae0d5b166b7db4147',1,'sw::MenuBase']]], + ['itemscontrol_30',['ItemsControl',['../classsw_1_1_items_control.html',1,'sw']]], + ['itemscontrol_3c_20strlist_20_3e_31',['ItemsControl< StrList >',['../classsw_1_1_items_control.html',1,'sw']]], + ['itemscount_32',['ItemsCount',['../classsw_1_1_items_control.html#a765b2e51cb5f439c464abbe031b0db09',1,'sw::ItemsControl']]] ]; diff --git a/docs/search/all_b.js b/docs/search/all_b.js index fc3198ef..e5e8e1b7 100644 --- a/docs/search/all_b.js +++ b/docs/search/all_b.js @@ -1,8 +1,8 @@ var searchData= [ ['label_0',['Label',['../classsw_1_1_label.html',1,'sw::Label'],['../classsw_1_1_label.html#ae1ee6644b4de352317836eb2a4c00c3c',1,'sw::Label::Label()']]], - ['lastchildfill_1',['lastChildFill',['../classsw_1_1_dock_layout.html#ae3279e6cc696c453a2f6171ca152fc47',1,'sw::DockLayout']]], - ['lastchildfill_2',['LastChildFill',['../classsw_1_1_dock_panel.html#aa3f8617a879fb8c536799beae2ad2a31',1,'sw::DockPanel']]], + ['lastchildfill_1',['LastChildFill',['../classsw_1_1_dock_panel.html#aa3f8617a879fb8c536799beae2ad2a31',1,'sw::DockPanel']]], + ['lastchildfill_2',['lastChildFill',['../classsw_1_1_dock_layout.html#ae3279e6cc696c453a2f6171ca152fc47',1,'sw::DockLayout']]], ['layer_3',['Layer',['../classsw_1_1_layer.html',1,'sw::Layer'],['../classsw_1_1_layer.html#a61030d006cafc26525bc07bced899b92',1,'sw::Layer::Layer()']]], ['layout_4',['Layout',['../classsw_1_1_layer.html#accb80d7a016d5a56b1c744db4ef96059',1,'sw::Layer']]], ['layouthost_5',['LayoutHost',['../classsw_1_1_layout_host.html',1,'sw']]], diff --git a/docs/search/all_e.js b/docs/search/all_e.js index 27166ad1..6206529e 100644 --- a/docs/search/all_e.js +++ b/docs/search/all_e.js @@ -14,7 +14,7 @@ var searchData= ['oncreate_11',['OnCreate',['../classsw_1_1_wnd_base.html#a7dd30ab5e8700832140c329739b4b671',1,'sw::WndBase']]], ['onctlcolor_12',['OnCtlColor',['../classsw_1_1_wnd_base.html#aa04cd83e79c42d21127799e573d9f299',1,'sw::WndBase']]], ['ondeadchar_13',['OnDeadChar',['../classsw_1_1_wnd_base.html#a4c72db003eeb8a29565576ad26cc89b8',1,'sw::WndBase']]], - ['ondestroy_14',['OnDestroy',['../classsw_1_1_window.html#a09165434040ada6ea3f00a7d79b1f7a2',1,'sw::Window::OnDestroy()'],['../classsw_1_1_wnd_base.html#a98d960679d1889998ba548af6a3c8fc4',1,'sw::WndBase::OnDestroy()']]], + ['ondestroy_14',['OnDestroy',['../classsw_1_1_hwnd_host.html#a9535b63e17fbb079ce4f618c288cb9bd',1,'sw::HwndHost::OnDestroy()'],['../classsw_1_1_window.html#a09165434040ada6ea3f00a7d79b1f7a2',1,'sw::Window::OnDestroy()'],['../classsw_1_1_wnd_base.html#a98d960679d1889998ba548af6a3c8fc4',1,'sw::WndBase::OnDestroy()']]], ['ondoubleclicked_15',['OnDoubleClicked',['../classsw_1_1_button_base.html#aa0fb82e77ba464863fc609c987d5ff5d',1,'sw::ButtonBase']]], ['ondpichanged_16',['OnDpiChanged',['../classsw_1_1_window.html#a850c77ff7a3271e6d2bc77258c2ed11d',1,'sw::Window']]], ['ondrawfocusrect_17',['OnDrawFocusRect',['../classsw_1_1_button.html#a496b008fab7266676831e3473353537d',1,'sw::Button::OnDrawFocusRect()'],['../classsw_1_1_text_box_base.html#a89b507ceef32d379c93a60b5989b74fe',1,'sw::TextBoxBase::OnDrawFocusRect()'],['../classsw_1_1_u_i_element.html#a78d190af4c3b1768776db0ebd6d0d71a',1,'sw::UIElement::OnDrawFocusRect()']]], @@ -51,14 +51,14 @@ var searchData= ['onnchittest_48',['OnNcHitTest',['../classsw_1_1_wnd_base.html#a1445af2018a8e840a25a7487da22c51b',1,'sw::WndBase']]], ['onnotified_49',['OnNotified',['../classsw_1_1_list_view.html#aaad9cba6a7d80f3862720d2771cb28dc',1,'sw::ListView::OnNotified()'],['../classsw_1_1_tab_control.html#ac0342af02418896ed6e98f6d11125348',1,'sw::TabControl::OnNotified()'],['../classsw_1_1_wnd_base.html#a4aad533e3d37a7de43645d703dda1a84',1,'sw::WndBase::OnNotified()']]], ['onnotify_50',['OnNotify',['../classsw_1_1_list_view.html#a3d46f549079a2f75656de1e5903671cf',1,'sw::ListView::OnNotify()'],['../classsw_1_1_wnd_base.html#a191f7c32914b029dca7c93e03b4841e0',1,'sw::WndBase::OnNotify()']]], - ['onpaint_51',['OnPaint',['../classsw_1_1_panel.html#ab57a6afea25cdefeea622ff364727a8e',1,'sw::Panel::OnPaint()'],['../classsw_1_1_window.html#afa57e21216664a6fa3f9fdf04dad7a7d',1,'sw::Window::OnPaint()'],['../classsw_1_1_wnd_base.html#a029ba4be0e492f8383f2b5fe22125acb',1,'sw::WndBase::OnPaint()']]], + ['onpaint_51',['OnPaint',['../classsw_1_1_panel.html#ab57a6afea25cdefeea622ff364727a8e',1,'sw::Panel::OnPaint()'],['../classsw_1_1_splitter.html#a363276ad838de7235b53f76d767a408d',1,'sw::Splitter::OnPaint()'],['../classsw_1_1_window.html#afa57e21216664a6fa3f9fdf04dad7a7d',1,'sw::Window::OnPaint()'],['../classsw_1_1_wnd_base.html#a029ba4be0e492f8383f2b5fe22125acb',1,'sw::WndBase::OnPaint()']]], ['onremovedchild_52',['OnRemovedChild',['../classsw_1_1_tab_control.html#a1642e450b1cf606338eb85bd9f93c82c',1,'sw::TabControl::OnRemovedChild()'],['../classsw_1_1_u_i_element.html#aadedba1a9bca85555b70bc247b8ef835',1,'sw::UIElement::OnRemovedChild()']]], ['onscroll_53',['OnScroll',['../classsw_1_1_layer.html#af21620044342125a8e59671a6fb222e8',1,'sw::Layer']]], ['onselectedindexchanged_54',['OnSelectedIndexChanged',['../classsw_1_1_tab_control.html#a654688668bdf8331e27cbe4564d6cf63',1,'sw::TabControl']]], ['onselectionchanged_55',['OnSelectionChanged',['../classsw_1_1_combo_box.html#aae57315267ac472d28f9a55ac28cc902',1,'sw::ComboBox::OnSelectionChanged()'],['../classsw_1_1_items_control.html#aaf5eb0f69c26b57da81fe8a22f962ec6',1,'sw::ItemsControl::OnSelectionChanged()']]], ['onsetcursor_56',['OnSetCursor',['../classsw_1_1_u_i_element.html#a6175e146290ecff80407d4c8afa1cf05',1,'sw::UIElement::OnSetCursor()'],['../classsw_1_1_wnd_base.html#ab37c3f3ea7654eb6a0b15405196c4549',1,'sw::WndBase::OnSetCursor()']]], ['onsetfocus_57',['OnSetFocus',['../classsw_1_1_button.html#a7ef48914988a2c38835ff09dee5c5040',1,'sw::Button::OnSetFocus()'],['../classsw_1_1_u_i_element.html#a95c6eb88c9f93bb135da9ee303ada3be',1,'sw::UIElement::OnSetFocus()'],['../classsw_1_1_wnd_base.html#a4b15e8f2bcac32da4d5e540445ae201a',1,'sw::WndBase::OnSetFocus()']]], - ['onsize_58',['OnSize',['../classsw_1_1_panel.html#a655497d6bdbf760e34df1d799d89b009',1,'sw::Panel::OnSize()'],['../classsw_1_1_u_i_element.html#af4f4d3a0d23a886c0257c439821f5809',1,'sw::UIElement::OnSize()'],['../classsw_1_1_wnd_base.html#aaba3c3ea0a8d12be237ef28e44018677',1,'sw::WndBase::OnSize(Size newClientSize)']]], + ['onsize_58',['OnSize',['../classsw_1_1_hwnd_host.html#a811a6d21dd8534addfc401bb79f829f7',1,'sw::HwndHost::OnSize()'],['../classsw_1_1_panel.html#a655497d6bdbf760e34df1d799d89b009',1,'sw::Panel::OnSize()'],['../classsw_1_1_splitter.html#a961677b3a6e12fc522bdb4e7b22690c2',1,'sw::Splitter::OnSize()'],['../classsw_1_1_u_i_element.html#af4f4d3a0d23a886c0257c439821f5809',1,'sw::UIElement::OnSize()'],['../classsw_1_1_wnd_base.html#aaba3c3ea0a8d12be237ef28e44018677',1,'sw::WndBase::OnSize(Size newClientSize)']]], ['onsyschar_59',['OnSysChar',['../classsw_1_1_wnd_base.html#a515de5eb7bc6dbc8314c447a99154c6c',1,'sw::WndBase']]], ['onsysdeadchar_60',['OnSysDeadChar',['../classsw_1_1_wnd_base.html#acf4e6c0bbc8fddc9e790864e403c5c91',1,'sw::WndBase']]], ['onsyskeydown_61',['OnSysKeyDown',['../classsw_1_1_wnd_base.html#ad63e584926b894913ee1ef4c039a2f98',1,'sw::WndBase']]], @@ -75,7 +75,7 @@ var searchData= ['operator_3d_72',['operator=',['../classsw_1_1_menu_base.html#a6fcf63228e79f855d4fa11c083028fb5',1,'sw::MenuBase::operator=()'],['../classsw_1_1_write_only_property.html#a63a9ab87270f1ce81833bb36349e258a',1,'sw::WriteOnlyProperty::operator=()'],['../classsw_1_1_property.html#a15318a6d29413d76006662d698f447c5',1,'sw::Property::operator=()']]], ['operator_3d_3d_73',['operator==',['../classsw_1_1_dictionary.html#aa139d8b586f45b45157b268832ac9522',1,'sw::Dictionary::operator=='],['../classsw_1_1_list.html#a6c5f217b25ad01a2af3b311520bcfc8e',1,'sw::List::operator=='],['../classsw_1_1_wnd_base.html#a91165e81b129c626cabcc7b3d8a5dc43',1,'sw::WndBase::operator==']]], ['operator_5b_5d_74',['operator[]',['../classsw_1_1_dictionary.html#a3f2f6938ef081002887f747d74950a30',1,'sw::Dictionary::operator[]()'],['../classsw_1_1_list.html#a56e16552c6690d1c808646c4232dd992',1,'sw::List::operator[]()'],['../classsw_1_1_u_i_element.html#a3dee0000f9edfdce128c7ca3c95ec4ab',1,'sw::UIElement::operator[]()']]], - ['orientation_75',['orientation',['../classsw_1_1_font.html#af31ac58928f6e0d9d9c90a95f54fd7de',1,'sw::Font::orientation'],['../classsw_1_1_stack_layout.html#aa425ef22052ca56ed1e0358374db00a5',1,'sw::StackLayout::orientation'],['../classsw_1_1_wrap_layout.html#a1ce0e6707fe1463b857889755df7ee09',1,'sw::WrapLayout::orientation']]], - ['orientation_76',['Orientation',['../classsw_1_1_stack_panel.html#affb5896d0e3e3b615bcbb285c8e03bf4',1,'sw::StackPanel::Orientation'],['../classsw_1_1_wrap_panel.html#a2b718024b1dd81f08906afd3fa18a3f7',1,'sw::WrapPanel::Orientation']]], + ['orientation_75',['Orientation',['../classsw_1_1_splitter.html#a9c922b8e13fa139978a664c1e8fab4d6',1,'sw::Splitter::Orientation'],['../classsw_1_1_stack_panel.html#affb5896d0e3e3b615bcbb285c8e03bf4',1,'sw::StackPanel::Orientation'],['../classsw_1_1_wrap_panel.html#a2b718024b1dd81f08906afd3fa18a3f7',1,'sw::WrapPanel::Orientation']]], + ['orientation_76',['orientation',['../classsw_1_1_font.html#af31ac58928f6e0d9d9c90a95f54fd7de',1,'sw::Font::orientation'],['../classsw_1_1_stack_layout.html#aa425ef22052ca56ed1e0358374db00a5',1,'sw::StackLayout::orientation'],['../classsw_1_1_wrap_layout.html#a1ce0e6707fe1463b857889755df7ee09',1,'sw::WrapLayout::orientation']]], ['outprecision_77',['outPrecision',['../classsw_1_1_font.html#aa223c3578a59a96149bd4ef989825e08',1,'sw::Font']]] ]; diff --git a/docs/search/all_f.js b/docs/search/all_f.js index 926c5a5b..62478847 100644 --- a/docs/search/all_f.js +++ b/docs/search/all_f.js @@ -20,29 +20,30 @@ var searchData= ['property_3c_20double_20_3e_17',['Property< double >',['../classsw_1_1_property.html',1,'sw']]], ['property_3c_20horizontalalignment_20_3e_18',['Property< HorizontalAlignment >',['../classsw_1_1_property.html',1,'sw']]], ['property_3c_20int_20_3e_19',['Property< int >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20progressbarstate_20_3e_20',['Property< ProgressBarState >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20std_3a_3awstring_20_3e_21',['Property< std::wstring >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3aborderstyle_20_3e_22',['Property< sw::BorderStyle >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3acheckstate_20_3e_23',['Property< sw::CheckState >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3acolor_20_3e_24',['Property< sw::Color >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3acontextmenu_20_2a_20_3e_25',['Property< sw::ContextMenu * >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3afont_20_3e_26',['Property< sw::Font >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3afontweight_20_3e_27',['Property< sw::FontWeight >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3ahorizontalalignment_20_3e_28',['Property< sw::HorizontalAlignment >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3alayouthost_20_2a_20_3e_29',['Property< sw::LayoutHost * >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3amenu_20_2a_20_3e_30',['Property< sw::Menu * >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3aorientation_20_3e_31',['Property< sw::Orientation >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3arect_20_3e_32',['Property< sw::Rect >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3atexttrimming_20_3e_33',['Property< sw::TextTrimming >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3athickness_20_3e_34',['Property< sw::Thickness >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3averticalalignment_20_3e_35',['Property< sw::VerticalAlignment >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20tabalignment_20_3e_36',['Property< TabAlignment >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20uint16_5ft_20_3e_37',['Property< uint16_t >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20uint64_5ft_20_3e_38',['Property< uint64_t >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20verticalalignment_20_3e_39',['Property< VerticalAlignment >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20wchar_5ft_20_3e_40',['Property< wchar_t >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20windowstartuplocation_20_3e_41',['Property< WindowStartupLocation >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20windowstate_20_3e_42',['Property< WindowState >',['../classsw_1_1_property.html',1,'sw']]], - ['pxtodipx_43',['PxToDipX',['../classsw_1_1_dip.html#aa0244988630536a31439cdfde27ec209',1,'sw::Dip']]], - ['pxtodipy_44',['PxToDipY',['../classsw_1_1_dip.html#a54fd07b8418adcff0ecb8483098ab860',1,'sw::Dip']]] + ['property_3c_20orientation_20_3e_20',['Property< Orientation >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20progressbarstate_20_3e_21',['Property< ProgressBarState >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20std_3a_3awstring_20_3e_22',['Property< std::wstring >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3aborderstyle_20_3e_23',['Property< sw::BorderStyle >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3acheckstate_20_3e_24',['Property< sw::CheckState >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3acolor_20_3e_25',['Property< sw::Color >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3acontextmenu_20_2a_20_3e_26',['Property< sw::ContextMenu * >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3afont_20_3e_27',['Property< sw::Font >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3afontweight_20_3e_28',['Property< sw::FontWeight >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3ahorizontalalignment_20_3e_29',['Property< sw::HorizontalAlignment >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3alayouthost_20_2a_20_3e_30',['Property< sw::LayoutHost * >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3amenu_20_2a_20_3e_31',['Property< sw::Menu * >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3aorientation_20_3e_32',['Property< sw::Orientation >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3arect_20_3e_33',['Property< sw::Rect >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3atexttrimming_20_3e_34',['Property< sw::TextTrimming >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3athickness_20_3e_35',['Property< sw::Thickness >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3averticalalignment_20_3e_36',['Property< sw::VerticalAlignment >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20tabalignment_20_3e_37',['Property< TabAlignment >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20uint16_5ft_20_3e_38',['Property< uint16_t >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20uint64_5ft_20_3e_39',['Property< uint64_t >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20verticalalignment_20_3e_40',['Property< VerticalAlignment >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20wchar_5ft_20_3e_41',['Property< wchar_t >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20windowstartuplocation_20_3e_42',['Property< WindowStartupLocation >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20windowstate_20_3e_43',['Property< WindowState >',['../classsw_1_1_property.html',1,'sw']]], + ['pxtodipx_44',['PxToDipX',['../classsw_1_1_dip.html#aa0244988630536a31439cdfde27ec209',1,'sw::Dip']]], + ['pxtodipy_45',['PxToDipY',['../classsw_1_1_dip.html#a54fd07b8418adcff0ecb8483098ab860',1,'sw::Dip']]] ]; diff --git a/docs/search/classes_10.js b/docs/search/classes_10.js index 5296dd9e..d429b047 100644 --- a/docs/search/classes_10.js +++ b/docs/search/classes_10.js @@ -1,39 +1,7 @@ var searchData= [ - ['window_0',['Window',['../classsw_1_1_window.html',1,'sw']]], - ['windowclosingeventargs_1',['WindowClosingEventArgs',['../structsw_1_1_window_closing_event_args.html',1,'sw']]], - ['wndbase_2',['WndBase',['../classsw_1_1_wnd_base.html',1,'sw']]], - ['wraplayout_3',['WrapLayout',['../classsw_1_1_wrap_layout.html',1,'sw']]], - ['wraplayouth_4',['WrapLayoutH',['../classsw_1_1_wrap_layout_h.html',1,'sw']]], - ['wraplayoutv_5',['WrapLayoutV',['../classsw_1_1_wrap_layout_v.html',1,'sw']]], - ['wrappanel_6',['WrapPanel',['../classsw_1_1_wrap_panel.html',1,'sw']]], - ['writeonlyproperty_7',['WriteOnlyProperty',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20appquitmode_20_3e_8',['WriteOnlyProperty< AppQuitMode >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20bool_20_3e_9',['WriteOnlyProperty< bool >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20double_20_3e_10',['WriteOnlyProperty< double >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20horizontalalignment_20_3e_11',['WriteOnlyProperty< HorizontalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20int_20_3e_12',['WriteOnlyProperty< int >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20progressbarstate_20_3e_13',['WriteOnlyProperty< ProgressBarState >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20std_3a_3awstring_20_3e_14',['WriteOnlyProperty< std::wstring >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3aborderstyle_20_3e_15',['WriteOnlyProperty< sw::BorderStyle >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3acheckstate_20_3e_16',['WriteOnlyProperty< sw::CheckState >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3acolor_20_3e_17',['WriteOnlyProperty< sw::Color >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3acontextmenu_20_2a_20_3e_18',['WriteOnlyProperty< sw::ContextMenu * >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3afont_20_3e_19',['WriteOnlyProperty< sw::Font >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3afontweight_20_3e_20',['WriteOnlyProperty< sw::FontWeight >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3ahorizontalalignment_20_3e_21',['WriteOnlyProperty< sw::HorizontalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3alayouthost_20_2a_20_3e_22',['WriteOnlyProperty< sw::LayoutHost * >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3amenu_20_2a_20_3e_23',['WriteOnlyProperty< sw::Menu * >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3aorientation_20_3e_24',['WriteOnlyProperty< sw::Orientation >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3arect_20_3e_25',['WriteOnlyProperty< sw::Rect >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3atexttrimming_20_3e_26',['WriteOnlyProperty< sw::TextTrimming >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3athickness_20_3e_27',['WriteOnlyProperty< sw::Thickness >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20sw_3a_3averticalalignment_20_3e_28',['WriteOnlyProperty< sw::VerticalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20tabalignment_20_3e_29',['WriteOnlyProperty< TabAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20uint16_5ft_20_3e_30',['WriteOnlyProperty< uint16_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20uint64_5ft_20_3e_31',['WriteOnlyProperty< uint64_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20verticalalignment_20_3e_32',['WriteOnlyProperty< VerticalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20wchar_5ft_20_3e_33',['WriteOnlyProperty< wchar_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20windowstartuplocation_20_3e_34',['WriteOnlyProperty< WindowStartupLocation >',['../classsw_1_1_write_only_property.html',1,'sw']]], - ['writeonlyproperty_3c_20windowstate_20_3e_35',['WriteOnlyProperty< WindowState >',['../classsw_1_1_write_only_property.html',1,'sw']]] + ['uielement_0',['UIElement',['../classsw_1_1_u_i_element.html',1,'sw']]], + ['uniformgrid_1',['UniformGrid',['../classsw_1_1_uniform_grid.html',1,'sw']]], + ['uniformgridlayout_2',['UniformGridLayout',['../classsw_1_1_uniform_grid_layout.html',1,'sw']]], + ['utils_3',['Utils',['../classsw_1_1_utils.html',1,'sw']]] ]; diff --git a/docs/search/classes_11.js b/docs/search/classes_11.js new file mode 100644 index 00000000..33bd537f --- /dev/null +++ b/docs/search/classes_11.js @@ -0,0 +1,40 @@ +var searchData= +[ + ['window_0',['Window',['../classsw_1_1_window.html',1,'sw']]], + ['windowclosingeventargs_1',['WindowClosingEventArgs',['../structsw_1_1_window_closing_event_args.html',1,'sw']]], + ['wndbase_2',['WndBase',['../classsw_1_1_wnd_base.html',1,'sw']]], + ['wraplayout_3',['WrapLayout',['../classsw_1_1_wrap_layout.html',1,'sw']]], + ['wraplayouth_4',['WrapLayoutH',['../classsw_1_1_wrap_layout_h.html',1,'sw']]], + ['wraplayoutv_5',['WrapLayoutV',['../classsw_1_1_wrap_layout_v.html',1,'sw']]], + ['wrappanel_6',['WrapPanel',['../classsw_1_1_wrap_panel.html',1,'sw']]], + ['writeonlyproperty_7',['WriteOnlyProperty',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20appquitmode_20_3e_8',['WriteOnlyProperty< AppQuitMode >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20bool_20_3e_9',['WriteOnlyProperty< bool >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20double_20_3e_10',['WriteOnlyProperty< double >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20horizontalalignment_20_3e_11',['WriteOnlyProperty< HorizontalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20int_20_3e_12',['WriteOnlyProperty< int >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20orientation_20_3e_13',['WriteOnlyProperty< Orientation >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20progressbarstate_20_3e_14',['WriteOnlyProperty< ProgressBarState >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20std_3a_3awstring_20_3e_15',['WriteOnlyProperty< std::wstring >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3aborderstyle_20_3e_16',['WriteOnlyProperty< sw::BorderStyle >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3acheckstate_20_3e_17',['WriteOnlyProperty< sw::CheckState >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3acolor_20_3e_18',['WriteOnlyProperty< sw::Color >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3acontextmenu_20_2a_20_3e_19',['WriteOnlyProperty< sw::ContextMenu * >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3afont_20_3e_20',['WriteOnlyProperty< sw::Font >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3afontweight_20_3e_21',['WriteOnlyProperty< sw::FontWeight >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3ahorizontalalignment_20_3e_22',['WriteOnlyProperty< sw::HorizontalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3alayouthost_20_2a_20_3e_23',['WriteOnlyProperty< sw::LayoutHost * >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3amenu_20_2a_20_3e_24',['WriteOnlyProperty< sw::Menu * >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3aorientation_20_3e_25',['WriteOnlyProperty< sw::Orientation >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3arect_20_3e_26',['WriteOnlyProperty< sw::Rect >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3atexttrimming_20_3e_27',['WriteOnlyProperty< sw::TextTrimming >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3athickness_20_3e_28',['WriteOnlyProperty< sw::Thickness >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20sw_3a_3averticalalignment_20_3e_29',['WriteOnlyProperty< sw::VerticalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20tabalignment_20_3e_30',['WriteOnlyProperty< TabAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20uint16_5ft_20_3e_31',['WriteOnlyProperty< uint16_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20uint64_5ft_20_3e_32',['WriteOnlyProperty< uint64_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20verticalalignment_20_3e_33',['WriteOnlyProperty< VerticalAlignment >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20wchar_5ft_20_3e_34',['WriteOnlyProperty< wchar_t >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20windowstartuplocation_20_3e_35',['WriteOnlyProperty< WindowStartupLocation >',['../classsw_1_1_write_only_property.html',1,'sw']]], + ['writeonlyproperty_3c_20windowstate_20_3e_36',['WriteOnlyProperty< WindowState >',['../classsw_1_1_write_only_property.html',1,'sw']]] +]; diff --git a/docs/search/classes_7.js b/docs/search/classes_7.js index 5448b517..bc724207 100644 --- a/docs/search/classes_7.js +++ b/docs/search/classes_7.js @@ -1,8 +1,4 @@ var searchData= [ - ['iconhelper_0',['IconHelper',['../classsw_1_1_icon_helper.html',1,'sw']]], - ['ilayout_1',['ILayout',['../classsw_1_1_i_layout.html',1,'sw']]], - ['itag_2',['ITag',['../classsw_1_1_i_tag.html',1,'sw']]], - ['itemscontrol_3',['ItemsControl',['../classsw_1_1_items_control.html',1,'sw']]], - ['itemscontrol_3c_20strlist_20_3e_4',['ItemsControl< StrList >',['../classsw_1_1_items_control.html',1,'sw']]] + ['hwndhost_0',['HwndHost',['../classsw_1_1_hwnd_host.html',1,'sw']]] ]; diff --git a/docs/search/classes_8.js b/docs/search/classes_8.js index faccddfe..5448b517 100644 --- a/docs/search/classes_8.js +++ b/docs/search/classes_8.js @@ -1,6 +1,8 @@ var searchData= [ - ['keydowneventargs_0',['KeyDownEventArgs',['../structsw_1_1_key_down_event_args.html',1,'sw']]], - ['keyflags_1',['KeyFlags',['../structsw_1_1_key_flags.html',1,'sw']]], - ['keyupeventargs_2',['KeyUpEventArgs',['../structsw_1_1_key_up_event_args.html',1,'sw']]] + ['iconhelper_0',['IconHelper',['../classsw_1_1_icon_helper.html',1,'sw']]], + ['ilayout_1',['ILayout',['../classsw_1_1_i_layout.html',1,'sw']]], + ['itag_2',['ITag',['../classsw_1_1_i_tag.html',1,'sw']]], + ['itemscontrol_3',['ItemsControl',['../classsw_1_1_items_control.html',1,'sw']]], + ['itemscontrol_3c_20strlist_20_3e_4',['ItemsControl< StrList >',['../classsw_1_1_items_control.html',1,'sw']]] ]; diff --git a/docs/search/classes_9.js b/docs/search/classes_9.js index 8144dc54..faccddfe 100644 --- a/docs/search/classes_9.js +++ b/docs/search/classes_9.js @@ -1,15 +1,6 @@ var searchData= [ - ['label_0',['Label',['../classsw_1_1_label.html',1,'sw']]], - ['layer_1',['Layer',['../classsw_1_1_layer.html',1,'sw']]], - ['layouthost_2',['LayoutHost',['../classsw_1_1_layout_host.html',1,'sw']]], - ['list_3',['List',['../classsw_1_1_list.html',1,'sw']]], - ['list_3c_20sw_3a_3agridcolumn_20_3e_4',['List< sw::GridColumn >',['../classsw_1_1_list.html',1,'sw']]], - ['list_3c_20sw_3a_3agridrow_20_3e_5',['List< sw::GridRow >',['../classsw_1_1_list.html',1,'sw']]], - ['listbox_6',['ListBox',['../classsw_1_1_list_box.html',1,'sw']]], - ['listview_7',['ListView',['../classsw_1_1_list_view.html',1,'sw']]], - ['listviewcheckstatechangedeventargs_8',['ListViewCheckStateChangedEventArgs',['../structsw_1_1_list_view_check_state_changed_event_args.html',1,'sw']]], - ['listviewcolumn_9',['ListViewColumn',['../structsw_1_1_list_view_column.html',1,'sw']]], - ['listviewheaderclickedeventargs_10',['ListViewHeaderClickedEventArgs',['../structsw_1_1_list_view_header_clicked_event_args.html',1,'sw']]], - ['listviewitemclickedeventargs_11',['ListViewItemClickedEventArgs',['../structsw_1_1_list_view_item_clicked_event_args.html',1,'sw']]] + ['keydowneventargs_0',['KeyDownEventArgs',['../structsw_1_1_key_down_event_args.html',1,'sw']]], + ['keyflags_1',['KeyFlags',['../structsw_1_1_key_flags.html',1,'sw']]], + ['keyupeventargs_2',['KeyUpEventArgs',['../structsw_1_1_key_up_event_args.html',1,'sw']]] ]; diff --git a/docs/search/classes_a.js b/docs/search/classes_a.js index e77e166d..8144dc54 100644 --- a/docs/search/classes_a.js +++ b/docs/search/classes_a.js @@ -1,11 +1,15 @@ var searchData= [ - ['menu_0',['Menu',['../classsw_1_1_menu.html',1,'sw']]], - ['menubase_1',['MenuBase',['../classsw_1_1_menu_base.html',1,'sw']]], - ['menuitem_2',['MenuItem',['../classsw_1_1_menu_item.html',1,'sw']]], - ['mousebuttondowneventargs_3',['MouseButtonDownEventArgs',['../structsw_1_1_mouse_button_down_event_args.html',1,'sw']]], - ['mousebuttonupeventargs_4',['MouseButtonUpEventArgs',['../structsw_1_1_mouse_button_up_event_args.html',1,'sw']]], - ['mousemoveeventargs_5',['MouseMoveEventArgs',['../structsw_1_1_mouse_move_event_args.html',1,'sw']]], - ['mousewheeleventargs_6',['MouseWheelEventArgs',['../structsw_1_1_mouse_wheel_event_args.html',1,'sw']]], - ['msgbox_7',['MsgBox',['../classsw_1_1_msg_box.html',1,'sw']]] + ['label_0',['Label',['../classsw_1_1_label.html',1,'sw']]], + ['layer_1',['Layer',['../classsw_1_1_layer.html',1,'sw']]], + ['layouthost_2',['LayoutHost',['../classsw_1_1_layout_host.html',1,'sw']]], + ['list_3',['List',['../classsw_1_1_list.html',1,'sw']]], + ['list_3c_20sw_3a_3agridcolumn_20_3e_4',['List< sw::GridColumn >',['../classsw_1_1_list.html',1,'sw']]], + ['list_3c_20sw_3a_3agridrow_20_3e_5',['List< sw::GridRow >',['../classsw_1_1_list.html',1,'sw']]], + ['listbox_6',['ListBox',['../classsw_1_1_list_box.html',1,'sw']]], + ['listview_7',['ListView',['../classsw_1_1_list_view.html',1,'sw']]], + ['listviewcheckstatechangedeventargs_8',['ListViewCheckStateChangedEventArgs',['../structsw_1_1_list_view_check_state_changed_event_args.html',1,'sw']]], + ['listviewcolumn_9',['ListViewColumn',['../structsw_1_1_list_view_column.html',1,'sw']]], + ['listviewheaderclickedeventargs_10',['ListViewHeaderClickedEventArgs',['../structsw_1_1_list_view_header_clicked_event_args.html',1,'sw']]], + ['listviewitemclickedeventargs_11',['ListViewItemClickedEventArgs',['../structsw_1_1_list_view_item_clicked_event_args.html',1,'sw']]] ]; diff --git a/docs/search/classes_b.js b/docs/search/classes_b.js index ee0a5fe3..e77e166d 100644 --- a/docs/search/classes_b.js +++ b/docs/search/classes_b.js @@ -1,40 +1,11 @@ var searchData= [ - ['panel_0',['Panel',['../classsw_1_1_panel.html',1,'sw']]], - ['panelbase_1',['PanelBase',['../classsw_1_1_panel_base.html',1,'sw']]], - ['passwordbox_2',['PasswordBox',['../classsw_1_1_password_box.html',1,'sw']]], - ['path_3',['Path',['../classsw_1_1_path.html',1,'sw']]], - ['point_4',['Point',['../structsw_1_1_point.html',1,'sw']]], - ['positionchangedeventargs_5',['PositionChangedEventArgs',['../structsw_1_1_position_changed_event_args.html',1,'sw']]], - ['procmsg_6',['ProcMsg',['../structsw_1_1_proc_msg.html',1,'sw']]], - ['progressbar_7',['ProgressBar',['../classsw_1_1_progress_bar.html',1,'sw']]], - ['property_8',['Property',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20appquitmode_20_3e_9',['Property< AppQuitMode >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20bool_20_3e_10',['Property< bool >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20double_20_3e_11',['Property< double >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20horizontalalignment_20_3e_12',['Property< HorizontalAlignment >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20int_20_3e_13',['Property< int >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20progressbarstate_20_3e_14',['Property< ProgressBarState >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20std_3a_3awstring_20_3e_15',['Property< std::wstring >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3aborderstyle_20_3e_16',['Property< sw::BorderStyle >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3acheckstate_20_3e_17',['Property< sw::CheckState >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3acolor_20_3e_18',['Property< sw::Color >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3acontextmenu_20_2a_20_3e_19',['Property< sw::ContextMenu * >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3afont_20_3e_20',['Property< sw::Font >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3afontweight_20_3e_21',['Property< sw::FontWeight >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3ahorizontalalignment_20_3e_22',['Property< sw::HorizontalAlignment >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3alayouthost_20_2a_20_3e_23',['Property< sw::LayoutHost * >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3amenu_20_2a_20_3e_24',['Property< sw::Menu * >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3aorientation_20_3e_25',['Property< sw::Orientation >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3arect_20_3e_26',['Property< sw::Rect >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3atexttrimming_20_3e_27',['Property< sw::TextTrimming >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3athickness_20_3e_28',['Property< sw::Thickness >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20sw_3a_3averticalalignment_20_3e_29',['Property< sw::VerticalAlignment >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20tabalignment_20_3e_30',['Property< TabAlignment >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20uint16_5ft_20_3e_31',['Property< uint16_t >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20uint64_5ft_20_3e_32',['Property< uint64_t >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20verticalalignment_20_3e_33',['Property< VerticalAlignment >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20wchar_5ft_20_3e_34',['Property< wchar_t >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20windowstartuplocation_20_3e_35',['Property< WindowStartupLocation >',['../classsw_1_1_property.html',1,'sw']]], - ['property_3c_20windowstate_20_3e_36',['Property< WindowState >',['../classsw_1_1_property.html',1,'sw']]] + ['menu_0',['Menu',['../classsw_1_1_menu.html',1,'sw']]], + ['menubase_1',['MenuBase',['../classsw_1_1_menu_base.html',1,'sw']]], + ['menuitem_2',['MenuItem',['../classsw_1_1_menu_item.html',1,'sw']]], + ['mousebuttondowneventargs_3',['MouseButtonDownEventArgs',['../structsw_1_1_mouse_button_down_event_args.html',1,'sw']]], + ['mousebuttonupeventargs_4',['MouseButtonUpEventArgs',['../structsw_1_1_mouse_button_up_event_args.html',1,'sw']]], + ['mousemoveeventargs_5',['MouseMoveEventArgs',['../structsw_1_1_mouse_move_event_args.html',1,'sw']]], + ['mousewheeleventargs_6',['MouseWheelEventArgs',['../structsw_1_1_mouse_wheel_event_args.html',1,'sw']]], + ['msgbox_7',['MsgBox',['../classsw_1_1_msg_box.html',1,'sw']]] ]; diff --git a/docs/search/classes_c.js b/docs/search/classes_c.js index 6a359429..b6f885fa 100644 --- a/docs/search/classes_c.js +++ b/docs/search/classes_c.js @@ -1,57 +1,41 @@ var searchData= [ - ['radiobutton_0',['RadioButton',['../classsw_1_1_radio_button.html',1,'sw']]], - ['readonlyproperty_1',['ReadOnlyProperty',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20appquitmode_20_3e_2',['ReadOnlyProperty< AppQuitMode >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20bool_20_3e_3',['ReadOnlyProperty< bool >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20double_20_3e_4',['ReadOnlyProperty< double >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20hinstance_20_3e_5',['ReadOnlyProperty< HINSTANCE >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20horizontalalignment_20_3e_6',['ReadOnlyProperty< HorizontalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20hwnd_20_3e_7',['ReadOnlyProperty< HWND >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20int_20_3e_8',['ReadOnlyProperty< int >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20progressbarstate_20_3e_9',['ReadOnlyProperty< ProgressBarState >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20std_3a_3awstring_20_3e_10',['ReadOnlyProperty< std::wstring >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20strlist_20_3e_11',['ReadOnlyProperty< StrList >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3aborderstyle_20_3e_12',['ReadOnlyProperty< sw::BorderStyle >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3acheckstate_20_3e_13',['ReadOnlyProperty< sw::CheckState >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3acolor_20_3e_14',['ReadOnlyProperty< sw::Color >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3acontextmenu_20_2a_20_3e_15',['ReadOnlyProperty< sw::ContextMenu * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3afont_20_3e_16',['ReadOnlyProperty< sw::Font >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3afontweight_20_3e_17',['ReadOnlyProperty< sw::FontWeight >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3ahorizontalalignment_20_3e_18',['ReadOnlyProperty< sw::HorizontalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3alayouthost_20_2a_20_3e_19',['ReadOnlyProperty< sw::LayoutHost * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3amenu_20_2a_20_3e_20',['ReadOnlyProperty< sw::Menu * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3aorientation_20_3e_21',['ReadOnlyProperty< sw::Orientation >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3apoint_20_3e_22',['ReadOnlyProperty< sw::Point >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3arect_20_3e_23',['ReadOnlyProperty< sw::Rect >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3atexttrimming_20_3e_24',['ReadOnlyProperty< sw::TextTrimming >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3athickness_20_3e_25',['ReadOnlyProperty< sw::Thickness >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3auielement_20_2a_20_3e_26',['ReadOnlyProperty< sw::UIElement * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3averticalalignment_20_3e_27',['ReadOnlyProperty< sw::VerticalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3awindow_20_2a_20_3e_28',['ReadOnlyProperty< sw::Window * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20sw_3a_3awndbase_20_2a_20_3e_29',['ReadOnlyProperty< sw::WndBase * >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20tabalignment_20_3e_30',['ReadOnlyProperty< TabAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20titem_20_3e_31',['ReadOnlyProperty< TItem >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20uint16_5ft_20_3e_32',['ReadOnlyProperty< uint16_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20uint64_5ft_20_3e_33',['ReadOnlyProperty< uint64_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20verticalalignment_20_3e_34',['ReadOnlyProperty< VerticalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20wchar_5ft_20_3e_35',['ReadOnlyProperty< wchar_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20windowstartuplocation_20_3e_36',['ReadOnlyProperty< WindowStartupLocation >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['readonlyproperty_3c_20windowstate_20_3e_37',['ReadOnlyProperty< WindowState >',['../classsw_1_1_read_only_property.html',1,'sw']]], - ['rect_38',['Rect',['../structsw_1_1_rect.html',1,'sw']]], - ['routedeventargs_39',['RoutedEventArgs',['../structsw_1_1_routed_event_args.html',1,'sw']]], - ['routedeventargsoftype_40',['RoutedEventArgsOfType',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20layer_5fscrolling_20_3e_41',['RoutedEventArgsOfType< Layer_Scrolling >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20listview_5fcheckstatechanged_20_3e_42',['RoutedEventArgsOfType< ListView_CheckStateChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fgotchar_20_3e_43',['RoutedEventArgsOfType< UIElement_GotChar >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fkeydown_20_3e_44',['RoutedEventArgsOfType< UIElement_KeyDown >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fkeyup_20_3e_45',['RoutedEventArgsOfType< UIElement_KeyUp >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fmousebuttondown_20_3e_46',['RoutedEventArgsOfType< UIElement_MouseButtonDown >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fmousebuttonup_20_3e_47',['RoutedEventArgsOfType< UIElement_MouseButtonUp >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fmousemove_20_3e_48',['RoutedEventArgsOfType< UIElement_MouseMove >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fmousewheel_20_3e_49',['RoutedEventArgsOfType< UIElement_MouseWheel >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fpositionchanged_20_3e_50',['RoutedEventArgsOfType< UIElement_PositionChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fshowcontextmenu_20_3e_51',['RoutedEventArgsOfType< UIElement_ShowContextMenu >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20uielement_5fsizechanged_20_3e_52',['RoutedEventArgsOfType< UIElement_SizeChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], - ['routedeventargsoftype_3c_20window_5fclosing_20_3e_53',['RoutedEventArgsOfType< Window_Closing >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]] + ['panel_0',['Panel',['../classsw_1_1_panel.html',1,'sw']]], + ['panelbase_1',['PanelBase',['../classsw_1_1_panel_base.html',1,'sw']]], + ['passwordbox_2',['PasswordBox',['../classsw_1_1_password_box.html',1,'sw']]], + ['path_3',['Path',['../classsw_1_1_path.html',1,'sw']]], + ['point_4',['Point',['../structsw_1_1_point.html',1,'sw']]], + ['positionchangedeventargs_5',['PositionChangedEventArgs',['../structsw_1_1_position_changed_event_args.html',1,'sw']]], + ['procmsg_6',['ProcMsg',['../structsw_1_1_proc_msg.html',1,'sw']]], + ['progressbar_7',['ProgressBar',['../classsw_1_1_progress_bar.html',1,'sw']]], + ['property_8',['Property',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20appquitmode_20_3e_9',['Property< AppQuitMode >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20bool_20_3e_10',['Property< bool >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20double_20_3e_11',['Property< double >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20horizontalalignment_20_3e_12',['Property< HorizontalAlignment >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20int_20_3e_13',['Property< int >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20orientation_20_3e_14',['Property< Orientation >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20progressbarstate_20_3e_15',['Property< ProgressBarState >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20std_3a_3awstring_20_3e_16',['Property< std::wstring >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3aborderstyle_20_3e_17',['Property< sw::BorderStyle >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3acheckstate_20_3e_18',['Property< sw::CheckState >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3acolor_20_3e_19',['Property< sw::Color >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3acontextmenu_20_2a_20_3e_20',['Property< sw::ContextMenu * >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3afont_20_3e_21',['Property< sw::Font >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3afontweight_20_3e_22',['Property< sw::FontWeight >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3ahorizontalalignment_20_3e_23',['Property< sw::HorizontalAlignment >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3alayouthost_20_2a_20_3e_24',['Property< sw::LayoutHost * >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3amenu_20_2a_20_3e_25',['Property< sw::Menu * >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3aorientation_20_3e_26',['Property< sw::Orientation >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3arect_20_3e_27',['Property< sw::Rect >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3atexttrimming_20_3e_28',['Property< sw::TextTrimming >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3athickness_20_3e_29',['Property< sw::Thickness >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20sw_3a_3averticalalignment_20_3e_30',['Property< sw::VerticalAlignment >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20tabalignment_20_3e_31',['Property< TabAlignment >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20uint16_5ft_20_3e_32',['Property< uint16_t >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20uint64_5ft_20_3e_33',['Property< uint64_t >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20verticalalignment_20_3e_34',['Property< VerticalAlignment >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20wchar_5ft_20_3e_35',['Property< wchar_t >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20windowstartuplocation_20_3e_36',['Property< WindowStartupLocation >',['../classsw_1_1_property.html',1,'sw']]], + ['property_3c_20windowstate_20_3e_37',['Property< WindowState >',['../classsw_1_1_property.html',1,'sw']]] ]; diff --git a/docs/search/classes_d.js b/docs/search/classes_d.js index 44d9a127..395bb7f4 100644 --- a/docs/search/classes_d.js +++ b/docs/search/classes_d.js @@ -1,14 +1,58 @@ var searchData= [ - ['screen_0',['Screen',['../classsw_1_1_screen.html',1,'sw']]], - ['scrollingeventargs_1',['ScrollingEventArgs',['../structsw_1_1_scrolling_event_args.html',1,'sw']]], - ['showcontextmenueventargs_2',['ShowContextMenuEventArgs',['../structsw_1_1_show_context_menu_event_args.html',1,'sw']]], - ['size_3',['Size',['../structsw_1_1_size.html',1,'sw']]], - ['sizechangedeventargs_4',['SizeChangedEventArgs',['../structsw_1_1_size_changed_event_args.html',1,'sw']]], - ['slider_5',['Slider',['../classsw_1_1_slider.html',1,'sw']]], - ['stacklayout_6',['StackLayout',['../classsw_1_1_stack_layout.html',1,'sw']]], - ['stacklayouth_7',['StackLayoutH',['../classsw_1_1_stack_layout_h.html',1,'sw']]], - ['stacklayoutv_8',['StackLayoutV',['../classsw_1_1_stack_layout_v.html',1,'sw']]], - ['stackpanel_9',['StackPanel',['../classsw_1_1_stack_panel.html',1,'sw']]], - ['staticcontrol_10',['StaticControl',['../classsw_1_1_static_control.html',1,'sw']]] + ['radiobutton_0',['RadioButton',['../classsw_1_1_radio_button.html',1,'sw']]], + ['readonlyproperty_1',['ReadOnlyProperty',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20appquitmode_20_3e_2',['ReadOnlyProperty< AppQuitMode >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20bool_20_3e_3',['ReadOnlyProperty< bool >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20double_20_3e_4',['ReadOnlyProperty< double >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20hinstance_20_3e_5',['ReadOnlyProperty< HINSTANCE >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20horizontalalignment_20_3e_6',['ReadOnlyProperty< HorizontalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20hwnd_20_3e_7',['ReadOnlyProperty< HWND >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20int_20_3e_8',['ReadOnlyProperty< int >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20orientation_20_3e_9',['ReadOnlyProperty< Orientation >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20progressbarstate_20_3e_10',['ReadOnlyProperty< ProgressBarState >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20std_3a_3awstring_20_3e_11',['ReadOnlyProperty< std::wstring >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20strlist_20_3e_12',['ReadOnlyProperty< StrList >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3aborderstyle_20_3e_13',['ReadOnlyProperty< sw::BorderStyle >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3acheckstate_20_3e_14',['ReadOnlyProperty< sw::CheckState >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3acolor_20_3e_15',['ReadOnlyProperty< sw::Color >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3acontextmenu_20_2a_20_3e_16',['ReadOnlyProperty< sw::ContextMenu * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3afont_20_3e_17',['ReadOnlyProperty< sw::Font >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3afontweight_20_3e_18',['ReadOnlyProperty< sw::FontWeight >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3ahorizontalalignment_20_3e_19',['ReadOnlyProperty< sw::HorizontalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3alayouthost_20_2a_20_3e_20',['ReadOnlyProperty< sw::LayoutHost * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3amenu_20_2a_20_3e_21',['ReadOnlyProperty< sw::Menu * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3aorientation_20_3e_22',['ReadOnlyProperty< sw::Orientation >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3apoint_20_3e_23',['ReadOnlyProperty< sw::Point >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3arect_20_3e_24',['ReadOnlyProperty< sw::Rect >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3atexttrimming_20_3e_25',['ReadOnlyProperty< sw::TextTrimming >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3athickness_20_3e_26',['ReadOnlyProperty< sw::Thickness >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3auielement_20_2a_20_3e_27',['ReadOnlyProperty< sw::UIElement * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3averticalalignment_20_3e_28',['ReadOnlyProperty< sw::VerticalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3awindow_20_2a_20_3e_29',['ReadOnlyProperty< sw::Window * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20sw_3a_3awndbase_20_2a_20_3e_30',['ReadOnlyProperty< sw::WndBase * >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20tabalignment_20_3e_31',['ReadOnlyProperty< TabAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20titem_20_3e_32',['ReadOnlyProperty< TItem >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20uint16_5ft_20_3e_33',['ReadOnlyProperty< uint16_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20uint64_5ft_20_3e_34',['ReadOnlyProperty< uint64_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20verticalalignment_20_3e_35',['ReadOnlyProperty< VerticalAlignment >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20wchar_5ft_20_3e_36',['ReadOnlyProperty< wchar_t >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20windowstartuplocation_20_3e_37',['ReadOnlyProperty< WindowStartupLocation >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['readonlyproperty_3c_20windowstate_20_3e_38',['ReadOnlyProperty< WindowState >',['../classsw_1_1_read_only_property.html',1,'sw']]], + ['rect_39',['Rect',['../structsw_1_1_rect.html',1,'sw']]], + ['routedeventargs_40',['RoutedEventArgs',['../structsw_1_1_routed_event_args.html',1,'sw']]], + ['routedeventargsoftype_41',['RoutedEventArgsOfType',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20layer_5fscrolling_20_3e_42',['RoutedEventArgsOfType< Layer_Scrolling >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20listview_5fcheckstatechanged_20_3e_43',['RoutedEventArgsOfType< ListView_CheckStateChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fgotchar_20_3e_44',['RoutedEventArgsOfType< UIElement_GotChar >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fkeydown_20_3e_45',['RoutedEventArgsOfType< UIElement_KeyDown >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fkeyup_20_3e_46',['RoutedEventArgsOfType< UIElement_KeyUp >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fmousebuttondown_20_3e_47',['RoutedEventArgsOfType< UIElement_MouseButtonDown >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fmousebuttonup_20_3e_48',['RoutedEventArgsOfType< UIElement_MouseButtonUp >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fmousemove_20_3e_49',['RoutedEventArgsOfType< UIElement_MouseMove >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fmousewheel_20_3e_50',['RoutedEventArgsOfType< UIElement_MouseWheel >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fpositionchanged_20_3e_51',['RoutedEventArgsOfType< UIElement_PositionChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fshowcontextmenu_20_3e_52',['RoutedEventArgsOfType< UIElement_ShowContextMenu >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20uielement_5fsizechanged_20_3e_53',['RoutedEventArgsOfType< UIElement_SizeChanged >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]], + ['routedeventargsoftype_3c_20window_5fclosing_20_3e_54',['RoutedEventArgsOfType< Window_Closing >',['../structsw_1_1_routed_event_args_of_type.html',1,'sw']]] ]; diff --git a/docs/search/classes_e.js b/docs/search/classes_e.js index 59b58525..2596fac2 100644 --- a/docs/search/classes_e.js +++ b/docs/search/classes_e.js @@ -1,7 +1,15 @@ var searchData= [ - ['tabcontrol_0',['TabControl',['../classsw_1_1_tab_control.html',1,'sw']]], - ['textbox_1',['TextBox',['../classsw_1_1_text_box.html',1,'sw']]], - ['textboxbase_2',['TextBoxBase',['../classsw_1_1_text_box_base.html',1,'sw']]], - ['thickness_3',['Thickness',['../structsw_1_1_thickness.html',1,'sw']]] + ['screen_0',['Screen',['../classsw_1_1_screen.html',1,'sw']]], + ['scrollingeventargs_1',['ScrollingEventArgs',['../structsw_1_1_scrolling_event_args.html',1,'sw']]], + ['showcontextmenueventargs_2',['ShowContextMenuEventArgs',['../structsw_1_1_show_context_menu_event_args.html',1,'sw']]], + ['size_3',['Size',['../structsw_1_1_size.html',1,'sw']]], + ['sizechangedeventargs_4',['SizeChangedEventArgs',['../structsw_1_1_size_changed_event_args.html',1,'sw']]], + ['slider_5',['Slider',['../classsw_1_1_slider.html',1,'sw']]], + ['splitter_6',['Splitter',['../classsw_1_1_splitter.html',1,'sw']]], + ['stacklayout_7',['StackLayout',['../classsw_1_1_stack_layout.html',1,'sw']]], + ['stacklayouth_8',['StackLayoutH',['../classsw_1_1_stack_layout_h.html',1,'sw']]], + ['stacklayoutv_9',['StackLayoutV',['../classsw_1_1_stack_layout_v.html',1,'sw']]], + ['stackpanel_10',['StackPanel',['../classsw_1_1_stack_panel.html',1,'sw']]], + ['staticcontrol_11',['StaticControl',['../classsw_1_1_static_control.html',1,'sw']]] ]; diff --git a/docs/search/classes_f.js b/docs/search/classes_f.js index d429b047..59b58525 100644 --- a/docs/search/classes_f.js +++ b/docs/search/classes_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['uielement_0',['UIElement',['../classsw_1_1_u_i_element.html',1,'sw']]], - ['uniformgrid_1',['UniformGrid',['../classsw_1_1_uniform_grid.html',1,'sw']]], - ['uniformgridlayout_2',['UniformGridLayout',['../classsw_1_1_uniform_grid_layout.html',1,'sw']]], - ['utils_3',['Utils',['../classsw_1_1_utils.html',1,'sw']]] + ['tabcontrol_0',['TabControl',['../classsw_1_1_tab_control.html',1,'sw']]], + ['textbox_1',['TextBox',['../classsw_1_1_text_box.html',1,'sw']]], + ['textboxbase_2',['TextBoxBase',['../classsw_1_1_text_box_base.html',1,'sw']]], + ['thickness_3',['Thickness',['../structsw_1_1_thickness.html',1,'sw']]] ]; diff --git a/docs/search/functions_1.js b/docs/search/functions_1.js index c8a0a662..271c485f 100644 --- a/docs/search/functions_1.js +++ b/docs/search/functions_1.js @@ -2,6 +2,7 @@ var searchData= [ ['begin_0',['begin',['../classsw_1_1_dictionary.html#a9e7e3d687118005beb08bbf9e3a3a2bc',1,'sw::Dictionary::begin()'],['../classsw_1_1_list.html#a39b94e22ea344de135667df991fbbe11',1,'sw::List::begin()']]], ['buildstr_1',['BuildStr',['../classsw_1_1_utils.html#abb9a32e7b7d1fb83832c9a39a84c3452',1,'sw::Utils']]], - ['button_2',['Button',['../classsw_1_1_button.html#aafd2e523e98d68c45e451d93f22ead13',1,'sw::Button']]], - ['buttonbase_3',['ButtonBase',['../classsw_1_1_button_base.html#ae5dad2a65523da878df700fa4aefe3ee',1,'sw::ButtonBase']]] + ['buildwindowcore_2',['BuildWindowCore',['../classsw_1_1_hwnd_host.html#a9ac22adfa9d96348e7f89932d82cf3d3',1,'sw::HwndHost']]], + ['button_3',['Button',['../classsw_1_1_button.html#aafd2e523e98d68c45e451d93f22ead13',1,'sw::Button']]], + ['buttonbase_4',['ButtonBase',['../classsw_1_1_button_base.html#ae5dad2a65523da878df700fa4aefe3ee',1,'sw::ButtonBase']]] ]; diff --git a/docs/search/functions_10.js b/docs/search/functions_10.js index fbcb828e..1737d0db 100644 --- a/docs/search/functions_10.js +++ b/docs/search/functions_10.js @@ -50,6 +50,7 @@ var searchData= ['sizetocontent_47',['SizeToContent',['../classsw_1_1_window.html#abff0275ae90d22951d40b769f952d415',1,'sw::Window']]], ['slider_48',['Slider',['../classsw_1_1_slider.html#a44907de8805117d38ba3631545f39453',1,'sw::Slider']]], ['split_49',['Split',['../classsw_1_1_utils.html#a8f0292de23814b539a4f5db889422a06',1,'sw::Utils']]], - ['stackpanel_50',['StackPanel',['../classsw_1_1_stack_panel.html#adaf90a1ad8018e5365e22f45a0a0341a',1,'sw::StackPanel']]], - ['staticcontrol_51',['StaticControl',['../classsw_1_1_static_control.html#a88dea3db611c5cc94df004cdae9c74ef',1,'sw::StaticControl']]] + ['splitter_50',['Splitter',['../classsw_1_1_splitter.html#acc4ee8d727fd36e75444d014cbf1a1ff',1,'sw::Splitter']]], + ['stackpanel_51',['StackPanel',['../classsw_1_1_stack_panel.html#adaf90a1ad8018e5365e22f45a0a0341a',1,'sw::StackPanel']]], + ['staticcontrol_52',['StaticControl',['../classsw_1_1_static_control.html#a88dea3db611c5cc94df004cdae9c74ef',1,'sw::StaticControl']]] ]; diff --git a/docs/search/functions_3.js b/docs/search/functions_3.js index 6f03e387..427edf1e 100644 --- a/docs/search/functions_3.js +++ b/docs/search/functions_3.js @@ -1,10 +1,11 @@ var searchData= [ ['defaultwndproc_0',['DefaultWndProc',['../classsw_1_1_wnd_base.html#a585967d861673ea0477f25c1a5c0fb30',1,'sw::WndBase']]], - ['dictionary_1',['Dictionary',['../classsw_1_1_dictionary.html#a77cbfe628092b74f1a698e7b5fe56c69',1,'sw::Dictionary::Dictionary()'],['../classsw_1_1_dictionary.html#a178b607824a4eff707914f2eb3aaaa22',1,'sw::Dictionary::Dictionary(std::initializer_list< std::pair< const TKey, TVal > > list)']]], - ['diptopxx_2',['DipToPxX',['../classsw_1_1_dip.html#a66e3c3a119b77b632ec5f1f37051ee6d',1,'sw::Dip']]], - ['diptopxy_3',['DipToPxY',['../classsw_1_1_dip.html#ae8986a97dc498280957b4c9e5fa53124',1,'sw::Dip']]], - ['disablelayout_4',['DisableLayout',['../classsw_1_1_layer.html#a4c9e94621cab7abd5ca2e10f5691c3c1',1,'sw::Layer']]], - ['dockpanel_5',['DockPanel',['../classsw_1_1_dock_panel.html#a8c9ce34641a342dc14c8bae2d49e3c08',1,'sw::DockPanel']]], - ['drawmenubar_6',['DrawMenuBar',['../classsw_1_1_window.html#a3daeab5c99e045449a8a5f086c19877e',1,'sw::Window']]] + ['destroywindowcore_1',['DestroyWindowCore',['../classsw_1_1_hwnd_host.html#af644778e078302b01faf0ac2f5c7b75c',1,'sw::HwndHost']]], + ['dictionary_2',['Dictionary',['../classsw_1_1_dictionary.html#a77cbfe628092b74f1a698e7b5fe56c69',1,'sw::Dictionary::Dictionary()'],['../classsw_1_1_dictionary.html#a178b607824a4eff707914f2eb3aaaa22',1,'sw::Dictionary::Dictionary(std::initializer_list< std::pair< const TKey, TVal > > list)']]], + ['diptopxx_3',['DipToPxX',['../classsw_1_1_dip.html#a66e3c3a119b77b632ec5f1f37051ee6d',1,'sw::Dip']]], + ['diptopxy_4',['DipToPxY',['../classsw_1_1_dip.html#ae8986a97dc498280957b4c9e5fa53124',1,'sw::Dip']]], + ['disablelayout_5',['DisableLayout',['../classsw_1_1_layer.html#a4c9e94621cab7abd5ca2e10f5691c3c1',1,'sw::Layer']]], + ['dockpanel_6',['DockPanel',['../classsw_1_1_dock_panel.html#a8c9ce34641a342dc14c8bae2d49e3c08',1,'sw::DockPanel']]], + ['drawmenubar_7',['DrawMenuBar',['../classsw_1_1_window.html#a3daeab5c99e045449a8a5f086c19877e',1,'sw::Window']]] ]; diff --git a/docs/search/functions_8.js b/docs/search/functions_8.js index 66c8711b..2875690d 100644 --- a/docs/search/functions_8.js +++ b/docs/search/functions_8.js @@ -5,18 +5,19 @@ var searchData= ['indextoid_2',['IndexToID',['../classsw_1_1_context_menu.html#ae27616f20c9f03d7e5b81eaa6e7f3446',1,'sw::ContextMenu::IndexToID()'],['../classsw_1_1_menu.html#a522312cc29234ea9048d94fae7258027',1,'sw::Menu::IndexToID()'],['../classsw_1_1_menu_base.html#a9f94aca19decada231feeed33ab19743',1,'sw::MenuBase::IndexToID()']]], ['initbuttonbase_3',['InitButtonBase',['../classsw_1_1_button_base.html#a35200f7e5429767c50c089eb312ff248',1,'sw::ButtonBase']]], ['initcontrol_4',['InitControl',['../classsw_1_1_wnd_base.html#a60707bc74fd7d0599da1ea014cc37b5d',1,'sw::WndBase']]], - ['initmenubase_5',['InitMenuBase',['../classsw_1_1_menu_base.html#aa105bc5eb9ecf6a59f1ccff4b075643c',1,'sw::MenuBase']]], - ['inittextboxbase_6',['InitTextBoxBase',['../classsw_1_1_text_box_base.html#a3a6843f34013ed31f3828263f0984233',1,'sw::TextBoxBase']]], - ['initwindow_7',['InitWindow',['../classsw_1_1_wnd_base.html#a4889c45dfad820c103dd7f74f2cd0661',1,'sw::WndBase']]], - ['insert_8',['Insert',['../classsw_1_1_list.html#a68c7aaae99a0e18274de59cad82c5743',1,'sw::List']]], - ['insertcolumn_9',['InsertColumn',['../classsw_1_1_list_view.html#a985c48bef310cdcb10b722c9aec8ebbf',1,'sw::ListView::InsertColumn(int index, const ListViewColumn &column)'],['../classsw_1_1_list_view.html#a0abf70d4eee217e060b84686f30b8a09',1,'sw::ListView::InsertColumn(int index, const std::wstring &header)']]], - ['insertitem_10',['InsertItem',['../classsw_1_1_combo_box.html#ab1cf2dc76d67d10a2088acfeb29d1398',1,'sw::ComboBox::InsertItem()'],['../classsw_1_1_items_control.html#ab4f053e3c099caf009fab48f7370ad96',1,'sw::ItemsControl::InsertItem()'],['../classsw_1_1_list_box.html#abaa05ef08a38822976373307156029b2',1,'sw::ListBox::InsertItem()'],['../classsw_1_1_list_view.html#a34425690bf39e914861b2211004c2ce1',1,'sw::ListView::InsertItem()']]], - ['iscontextmenuid_11',['IsContextMenuID',['../classsw_1_1_context_menu.html#a968f4539826715feb35237acb1ec02b3',1,'sw::ContextMenu']]], - ['iscontrol_12',['IsControl',['../classsw_1_1_wnd_base.html#ace8f6b05caa5d335f7d574c38035bfa7',1,'sw::WndBase']]], - ['isempty_13',['IsEmpty',['../classsw_1_1_dictionary.html#a16703bd325716445121e257ae489dcc4',1,'sw::Dictionary::IsEmpty()'],['../classsw_1_1_list.html#aed38231dffce414f40d272aba6e7099c',1,'sw::List::IsEmpty()']]], - ['ismodal_14',['IsModal',['../classsw_1_1_window.html#a1cdd78ebe0571b1c9bb49403ed8d8381',1,'sw::Window']]], - ['isrootelement_15',['IsRootElement',['../classsw_1_1_u_i_element.html#a67bd7d81e6091118e4c97cc24c68543d',1,'sw::UIElement']]], - ['isroutedeventregistered_16',['IsRoutedEventRegistered',['../classsw_1_1_u_i_element.html#adf8152f31c5e109ba016316182bcec47',1,'sw::UIElement']]], - ['isseparator_17',['IsSeparator',['../classsw_1_1_menu_item.html#a136e71998ffff40e3d165749ba7f7306',1,'sw::MenuItem']]], - ['isvisible_18',['IsVisible',['../classsw_1_1_wnd_base.html#a6ee668e7a5261f96df0bd69a1fb868d3',1,'sw::WndBase']]] + ['inithwndhost_5',['InitHwndHost',['../classsw_1_1_hwnd_host.html#aebdcab5949f812ae64ecd79633cacc49',1,'sw::HwndHost']]], + ['initmenubase_6',['InitMenuBase',['../classsw_1_1_menu_base.html#aa105bc5eb9ecf6a59f1ccff4b075643c',1,'sw::MenuBase']]], + ['inittextboxbase_7',['InitTextBoxBase',['../classsw_1_1_text_box_base.html#a3a6843f34013ed31f3828263f0984233',1,'sw::TextBoxBase']]], + ['initwindow_8',['InitWindow',['../classsw_1_1_wnd_base.html#a4889c45dfad820c103dd7f74f2cd0661',1,'sw::WndBase']]], + ['insert_9',['Insert',['../classsw_1_1_list.html#a68c7aaae99a0e18274de59cad82c5743',1,'sw::List']]], + ['insertcolumn_10',['InsertColumn',['../classsw_1_1_list_view.html#a985c48bef310cdcb10b722c9aec8ebbf',1,'sw::ListView::InsertColumn(int index, const ListViewColumn &column)'],['../classsw_1_1_list_view.html#a0abf70d4eee217e060b84686f30b8a09',1,'sw::ListView::InsertColumn(int index, const std::wstring &header)']]], + ['insertitem_11',['InsertItem',['../classsw_1_1_combo_box.html#ab1cf2dc76d67d10a2088acfeb29d1398',1,'sw::ComboBox::InsertItem()'],['../classsw_1_1_items_control.html#ab4f053e3c099caf009fab48f7370ad96',1,'sw::ItemsControl::InsertItem()'],['../classsw_1_1_list_box.html#abaa05ef08a38822976373307156029b2',1,'sw::ListBox::InsertItem()'],['../classsw_1_1_list_view.html#a34425690bf39e914861b2211004c2ce1',1,'sw::ListView::InsertItem()']]], + ['iscontextmenuid_12',['IsContextMenuID',['../classsw_1_1_context_menu.html#a968f4539826715feb35237acb1ec02b3',1,'sw::ContextMenu']]], + ['iscontrol_13',['IsControl',['../classsw_1_1_wnd_base.html#ace8f6b05caa5d335f7d574c38035bfa7',1,'sw::WndBase']]], + ['isempty_14',['IsEmpty',['../classsw_1_1_dictionary.html#a16703bd325716445121e257ae489dcc4',1,'sw::Dictionary::IsEmpty()'],['../classsw_1_1_list.html#aed38231dffce414f40d272aba6e7099c',1,'sw::List::IsEmpty()']]], + ['ismodal_15',['IsModal',['../classsw_1_1_window.html#a1cdd78ebe0571b1c9bb49403ed8d8381',1,'sw::Window']]], + ['isrootelement_16',['IsRootElement',['../classsw_1_1_u_i_element.html#a67bd7d81e6091118e4c97cc24c68543d',1,'sw::UIElement']]], + ['isroutedeventregistered_17',['IsRoutedEventRegistered',['../classsw_1_1_u_i_element.html#adf8152f31c5e109ba016316182bcec47',1,'sw::UIElement']]], + ['isseparator_18',['IsSeparator',['../classsw_1_1_menu_item.html#a136e71998ffff40e3d165749ba7f7306',1,'sw::MenuItem']]], + ['isvisible_19',['IsVisible',['../classsw_1_1_wnd_base.html#a6ee668e7a5261f96df0bd69a1fb868d3',1,'sw::WndBase']]] ]; diff --git a/docs/search/functions_c.js b/docs/search/functions_c.js index 0a436c83..e01633a8 100644 --- a/docs/search/functions_c.js +++ b/docs/search/functions_c.js @@ -14,7 +14,7 @@ var searchData= ['oncreate_11',['OnCreate',['../classsw_1_1_wnd_base.html#a7dd30ab5e8700832140c329739b4b671',1,'sw::WndBase']]], ['onctlcolor_12',['OnCtlColor',['../classsw_1_1_wnd_base.html#aa04cd83e79c42d21127799e573d9f299',1,'sw::WndBase']]], ['ondeadchar_13',['OnDeadChar',['../classsw_1_1_wnd_base.html#a4c72db003eeb8a29565576ad26cc89b8',1,'sw::WndBase']]], - ['ondestroy_14',['OnDestroy',['../classsw_1_1_window.html#a09165434040ada6ea3f00a7d79b1f7a2',1,'sw::Window::OnDestroy()'],['../classsw_1_1_wnd_base.html#a98d960679d1889998ba548af6a3c8fc4',1,'sw::WndBase::OnDestroy()']]], + ['ondestroy_14',['OnDestroy',['../classsw_1_1_hwnd_host.html#a9535b63e17fbb079ce4f618c288cb9bd',1,'sw::HwndHost::OnDestroy()'],['../classsw_1_1_window.html#a09165434040ada6ea3f00a7d79b1f7a2',1,'sw::Window::OnDestroy()'],['../classsw_1_1_wnd_base.html#a98d960679d1889998ba548af6a3c8fc4',1,'sw::WndBase::OnDestroy()']]], ['ondoubleclicked_15',['OnDoubleClicked',['../classsw_1_1_button_base.html#aa0fb82e77ba464863fc609c987d5ff5d',1,'sw::ButtonBase']]], ['ondpichanged_16',['OnDpiChanged',['../classsw_1_1_window.html#a850c77ff7a3271e6d2bc77258c2ed11d',1,'sw::Window']]], ['ondrawfocusrect_17',['OnDrawFocusRect',['../classsw_1_1_button.html#a496b008fab7266676831e3473353537d',1,'sw::Button::OnDrawFocusRect()'],['../classsw_1_1_text_box_base.html#a89b507ceef32d379c93a60b5989b74fe',1,'sw::TextBoxBase::OnDrawFocusRect()'],['../classsw_1_1_u_i_element.html#a78d190af4c3b1768776db0ebd6d0d71a',1,'sw::UIElement::OnDrawFocusRect()']]], @@ -51,14 +51,14 @@ var searchData= ['onnchittest_48',['OnNcHitTest',['../classsw_1_1_wnd_base.html#a1445af2018a8e840a25a7487da22c51b',1,'sw::WndBase']]], ['onnotified_49',['OnNotified',['../classsw_1_1_list_view.html#aaad9cba6a7d80f3862720d2771cb28dc',1,'sw::ListView::OnNotified()'],['../classsw_1_1_tab_control.html#ac0342af02418896ed6e98f6d11125348',1,'sw::TabControl::OnNotified()'],['../classsw_1_1_wnd_base.html#a4aad533e3d37a7de43645d703dda1a84',1,'sw::WndBase::OnNotified()']]], ['onnotify_50',['OnNotify',['../classsw_1_1_list_view.html#a3d46f549079a2f75656de1e5903671cf',1,'sw::ListView::OnNotify()'],['../classsw_1_1_wnd_base.html#a191f7c32914b029dca7c93e03b4841e0',1,'sw::WndBase::OnNotify()']]], - ['onpaint_51',['OnPaint',['../classsw_1_1_panel.html#ab57a6afea25cdefeea622ff364727a8e',1,'sw::Panel::OnPaint()'],['../classsw_1_1_window.html#afa57e21216664a6fa3f9fdf04dad7a7d',1,'sw::Window::OnPaint()'],['../classsw_1_1_wnd_base.html#a029ba4be0e492f8383f2b5fe22125acb',1,'sw::WndBase::OnPaint()']]], + ['onpaint_51',['OnPaint',['../classsw_1_1_panel.html#ab57a6afea25cdefeea622ff364727a8e',1,'sw::Panel::OnPaint()'],['../classsw_1_1_splitter.html#a363276ad838de7235b53f76d767a408d',1,'sw::Splitter::OnPaint()'],['../classsw_1_1_window.html#afa57e21216664a6fa3f9fdf04dad7a7d',1,'sw::Window::OnPaint()'],['../classsw_1_1_wnd_base.html#a029ba4be0e492f8383f2b5fe22125acb',1,'sw::WndBase::OnPaint()']]], ['onremovedchild_52',['OnRemovedChild',['../classsw_1_1_tab_control.html#a1642e450b1cf606338eb85bd9f93c82c',1,'sw::TabControl::OnRemovedChild()'],['../classsw_1_1_u_i_element.html#aadedba1a9bca85555b70bc247b8ef835',1,'sw::UIElement::OnRemovedChild()']]], ['onscroll_53',['OnScroll',['../classsw_1_1_layer.html#af21620044342125a8e59671a6fb222e8',1,'sw::Layer']]], ['onselectedindexchanged_54',['OnSelectedIndexChanged',['../classsw_1_1_tab_control.html#a654688668bdf8331e27cbe4564d6cf63',1,'sw::TabControl']]], ['onselectionchanged_55',['OnSelectionChanged',['../classsw_1_1_combo_box.html#aae57315267ac472d28f9a55ac28cc902',1,'sw::ComboBox::OnSelectionChanged()'],['../classsw_1_1_items_control.html#aaf5eb0f69c26b57da81fe8a22f962ec6',1,'sw::ItemsControl::OnSelectionChanged()']]], ['onsetcursor_56',['OnSetCursor',['../classsw_1_1_u_i_element.html#a6175e146290ecff80407d4c8afa1cf05',1,'sw::UIElement::OnSetCursor()'],['../classsw_1_1_wnd_base.html#ab37c3f3ea7654eb6a0b15405196c4549',1,'sw::WndBase::OnSetCursor()']]], ['onsetfocus_57',['OnSetFocus',['../classsw_1_1_button.html#a7ef48914988a2c38835ff09dee5c5040',1,'sw::Button::OnSetFocus()'],['../classsw_1_1_u_i_element.html#a95c6eb88c9f93bb135da9ee303ada3be',1,'sw::UIElement::OnSetFocus()'],['../classsw_1_1_wnd_base.html#a4b15e8f2bcac32da4d5e540445ae201a',1,'sw::WndBase::OnSetFocus()']]], - ['onsize_58',['OnSize',['../classsw_1_1_panel.html#a655497d6bdbf760e34df1d799d89b009',1,'sw::Panel::OnSize()'],['../classsw_1_1_u_i_element.html#af4f4d3a0d23a886c0257c439821f5809',1,'sw::UIElement::OnSize()'],['../classsw_1_1_wnd_base.html#aaba3c3ea0a8d12be237ef28e44018677',1,'sw::WndBase::OnSize(Size newClientSize)']]], + ['onsize_58',['OnSize',['../classsw_1_1_hwnd_host.html#a811a6d21dd8534addfc401bb79f829f7',1,'sw::HwndHost::OnSize()'],['../classsw_1_1_panel.html#a655497d6bdbf760e34df1d799d89b009',1,'sw::Panel::OnSize()'],['../classsw_1_1_splitter.html#a961677b3a6e12fc522bdb4e7b22690c2',1,'sw::Splitter::OnSize()'],['../classsw_1_1_u_i_element.html#af4f4d3a0d23a886c0257c439821f5809',1,'sw::UIElement::OnSize()'],['../classsw_1_1_wnd_base.html#aaba3c3ea0a8d12be237ef28e44018677',1,'sw::WndBase::OnSize(Size newClientSize)']]], ['onsyschar_59',['OnSysChar',['../classsw_1_1_wnd_base.html#a515de5eb7bc6dbc8314c447a99154c6c',1,'sw::WndBase']]], ['onsysdeadchar_60',['OnSysDeadChar',['../classsw_1_1_wnd_base.html#acf4e6c0bbc8fddc9e790864e403c5c91',1,'sw::WndBase']]], ['onsyskeydown_61',['OnSysKeyDown',['../classsw_1_1_wnd_base.html#ad63e584926b894913ee1ef4c039a2f98',1,'sw::WndBase']]], diff --git a/docs/search/searchdata.js b/docs/search/searchdata.js index 50c8d449..ee6d558c 100644 --- a/docs/search/searchdata.js +++ b/docs/search/searchdata.js @@ -1,7 +1,7 @@ var indexSectionsWithContent = { 0: "_abcdefghiklmnopqrstuvwxy~", - 1: "_abcdfgiklmprstuw", + 1: "_abcdfghiklmprstuw", 2: "abcdefghilmnopqrstuvw~", 3: "abcefghilmnopqrstuvwxy", 4: "d", diff --git a/docs/search/variables_10.js b/docs/search/variables_10.js index 3dea1953..8db57bce 100644 --- a/docs/search/variables_10.js +++ b/docs/search/variables_10.js @@ -1,10 +1,10 @@ var searchData= [ ['tabstop_0',['TabStop',['../classsw_1_1_u_i_element.html#a2b54e00e1e41af2a634ad694da3ffa98',1,'sw::UIElement']]], - ['tag_1',['tag',['../classsw_1_1_menu_item.html#a71e23c18ace7346f28415ed747d80905',1,'sw::MenuItem']]], - ['tag_2',['Tag',['../classsw_1_1_u_i_element.html#a895d79a2fa53382a43b3d02dee195360',1,'sw::UIElement']]], - ['text_3',['Text',['../classsw_1_1_wnd_base.html#a9afff86d32e9b54cccc204ef29a85891',1,'sw::WndBase']]], - ['text_4',['text',['../classsw_1_1_menu_item.html#a0f67fc28cb879876a328495035031979',1,'sw::MenuItem']]], + ['tag_1',['Tag',['../classsw_1_1_u_i_element.html#a895d79a2fa53382a43b3d02dee195360',1,'sw::UIElement']]], + ['tag_2',['tag',['../classsw_1_1_menu_item.html#a71e23c18ace7346f28415ed747d80905',1,'sw::MenuItem']]], + ['text_3',['text',['../classsw_1_1_menu_item.html#a0f67fc28cb879876a328495035031979',1,'sw::MenuItem']]], + ['text_4',['Text',['../classsw_1_1_wnd_base.html#a9afff86d32e9b54cccc204ef29a85891',1,'sw::WndBase']]], ['textcolor_5',['TextColor',['../classsw_1_1_u_i_element.html#aeaf2381fdffd82bd41e90c1a2cf69022',1,'sw::UIElement']]], ['texttrimming_6',['TextTrimming',['../classsw_1_1_label.html#a967e6a7cfc9341958f362ae94c56f583',1,'sw::Label']]], ['threestate_7',['ThreeState',['../classsw_1_1_check_box.html#ac8a52241895124f970ee2878f5d00d11',1,'sw::CheckBox']]], diff --git a/docs/search/variables_13.js b/docs/search/variables_13.js index 743f3679..630113e0 100644 --- a/docs/search/variables_13.js +++ b/docs/search/variables_13.js @@ -1,8 +1,8 @@ var searchData= [ ['weight_0',['weight',['../classsw_1_1_font.html#aa5126e73aad9ba2fd6aab826bac16a5c',1,'sw::Font']]], - ['width_1',['width',['../structsw_1_1_grid_column.html#aa07dbbfe79ce8c33ebd7bffa430bf6eb',1,'sw::GridColumn::width'],['../structsw_1_1_list_view_column.html#abd8ec9f51310be92ec1ff113314e5257',1,'sw::ListViewColumn::width'],['../structsw_1_1_rect.html#ada69154ab3d734587ef9695b10144b01',1,'sw::Rect::width'],['../structsw_1_1_size.html#a22c3b210b0c48e2812604381f729d5bd',1,'sw::Size::width']]], - ['width_2',['Width',['../classsw_1_1_screen.html#a2276c1ff4a907b74517a0e12b3999c92',1,'sw::Screen::Width'],['../classsw_1_1_wnd_base.html#a445edbe5db50a5a4486ddff98e8ffbae',1,'sw::WndBase::Width']]], + ['width_1',['Width',['../classsw_1_1_screen.html#a2276c1ff4a907b74517a0e12b3999c92',1,'sw::Screen::Width'],['../classsw_1_1_wnd_base.html#a445edbe5db50a5a4486ddff98e8ffbae',1,'sw::WndBase::Width']]], + ['width_2',['width',['../structsw_1_1_grid_column.html#aa07dbbfe79ce8c33ebd7bffa430bf6eb',1,'sw::GridColumn::width'],['../structsw_1_1_list_view_column.html#abd8ec9f51310be92ec1ff113314e5257',1,'sw::ListViewColumn::width'],['../structsw_1_1_rect.html#ada69154ab3d734587ef9695b10144b01',1,'sw::Rect::width'],['../structsw_1_1_size.html#a22c3b210b0c48e2812604381f729d5bd',1,'sw::Size::width']]], ['windowcount_3',['WindowCount',['../classsw_1_1_window.html#a317c7f1dea4dd3f29d5d7c865563c310',1,'sw::Window']]], ['wparam_4',['wParam',['../structsw_1_1_proc_msg.html#a114f533462da6db1852ad4aa5485d86b',1,'sw::ProcMsg']]] ]; diff --git a/docs/search/variables_3.js b/docs/search/variables_3.js index 9aae2280..c9ab001e 100644 --- a/docs/search/variables_3.js +++ b/docs/search/variables_3.js @@ -2,8 +2,8 @@ var searchData= [ ['enabled_0',['Enabled',['../classsw_1_1_wnd_base.html#ad5e7d8d1a548315b3e709151f71766b3',1,'sw::WndBase']]], ['escapement_1',['escapement',['../classsw_1_1_font.html#a6c870ded0829330446de69e8c0994a1e',1,'sw::Font']]], - ['eventtype_2',['EventType',['../structsw_1_1_routed_event_args_of_type.html#a3fc47b03d3857d9ec7e9bb3c40a61b79',1,'sw::RoutedEventArgsOfType']]], - ['eventtype_3',['eventType',['../structsw_1_1_routed_event_args.html#a46df8118b89dcc6c494cdbded901b082',1,'sw::RoutedEventArgs']]], + ['eventtype_2',['eventType',['../structsw_1_1_routed_event_args.html#a46df8118b89dcc6c494cdbded901b082',1,'sw::RoutedEventArgs']]], + ['eventtype_3',['EventType',['../structsw_1_1_routed_event_args_of_type.html#a3fc47b03d3857d9ec7e9bb3c40a61b79',1,'sw::RoutedEventArgsOfType']]], ['exedirectory_4',['ExeDirectory',['../classsw_1_1_app.html#ab1b7352d6527e1ecad51de96e0b8d759',1,'sw::App']]], ['exepath_5',['ExePath',['../classsw_1_1_app.html#a61a6ac6c879624eb1dff7244e58c7200',1,'sw::App']]] ]; diff --git a/docs/search/variables_6.js b/docs/search/variables_6.js index adc6a18e..8adfce94 100644 --- a/docs/search/variables_6.js +++ b/docs/search/variables_6.js @@ -4,8 +4,8 @@ var searchData= ['handled_1',['handled',['../structsw_1_1_routed_event_args.html#a9fb971eec1e6ba4aee1366c3f9c20bfd',1,'sw::RoutedEventArgs']]], ['handledmsg_2',['handledMsg',['../structsw_1_1_routed_event_args.html#ac299c564c53fa039f47a06d08272d969',1,'sw::RoutedEventArgs']]], ['header_3',['header',['../structsw_1_1_list_view_column.html#a2fd382151fa269ec5f5042232cfb84f8',1,'sw::ListViewColumn']]], - ['height_4',['height',['../structsw_1_1_grid_row.html#abe71efc459295a5dbfad7bf7aaff4d4e',1,'sw::GridRow::height'],['../structsw_1_1_rect.html#afb7a0a9a12dad7756f46b2e1abdafa7c',1,'sw::Rect::height'],['../structsw_1_1_size.html#a084604eba918ac19b2f8402e330d767b',1,'sw::Size::height']]], - ['height_5',['Height',['../classsw_1_1_screen.html#a904c5ac3f5dc61d271357f22f734b921',1,'sw::Screen::Height'],['../classsw_1_1_wnd_base.html#a51fdc4b943e62bd67ffbff4a6e65de2a',1,'sw::WndBase::Height']]], + ['height_4',['Height',['../classsw_1_1_screen.html#a904c5ac3f5dc61d271357f22f734b921',1,'sw::Screen::Height'],['../classsw_1_1_wnd_base.html#a51fdc4b943e62bd67ffbff4a6e65de2a',1,'sw::WndBase::Height']]], + ['height_5',['height',['../structsw_1_1_grid_row.html#abe71efc459295a5dbfad7bf7aaff4d4e',1,'sw::GridRow::height'],['../structsw_1_1_rect.html#afb7a0a9a12dad7756f46b2e1abdafa7c',1,'sw::Rect::height'],['../structsw_1_1_size.html#a084604eba918ac19b2f8402e330d767b',1,'sw::Size::height']]], ['horizontalalignment_6',['HorizontalAlignment',['../classsw_1_1_u_i_element.html#a05b569383791dce14d9d6789e3a43d85',1,'sw::UIElement']]], ['horizontalcontentalignment_7',['HorizontalContentAlignment',['../classsw_1_1_label.html#a83b3ae20c61b09a613cc07dddc1c9179',1,'sw::Label::HorizontalContentAlignment'],['../classsw_1_1_text_box_base.html#abaa4c52632b7a8d2bdb41341fc1ab0e8',1,'sw::TextBoxBase::HorizontalContentAlignment']]], ['horizontalscrollbar_8',['HorizontalScrollBar',['../classsw_1_1_layer.html#a4bb56843061a3db9497703f16e58f4ba',1,'sw::Layer::HorizontalScrollBar'],['../classsw_1_1_text_box.html#a4fed0b73690d263fb740f09eda870fdb',1,'sw::TextBox::HorizontalScrollBar']]], diff --git a/docs/search/variables_8.js b/docs/search/variables_8.js index 71965bcf..7a578c05 100644 --- a/docs/search/variables_8.js +++ b/docs/search/variables_8.js @@ -1,7 +1,7 @@ var searchData= [ - ['lastchildfill_0',['lastChildFill',['../classsw_1_1_dock_layout.html#ae3279e6cc696c453a2f6171ca152fc47',1,'sw::DockLayout']]], - ['lastchildfill_1',['LastChildFill',['../classsw_1_1_dock_panel.html#aa3f8617a879fb8c536799beae2ad2a31',1,'sw::DockPanel']]], + ['lastchildfill_0',['LastChildFill',['../classsw_1_1_dock_panel.html#aa3f8617a879fb8c536799beae2ad2a31',1,'sw::DockPanel']]], + ['lastchildfill_1',['lastChildFill',['../classsw_1_1_dock_layout.html#ae3279e6cc696c453a2f6171ca152fc47',1,'sw::DockLayout']]], ['layout_2',['Layout',['../classsw_1_1_layer.html#accb80d7a016d5a56b1c744db4ef96059',1,'sw::Layer']]], ['layouttag_3',['LayoutTag',['../classsw_1_1_u_i_element.html#a70e870fcabb76b1d74c06d50637f4f92',1,'sw::UIElement']]], ['left_4',['Left',['../classsw_1_1_wnd_base.html#a4f0b57de9babc053c655872ed91468dd',1,'sw::WndBase']]], diff --git a/docs/search/variables_b.js b/docs/search/variables_b.js index 74115c0e..5474c431 100644 --- a/docs/search/variables_b.js +++ b/docs/search/variables_b.js @@ -1,6 +1,6 @@ var searchData= [ - ['orientation_0',['orientation',['../classsw_1_1_font.html#af31ac58928f6e0d9d9c90a95f54fd7de',1,'sw::Font::orientation'],['../classsw_1_1_stack_layout.html#aa425ef22052ca56ed1e0358374db00a5',1,'sw::StackLayout::orientation'],['../classsw_1_1_wrap_layout.html#a1ce0e6707fe1463b857889755df7ee09',1,'sw::WrapLayout::orientation']]], - ['orientation_1',['Orientation',['../classsw_1_1_stack_panel.html#affb5896d0e3e3b615bcbb285c8e03bf4',1,'sw::StackPanel::Orientation'],['../classsw_1_1_wrap_panel.html#a2b718024b1dd81f08906afd3fa18a3f7',1,'sw::WrapPanel::Orientation']]], + ['orientation_0',['Orientation',['../classsw_1_1_splitter.html#a9c922b8e13fa139978a664c1e8fab4d6',1,'sw::Splitter::Orientation'],['../classsw_1_1_stack_panel.html#affb5896d0e3e3b615bcbb285c8e03bf4',1,'sw::StackPanel::Orientation'],['../classsw_1_1_wrap_panel.html#a2b718024b1dd81f08906afd3fa18a3f7',1,'sw::WrapPanel::Orientation']]], + ['orientation_1',['orientation',['../classsw_1_1_font.html#af31ac58928f6e0d9d9c90a95f54fd7de',1,'sw::Font::orientation'],['../classsw_1_1_stack_layout.html#aa425ef22052ca56ed1e0358374db00a5',1,'sw::StackLayout::orientation'],['../classsw_1_1_wrap_layout.html#a1ce0e6707fe1463b857889755df7ee09',1,'sw::WrapLayout::orientation']]], ['outprecision_2',['outPrecision',['../classsw_1_1_font.html#aa223c3578a59a96149bd4ef989825e08',1,'sw::Font']]] ]; diff --git a/docs/search/variables_e.js b/docs/search/variables_e.js index 41546f27..054fdb08 100644 --- a/docs/search/variables_e.js +++ b/docs/search/variables_e.js @@ -5,7 +5,7 @@ var searchData= ['rect_2',['Rect',['../classsw_1_1_wnd_base.html#a7598603457217f09aae0deaad59ef063',1,'sw::WndBase']]], ['right_3',['right',['../structsw_1_1_thickness.html#a0efb5b20b89f2d86885a447b36926bd5',1,'sw::Thickness']]], ['row_4',['row',['../structsw_1_1_grid_layout_tag.html#a8411afa319d4ad7cf2d95edd5aa3434c',1,'sw::GridLayoutTag']]], - ['rows_5',['Rows',['../classsw_1_1_uniform_grid.html#a65a180db32f61dee181c0ae7e36364a6',1,'sw::UniformGrid']]], - ['rows_6',['rows',['../classsw_1_1_grid_layout.html#a5ac3f18d6079d89b414a9f0a342670ea',1,'sw::GridLayout::rows'],['../classsw_1_1_uniform_grid_layout.html#a2cde92e2a61f62efb85761f11c221390',1,'sw::UniformGridLayout::rows']]], + ['rows_5',['rows',['../classsw_1_1_grid_layout.html#a5ac3f18d6079d89b414a9f0a342670ea',1,'sw::GridLayout::rows'],['../classsw_1_1_uniform_grid_layout.html#a2cde92e2a61f62efb85761f11c221390',1,'sw::UniformGridLayout::rows']]], + ['rows_6',['Rows',['../classsw_1_1_uniform_grid.html#a65a180db32f61dee181c0ae7e36364a6',1,'sw::UniformGrid']]], ['rowspan_7',['rowSpan',['../structsw_1_1_grid_layout_tag.html#a5caf39bc6aa93afd290f09ee15f2c722',1,'sw::GridLayoutTag']]] ]; From 84c3af9787e454d1311e99453ef5c24caf5c08b9 Mon Sep 17 00:00:00 2001 From: Mzying2001 Date: Wed, 28 Feb 2024 16:50:35 +0800 Subject: [PATCH 9/9] Update sw_all --- single_header/sw_all.cpp | 132 ++++++++++++++++++++++++++++++++------- single_header/sw_all.h | 93 +++++++++++++++++++++++++++ 2 files changed, 202 insertions(+), 23 deletions(-) diff --git a/single_header/sw_all.cpp b/single_header/sw_all.cpp index 06de78a0..3a06a490 100644 --- a/single_header/sw_all.cpp +++ b/single_header/sw_all.cpp @@ -599,42 +599,45 @@ void sw::Control::ResetHandle() { HWND &refHwnd = const_cast(this->Handle.Get()); - HWND oldHwnd = refHwnd; - HWND parent = GetParent(oldHwnd); - DWORD style = (DWORD)this->GetStyle(); - DWORD exStyle = (DWORD)this->GetExtendedStyle(); - RECT rect = this->Rect.Get(); - std::wstring &text = this->GetText(); + RECT rect = this->Rect.Get(); + auto text = this->GetText().c_str(); + + HWND oldHwnd = refHwnd; + HWND hParent = GetParent(oldHwnd); + DWORD style = DWORD(GetWindowLongPtrW(oldHwnd, GWL_STYLE)); + DWORD exStyle = DWORD(GetWindowLongPtrW(oldHwnd, GWL_EXSTYLE)); wchar_t className[256]; GetClassNameW(oldHwnd, className, 256); - refHwnd = CreateWindowExW( - exStyle, // Optional window styles - className, // Window class - text.c_str(), // Window text - style, // Window style + HWND newHwnd = CreateWindowExW( + exStyle, // Optional window styles + className, // Window class + text, // Window text + style, // Window style // Size and position rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, - parent, // Parent window - NULL, // Menu - App::Instance, // Instance handle - this // Additional application data + hParent, // Parent window + NULL, // Menu + App::Instance, // Instance handle + (WndBase *)this // Additional application data ); + LONG_PTR wndproc = + SetWindowLongPtrW(oldHwnd, GWLP_WNDPROC, GetWindowLongPtrW(newHwnd, GWLP_WNDPROC)); SetWindowLongPtrW(oldHwnd, GWLP_USERDATA, (LONG_PTR)NULL); - SetWindowLongPtrW(refHwnd, GWLP_USERDATA, reinterpret_cast((WndBase *)this)); - LONG_PTR wndProc = GetWindowLongPtrW(oldHwnd, GWLP_WNDPROC); - SetWindowLongPtrW(refHwnd, GWLP_WNDPROC, wndProc); + SetWindowLongPtrW(newHwnd, GWLP_USERDATA, reinterpret_cast((WndBase *)this)); + SetWindowLongPtrW(newHwnd, GWLP_WNDPROC, wndproc); + + refHwnd = newHwnd; + DestroyWindow(oldHwnd); this->SendMessageW(WM_SETFONT, (WPARAM)this->GetFontHandle(), TRUE); - this->HandleChenged(); this->UpdateSiblingsZOrder(); - - DestroyWindow(oldHwnd); + this->HandleChenged(); } void sw::Control::HandleChenged() @@ -1761,6 +1764,32 @@ sw::GroupBox::GroupBox() this->InheritTextColor = true; } +// HwndHost.cpp + +void sw::HwndHost::InitHwndHost() +{ + if (this->_hWindowCore == NULL && !this->IsDestroyed) + this->_hWindowCore = this->BuildWindowCore(this->Handle); +} + +bool sw::HwndHost::OnSize(Size newClientSize) +{ + if (this->_hWindowCore != NULL) { + SetWindowPos(this->_hWindowCore, NULL, 0, 0, + Dip::DipToPxX(newClientSize.width), + Dip::DipToPxY(newClientSize.height), + SWP_NOACTIVATE | SWP_NOZORDER); + } + return this->StaticControl::OnSize(newClientSize); +} + +bool sw::HwndHost::OnDestroy() +{ + this->DestroyWindowCore(this->_hWindowCore); + this->_hWindowCore = NULL; + return this->StaticControl::OnDestroy(); +} + // Icon.cpp HICON sw::IconHelper::GetIconHandle(StandardIcon icon) @@ -4459,6 +4488,63 @@ void sw::Slider::OnEndTrack() this->RaiseRoutedEvent(Slider_EndTrack); } +// Splitter.cpp + +sw::Splitter::Splitter() + : Orientation( + // get + [&]() -> const sw::Orientation & { + return this->_orientation; + }, + // set + [&](const sw::Orientation &value) { + if (this->_orientation != value) { + this->_orientation = value; + value == Orientation::Horizontal + ? this->SetAlignment(HorizontalAlignment::Stretch, VerticalAlignment::Center) + : this->SetAlignment(HorizontalAlignment::Center, VerticalAlignment::Stretch); + } + }) +{ + this->Rect = sw::Rect{0, 0, 10, 10}; + this->Transparent = true; + this->SetAlignment(HorizontalAlignment::Stretch, VerticalAlignment::Center); +} + +bool sw::Splitter::OnPaint() +{ + PAINTSTRUCT ps; + + HWND hwnd = this->Handle; + HDC hdc = BeginPaint(hwnd, &ps); + + RECT rect; + GetClientRect(hwnd, &rect); + + HBRUSH hBrush = CreateSolidBrush(this->GetRealBackColor()); + FillRect(hdc, &rect, hBrush); + + if (this->_orientation == sw::Orientation::Horizontal) { + // 在中间绘制横向分隔条 + rect.top += Utils::Max(0L, (rect.bottom - rect.top) / 2 - 1); + DrawEdge(hdc, &rect, EDGE_ETCHED, BF_TOP); + } else { + // 在中间绘制纵向分隔条 + rect.left += Utils::Max(0L, (rect.right - rect.left) / 2 - 1); + DrawEdge(hdc, &rect, EDGE_ETCHED, BF_LEFT); + } + + DeleteObject(hBrush); + EndPaint(hwnd, &ps); + return true; +} + +bool sw::Splitter::OnSize(Size newClientSize) +{ + InvalidateRect(this->Handle, NULL, FALSE); + return this->UIElement::OnSize(newClientSize); +} + // StackLayout.cpp void sw::StackLayout::MeasureOverride(Size &availableSize) @@ -7142,13 +7228,13 @@ LRESULT sw::WndBase::WndProc(const ProcMsg &refMsg) case WM_MOVE: { int xPos = (int)(short)LOWORD(refMsg.lParam); // horizontal position int yPos = (int)(short)HIWORD(refMsg.lParam); // vertical position - return this->OnMove(Point(xPos, yPos)) ? 0 : this->DefaultWndProc(refMsg); + return this->OnMove(POINT{xPos, yPos}) ? 0 : this->DefaultWndProc(refMsg); } case WM_SIZE: { int width = LOWORD(refMsg.lParam); // the new width of the client area int height = HIWORD(refMsg.lParam); // the new height of the client area - return this->OnSize(Size(width, height)) ? 0 : this->DefaultWndProc(refMsg); + return this->OnSize(SIZE{width, height}) ? 0 : this->DefaultWndProc(refMsg); } case WM_SETTEXT: { diff --git a/single_header/sw_all.h b/single_header/sw_all.h index 06365d43..1a52c8d0 100644 --- a/single_header/sw_all.h +++ b/single_header/sw_all.h @@ -6635,6 +6635,56 @@ namespace sw }; } +// HwndHost.h + + +namespace sw +{ + /** + * @brief 将Win32 window托管为SimpleWindow控件 + */ + class HwndHost : public StaticControl + { + private: + /** + * @brief 托管的句柄 + */ + HWND _hWindowCore{NULL}; + + protected: + /** + * @brief 子类需要调用该函数以初始化HwndHost,该函数会调用BuildWindowCore + */ + void InitHwndHost(); + + /** + * @brief 接收到WM_SIZE时调用该函数 + * @param newClientSize 改变后的用户区尺寸 + * @return 若已处理该消息则返回true,否则返回false以调用DefaultWndProc + */ + virtual bool OnSize(Size newClientSize) override; + + /** + * @brief 接收到WM_DESTROY时调用该函数 + * @return 若已处理该消息则返回true,否则返回false以调用DefaultWndProc + */ + virtual bool OnDestroy() override; + + /** + * @brief HwndHost创建时会调用该函数,需在该函数中创建要被托管的窗口句柄,设置其父窗口并返回被托管的句柄 + * @param hParent 需要给被托管窗口句柄设置的父窗口句柄 + * @return 被托管窗口句柄 + */ + virtual HWND BuildWindowCore(HWND hParent) = 0; + + /** + * @brief HwndHost被销毁时会调用该函数来销毁被托管的窗口句柄 + * @param hwnd 被托管窗口句柄 + */ + virtual void DestroyWindowCore(HWND hwnd) = 0; + }; +} + // Label.h @@ -7277,6 +7327,49 @@ namespace sw }; } +// Splitter.h + + +namespace sw +{ + /** + * @brief 分隔条 + */ + class Splitter : public StaticControl + { + private: + /** + * @brief 记录分隔条方向 + */ + Orientation _orientation = Orientation::Horizontal; + + public: + /** + * @brief 分隔条的方向,给该属性赋值同时会改变HorizontalAlignment和VerticalAlignment属性的值 + */ + const Property Orientation; + + /** + * @brief 初始化分隔条 + */ + Splitter(); + + protected: + /** + * @brief 接收到WM_PAINT时调用该函数 + * @return 若已处理该消息则返回true,否则返回false以调用DefaultWndProc + */ + virtual bool OnPaint() override; + + /** + * @brief 接收到WM_SIZE时调用该函数 + * @param newClientSize 改变后的用户区尺寸 + * @return 若已处理该消息则返回true,否则返回false以调用DefaultWndProc + */ + virtual bool OnSize(Size newClientSize) override; + }; +} + // TextBox.h