soui 5.0.0.1
Soui5 Doc
 
Loading...
Searching...
No Matches
SFrame.cpp
1#include <souistd.h>
2#include <control/SFrame.h>
3
4SNSBEGIN
5
7{
8}
9
11{
12}
13
14SWND SFrame::SwndFromPoint(CPoint &pt, BOOL bIncludeMsgTransparent) const
15{
16 SWND ret = __baseCls::SwndFromPoint(pt, bIncludeMsgTransparent);
17 if (ret == m_swnd)
18 ret = 0;
19 return ret;
20}
21
22BOOL SFrame::IsFocusable(THIS) const
23{
24 return FALSE;
25}
26
27SNSEND
BOOL IsFocusable() SCONST OVERRIDE
Check if the control is focusable.
Definition SFrame.cpp:22
SFrame(void)
Constructor.
Definition SFrame.cpp:6
SWND SwndFromPoint(CPoint &pt, BOOL bIncludeMsgTransparent) const override
Find the window at a given point.
Definition SFrame.cpp:14
~SFrame(void)
Destructor.
Definition SFrame.cpp:10
SWND m_swnd
Member variables representing various properties of the window.
Definition SWnd.h:2577