Scrolling updates
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13207 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
c914e99ed5
commit
f9efbe3a98
@ -398,6 +398,15 @@ public:
|
|||||||
,WXHWND hWnd
|
,WXHWND hWnd
|
||||||
);
|
);
|
||||||
|
|
||||||
|
bool IsMouseInWindow(void) const;
|
||||||
|
bool OS2GetCreateWindowCoords( const wxPoint& rPos
|
||||||
|
,const wxSize& rSize
|
||||||
|
,int& rnX
|
||||||
|
,int& rnY
|
||||||
|
,int& rnWidth
|
||||||
|
,int& rnHeight
|
||||||
|
) const;
|
||||||
|
|
||||||
// Window procedure
|
// Window procedure
|
||||||
virtual MRESULT OS2WindowProc( WXUINT uMsg
|
virtual MRESULT OS2WindowProc( WXUINT uMsg
|
||||||
,WXWPARAM wParam
|
,WXWPARAM wParam
|
||||||
|
@ -332,7 +332,7 @@ bool wxApp::RegisterWindowClasses(
|
|||||||
if (!::WinRegisterClass( vHab
|
if (!::WinRegisterClass( vHab
|
||||||
,wxFrameClassName
|
,wxFrameClassName
|
||||||
,wxFrameWndProc
|
,wxFrameWndProc
|
||||||
,CS_SIZEREDRAW | CS_SYNCPAINT | CS_CLIPCHILDREN
|
,CS_SIZEREDRAW | CS_SYNCPAINT
|
||||||
,sizeof(ULONG)
|
,sizeof(ULONG)
|
||||||
))
|
))
|
||||||
{
|
{
|
||||||
|
@ -1802,6 +1802,26 @@ void wxWindowOS2::GetTextExtent(
|
|||||||
::WinReleasePS(hPS);
|
::WinReleasePS(hPS);
|
||||||
} // end of wxWindow::GetTextExtent
|
} // end of wxWindow::GetTextExtent
|
||||||
|
|
||||||
|
bool wxWindowOS2::IsMouseInWindow() const
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// Get the mouse position
|
||||||
|
POINTL vPt;
|
||||||
|
|
||||||
|
::WinQueryPointerPos(HWND_DESKTOP, &vPt);
|
||||||
|
|
||||||
|
//
|
||||||
|
// Find the window which currently has the cursor and go up the window
|
||||||
|
// chain until we find this window - or exhaust it
|
||||||
|
//
|
||||||
|
HWND hWnd = ::WinWindowFromPoint(HWND_DESKTOP, &vPt, TRUE);
|
||||||
|
|
||||||
|
while (hWnd && (hWnd != GetHwnd()))
|
||||||
|
hWnd = ::WinQueryWindow(hWnd, QW_PARENT);
|
||||||
|
|
||||||
|
return hWnd != NULL;
|
||||||
|
} // end of wxWindowOS2::IsMouseInWindow
|
||||||
|
|
||||||
#if wxUSE_CARET && WXWIN_COMPATIBILITY
|
#if wxUSE_CARET && WXWIN_COMPATIBILITY
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
// Caret manipulation
|
// Caret manipulation
|
||||||
@ -2775,6 +2795,46 @@ void wxWindowOS2::OS2DetachWindowMenu()
|
|||||||
#endif // __WXUNIVERSAL__
|
#endif // __WXUNIVERSAL__
|
||||||
} // end of wxWindowOS2::OS2DetachWindowMenu
|
} // end of wxWindowOS2::OS2DetachWindowMenu
|
||||||
|
|
||||||
|
bool wxWindowOS2::OS2GetCreateWindowCoords(
|
||||||
|
const wxPoint& rPos
|
||||||
|
, const wxSize& rSize
|
||||||
|
, int& rnX
|
||||||
|
, int& rnY
|
||||||
|
, int& rnWidth
|
||||||
|
, int& rnHeight
|
||||||
|
) const
|
||||||
|
{
|
||||||
|
bool bNonDefault = FALSE;
|
||||||
|
|
||||||
|
if (rPos.x == -1)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// If set x to CW_USEDEFAULT, y parameter is ignored anyhow so we can
|
||||||
|
// just as well set it to CW_USEDEFAULT as well
|
||||||
|
rnX = rnY = CW_USEDEFAULT;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
rnX = rPos.x;
|
||||||
|
rnY = rPos.y == -1 ? CW_USEDEFAULT : rPos.y;
|
||||||
|
bNonDefault = TRUE;
|
||||||
|
}
|
||||||
|
if (rSize.x == -1)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// As abobe, h is not used at all in this case anyhow
|
||||||
|
//
|
||||||
|
rnWidth = rnHeight = CW_USEDEFAULT;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
rnWidth = rSize.x;
|
||||||
|
rnHeight = rSize.y == -1 ? CW_USEDEFAULT : rSize.y;
|
||||||
|
bNonDefault = TRUE;
|
||||||
|
}
|
||||||
|
return bNonDefault;
|
||||||
|
} // end of wxWindowOS2::OS2GetCreateWindowCoords
|
||||||
|
|
||||||
bool wxWindowOS2::OS2Create(
|
bool wxWindowOS2::OS2Create(
|
||||||
WXHWND hParent
|
WXHWND hParent
|
||||||
, PSZ zClass
|
, PSZ zClass
|
||||||
|
@ -4,7 +4,7 @@ DATA MULTIPLE NONSHARED READWRITE LOADONCALL
|
|||||||
CODE LOADONCALL
|
CODE LOADONCALL
|
||||||
|
|
||||||
EXPORTS
|
EXPORTS
|
||||||
;From library: H:\Dev\Wx2\WxWindows\lib\wx.lib
|
;From library: F:\DEV\WX2\WXWINDOWS\LIB\WX.lib
|
||||||
;From object file: dummy.cpp
|
;From object file: dummy.cpp
|
||||||
;PUBDEFs (Symbols available from object file):
|
;PUBDEFs (Symbols available from object file):
|
||||||
wxDummyChar
|
wxDummyChar
|
||||||
@ -1733,7 +1733,7 @@ EXPORTS
|
|||||||
wxEVT_NC_LEFT_DCLICK
|
wxEVT_NC_LEFT_DCLICK
|
||||||
wxEVT_INIT_DIALOG
|
wxEVT_INIT_DIALOG
|
||||||
wxEVT_COMMAND_SET_FOCUS
|
wxEVT_COMMAND_SET_FOCUS
|
||||||
;From object file: H:\DEV\WX2\WXWINDOWS\src\common\extended.c
|
;From object file: F:\DEV\WX2\WXWINDOWS\src\common\extended.c
|
||||||
;PUBDEFs (Symbols available from object file):
|
;PUBDEFs (Symbols available from object file):
|
||||||
ConvertToIeeeExtended
|
ConvertToIeeeExtended
|
||||||
ConvertFromIeeeExtended
|
ConvertFromIeeeExtended
|
||||||
@ -2172,8 +2172,6 @@ EXPORTS
|
|||||||
New__10wxFontBaseFRC16wxNativeFontInfo
|
New__10wxFontBaseFRC16wxNativeFontInfo
|
||||||
;wxFontBase::New(const wxString&)
|
;wxFontBase::New(const wxString&)
|
||||||
New__10wxFontBaseFRC8wxString
|
New__10wxFontBaseFRC8wxString
|
||||||
;wxNativeFontInfo::FromString(const wxString&)
|
|
||||||
FromString__16wxNativeFontInfoFRC8wxString
|
|
||||||
;wxFont::operator=(const wxFont&)
|
;wxFont::operator=(const wxFont&)
|
||||||
__as__6wxFontFRC6wxFont
|
__as__6wxFontFRC6wxFont
|
||||||
;wxFontBase::GetNativeFontInfoDesc() const
|
;wxFontBase::GetNativeFontInfoDesc() const
|
||||||
@ -2182,17 +2180,21 @@ EXPORTS
|
|||||||
GetWeightString__10wxFontBaseCFv
|
GetWeightString__10wxFontBaseCFv
|
||||||
;wxFontBase::GetStyleString() const
|
;wxFontBase::GetStyleString() const
|
||||||
GetStyleString__10wxFontBaseCFv
|
GetStyleString__10wxFontBaseCFv
|
||||||
|
;wxFontBase::GetNativeFontInfoUserDesc() const
|
||||||
|
GetNativeFontInfoUserDesc__10wxFontBaseCFv
|
||||||
;wxFontBase::SetNativeFontInfo(const wxNativeFontInfo&)
|
;wxFontBase::SetNativeFontInfo(const wxNativeFontInfo&)
|
||||||
SetNativeFontInfo__10wxFontBaseFRC16wxNativeFontInfo
|
SetNativeFontInfo__10wxFontBaseFRC16wxNativeFontInfo
|
||||||
|
;wxFontBase::SetNativeFontInfoUserDesc(const wxString&)
|
||||||
|
SetNativeFontInfoUserDesc__10wxFontBaseFRC8wxString
|
||||||
;wxFontBase::ms_encodingDefault
|
;wxFontBase::ms_encodingDefault
|
||||||
ms_encodingDefault__10wxFontBase
|
ms_encodingDefault__10wxFontBase
|
||||||
|
;wxFontBase::SetNativeFontInfo(const wxString&)
|
||||||
|
SetNativeFontInfo__10wxFontBaseFRC8wxString
|
||||||
;wxFontBase::operator==(const wxFont&) const
|
;wxFontBase::operator==(const wxFont&) const
|
||||||
__eq__10wxFontBaseCFRC6wxFont
|
__eq__10wxFontBaseCFRC6wxFont
|
||||||
__vft10wxFontBase8wxObject
|
__vft10wxFontBase8wxObject
|
||||||
;wxFontBase::operator!=(const wxFont&) const
|
;wxFontBase::operator!=(const wxFont&) const
|
||||||
__ne__10wxFontBaseCFRC6wxFont
|
__ne__10wxFontBaseCFRC6wxFont
|
||||||
;wxNativeFontInfo::ToString() const
|
|
||||||
ToString__16wxNativeFontInfoCFv
|
|
||||||
;wxFontBase::GetFamilyString() const
|
;wxFontBase::GetFamilyString() const
|
||||||
GetFamilyString__10wxFontBaseCFv
|
GetFamilyString__10wxFontBaseCFv
|
||||||
;wxFontBase::New(int,int,int,int,unsigned long,const wxString&,wxFontEncoding)
|
;wxFontBase::New(int,int,int,int,unsigned long,const wxString&,wxFontEncoding)
|
||||||
@ -5577,7 +5579,7 @@ EXPORTS
|
|||||||
Read32__17wxTextInputStreamFv
|
Read32__17wxTextInputStreamFv
|
||||||
;wxTextInputStream::SkipIfEndOfLine(char)
|
;wxTextInputStream::SkipIfEndOfLine(char)
|
||||||
SkipIfEndOfLine__17wxTextInputStreamFc
|
SkipIfEndOfLine__17wxTextInputStreamFc
|
||||||
;From object file: H:\DEV\WX2\WXWINDOWS\src\common\unzip.c
|
;From object file: F:\DEV\WX2\WXWINDOWS\src\common\unzip.c
|
||||||
;PUBDEFs (Symbols available from object file):
|
;PUBDEFs (Symbols available from object file):
|
||||||
unzReadCurrentFile
|
unzReadCurrentFile
|
||||||
unzGetCurrentFileInfo
|
unzGetCurrentFileInfo
|
||||||
|
Loading…
Reference in New Issue
Block a user