Home
last modified time | relevance | path

Searched refs:EM_POSFROMCHAR (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/Framework/src/win32/
H A DRichTextEdit.cpp32 SendMessage(m_hWnd, EM_POSFROMCHAR, reinterpret_cast<WPARAM>(&Point), nChar); in GetPositionFromChar()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/msw/
H A Dtextctrl.cpp1614 ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&ptReal, pos); in HitTest()
1619 LRESULT lRc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
1661 LRESULT rc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&pt, pos); in DoPositionToCoords()
1668 LRESULT rc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); in DoPositionToCoords()
1693 rc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos - 1, 0); in DoPositionToCoords()
1711 LRESULT coords0 = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, 0, 0); in DoPositionToCoords()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/src/msw/
H A Dtextctrl.cpp1614 ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&ptReal, pos); in HitTest()
1619 LRESULT lRc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
1661 LRESULT rc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&pt, pos); in DoPositionToCoords()
1668 LRESULT rc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); in DoPositionToCoords()
1693 rc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos - 1, 0); in DoPositionToCoords()
1711 LRESULT coords0 = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, 0, 0); in DoPositionToCoords()
/dports/games/dhewm3/dhewm3-1.5.1/neo/tools/debugger/
H A DDebuggerWindow.cpp334 SendMessage ( wnd, EM_POSFROMCHAR, (WPARAM)&pos, start ); in ScriptWndProc()
337 SendMessage ( wnd, EM_POSFROMCHAR, (WPARAM)&pos, end ); in ScriptWndProc()
339 SendMessage ( wnd, EM_POSFROMCHAR, (WPARAM)&pos, SendMessage ( wnd, EM_LINEINDEX, 0, 0 ) ); in ScriptWndProc()
341 SendMessage ( wnd, EM_POSFROMCHAR, (WPARAM)&pos, SendMessage ( wnd, EM_LINEINDEX, 1, 0 ) ); in ScriptWndProc()
409 SendMessage ( window->mWndScript, EM_POSFROMCHAR, (WPARAM)&pos, c ); in MarginWndProc()
423 SendMessage ( window->mWndScript, EM_POSFROMCHAR, (WPARAM)&pos, c ); in MarginWndProc()
436 SendMessage ( window->mWndScript, EM_POSFROMCHAR, (WPARAM)&pos, c ); in MarginWndProc()
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/msw/
H A Dtextctrl.cpp1726 ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&ptReal, pos); in HitTest()
1731 LRESULT lRc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
1773 LRESULT rc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&pt, pos); in DoPositionToCoords()
1780 LRESULT rc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); in DoPositionToCoords()
1805 rc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos - 1, 0); in DoPositionToCoords()
1823 LRESULT coords0 = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, 0, 0); in DoPositionToCoords()
/dports/games/renpy/renpy-7.4.11-sdk/launcher/game/
H A DEasyDialogsWin.py58 EM_POSFROMCHAR = 214 variable
248 … = HIWORD(user32.SendMessageA(editBox, EM_POSFROMCHAR, 3, 0)) - HIWORD(user32.SendMessageA(editBox…
/dports/lang/fpc-source/fpc-3.2.2/packages/winunits-base/src/
H A Drichedit.pp44 //#ifndef EM_POSFROMCHAR
45 EM_POSFROMCHAR = (WM_USER + 38);
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Drichedit.h60 #ifndef EM_POSFROMCHAR
61 #define EM_POSFROMCHAR (WM_USER + 38) macro
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Drichedit.h60 #ifndef EM_POSFROMCHAR
61 #define EM_POSFROMCHAR (WM_USER + 38) macro
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/
H A DText.java1032 long caretPos = OS.SendMessage (handle, OS.EM_POSFROMCHAR, position, 0); in getCaretLocationInPixels()
1052 caretPos = OS.SendMessage (handle, OS.EM_POSFROMCHAR, position, 0); in getCaretLocationInPixels()
1102 long endPos = OS.SendMessage (handle, OS.EM_POSFROMCHAR, end [0], 0); in getCaretPosition()
1104 long startPos = OS.SendMessage (handle, OS.EM_POSFROMCHAR, start [0], 0); in getCaretPosition()
H A DCombo.java937 long caretPos = OS.SendMessage (hwndText, OS.EM_POSFROMCHAR, position, 0); in getCaretLocationInPixels()
957 caretPos = OS.SendMessage (hwndText, OS.EM_POSFROMCHAR, position, 0); in getCaretLocationInPixels()
1011 long endPos = OS.SendMessage (hwndText, OS.EM_POSFROMCHAR, end [0], 0); in getCaretPosition()
1013 long startPos = OS.SendMessage (hwndText, OS.EM_POSFROMCHAR, start [0], 0); in getCaretPosition()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/src/msw/wince/
H A Dtextctrlce.cpp738 LRESULT lRc = ::SendMessage(GetBuddyHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/src/msw/wince/
H A Dtextctrlce.cpp738 LRESULT lRc = ::SendMessage(GetBuddyHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/src/msw/wince/
H A Dtextctrlce.cpp738 LRESULT lRc = ::SendMessage(GetBuddyHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/src/msw/wince/
H A Dtextctrlce.cpp738 LRESULT lRc = ::SendMessage(GetBuddyHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/src/msw/wince/
H A Dtextctrlce.cpp731 LRESULT lRc = ::SendMessage(GetBuddyHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/msw/wince/
H A Dtextctrlce.cpp731 LRESULT lRc = ::SendMessage(GetBuddyHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
/dports/games/scorched3d/scorched-dep-win32/include/wx/wx/msw/gnuwin32/
H A Dwinresrc.h1043 #define EM_POSFROMCHAR 0x00D6 macro
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/src/msw/
H A Dtextctrl.cpp1619 ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&ptReal, pos); in HitTest()
1624 LRESULT lRc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/src/msw/
H A Dtextctrl.cpp1619 ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&ptReal, pos); in HitTest()
1624 LRESULT lRc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/src/msw/
H A Dtextctrl.cpp1619 ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&ptReal, pos); in HitTest()
1624 LRESULT lRc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/src/msw/
H A Dtextctrl.cpp1619 ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&ptReal, pos); in HitTest()
1624 LRESULT lRc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); in HitTest()
/dports/graphics/bonzomatic/Bonzomatic-2021-03-07/data/windows/
H A Dresource.h939 #define EM_POSFROMCHAR 0x00D6 macro
/dports/games/bzflag/bzflag-2.4.22/MSVC/
H A Dresource.h939 #define EM_POSFROMCHAR 0x00D6 macro
/dports/games/bzflag-server/bzflag-2.4.22/MSVC/
H A Dresource.h939 #define EM_POSFROMCHAR 0x00D6 macro

12345678910>>...12