FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cefpython/src/window_utils_win.pyx at master · linesight/cefpython · GitHub
linesight
/
cefpython
Public
forked from
cztomczak/cefpython
Notifications
You must be signed in to change notification settings
Fork
2
Star
11
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cefpython
/
src
/
window_utils_win.pyx
Copy path
More file actions
More file actions
Latest commit
History
History
History
153 lines (123 loc) · 5.63 KB
Breadcrumbs
cefpython
/
src
/
window_utils_win.pyx
Copy path
File metadata and controls
153 lines (123 loc) · 5.63 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#
Copyright (c) 2012 CEF Python, see the Authors file.
#
All rights reserved. Licensed under BSD 3-clause license.
#
Project website: https://github.com/cztomczak/cefpython
include
"
cefpython.pyx
"
class
WindowUtils
(
object
):
@
classmethod
def
OnSetFocus
(
cls
, WindowHandle
windowHandle
, long
msg
, long
wparam
,
long
lparam
):
cdef PyBrowser pyBrowser
=
GetBrowserByWindowHandle(windowHandle)
if
not
pyBrowser:
return
0
pyBrowser.SetFocus(
True
)
return
0
@
classmethod
def
OnSize
(
cls
, WindowHandle
windowHandle
, long
msg
, long
wparam
,
long
lparam
):
cdef PyBrowser pyBrowser
=
GetBrowserByWindowHandle(windowHandle)
if
not
pyBrowser:
return
DefWindowProc(
<
HWND
>
windowHandle, msg, wparam, lparam)
cdef HWND innerHwnd
=
<
HWND
>
pyBrowser.GetWindowHandle()
cdef RECT rect2
GetClientRect(
<
HWND
>
windowHandle,
&
rect2)
cdef HDWP hdwp
=
BeginDeferWindowPos(
1
)
hdwp
=
DeferWindowPos(hdwp, innerHwnd,
NULL
,
rect2.left, rect2.top,
rect2.right
-
rect2.left,
rect2.bottom
-
rect2.top,
SWP_NOZORDER)
EndDeferWindowPos(hdwp)
return
DefWindowProc(
<
HWND
>
windowHandle, msg, wparam, lparam)
@
classmethod
def
OnEraseBackground
(
cls
, WindowHandle
windowHandle
, long
msg
,
long
wparam
, long
lparam
):
cdef PyBrowser pyBrowser
=
GetBrowserByWindowHandle(windowHandle)
if
not
pyBrowser:
return
DefWindowProc(
<
HWND
>
windowHandle, msg, wparam, lparam)
#
Dont erase the background if the browser window has been loaded,
#
this avoids flashing.
if
pyBrowser.GetWindowHandle():
return
0
return
DefWindowProc(
<
HWND
>
windowHandle, msg, wparam, lparam)
@
classmethod
def
SetTitle
(
cls
, PyBrowser
pyBrowser
, str
pyTitle
):
#
Each browser window should have a title (Issue 3).
#
When popup is created, the window that sits in taskbar
#
has no title.
if
not
pyTitle:
return
cdef WindowHandle windowHandle
if
pyBrowser.GetUserData(
"
__outerWindowHandle
"
):
windowHandle
=
<
WindowHandle
>
\
pyBrowser.GetUserData(
"
__outerWindowHandle
"
)
else
:
windowHandle
=
pyBrowser.GetWindowHandle()
assert
windowHandle, (
"
WindowUtils.SetTitle() failed: windowHandle is empty
"
)
#
Get window title.
cdef
int
sizeOfTitle
=
100
cdef wchar_t
*
widecharTitle
=
(
<
wchar_t
*
>
calloc(sizeOfTitle, wchar_t_size))
GetWindowTextW(
<
HWND
>
windowHandle, widecharTitle, sizeOfTitle)
cdef
str
currentTitle
=
WidecharToPyString(widecharTitle)
free(widecharTitle)
#
Must keep alive while c_str() is passed.
cdef CefString cefTitle
PyToCefString(pyTitle, cefTitle)
if
pyBrowser.GetUserData(
"
__outerWindowHandle
"
):
if
not
currentTitle:
SetWindowTextW(
<
HWND
>
windowHandle, cefTitle.ToWString().c_str())
else
:
#
For independent popups we always change title to what page
#
is displayed currently.
SetWindowTextW(
<
HWND
>
windowHandle, cefTitle.ToWString().c_str())
@
classmethod
def
SetIcon
(
cls
, PyBrowser
pyBrowser
, py_string
icon
=
"
inherit
"
):
#
`icon` parameter is not implemented.
#
Popup window inherits icon from the main window.
if
pyBrowser.GetUserData(
"
__outerWindowHandle
"
):
return
None
windowHandle
=
pyBrowser.GetWindowHandle()
assert
windowHandle, (
"
WindowUtils.SetIcon() failed: windowHandle is empty
"
)
iconBig
=
SendMessage(
<
HWND
>
windowHandle, WM_GETICON, ICON_BIG,
0
)
iconSmall
=
SendMessage(
<
HWND
>
windowHandle, WM_GETICON, ICON_SMALL,
0
)
cdef WindowHandle parentWindowHandle
if
not
iconBig
and
not
iconSmall:
parentWindowHandle
=
pyBrowser.GetOpenerWindowHandle()
parentIconBig
=
SendMessage(
<
HWND
>
parentWindowHandle, WM_GETICON, ICON_BIG,
0
)
parentIconSmall
=
SendMessage(
<
HWND
>
parentWindowHandle, WM_GETICON, ICON_SMALL,
0
)
#
If parent is main application window, then
#
GetOpenerWindowHandle() returned innerWindowHandle
#
of the parent window, try again.
if
not
parentIconBig
and
not
parentIconSmall:
parentWindowHandle
=
<
uintptr_t
>
GetParent(
<
HWND
>
parentWindowHandle)
Debug(
"
WindowUtils.SetIcon(): popup inherits icon from
"
"
parent window:
%s
"
%
parentWindowHandle)
parentIconBig
=
SendMessage(
<
HWND
>
parentWindowHandle, WM_GETICON, ICON_BIG,
0
)
parentIconSmall
=
SendMessage(
<
HWND
>
parentWindowHandle, WM_GETICON, ICON_SMALL,
0
)
if
parentIconBig:
SendMessage(
<
HWND
>
windowHandle, WM_SETICON,
ICON_BIG, parentIconBig)
if
parentIconSmall:
SendMessage(
<
HWND
>
windowHandle, WM_SETICON,
ICON_SMALL, parentIconSmall)
@
classmethod
def
GetParentHandle
(
cls
, WindowHandle
windowHandle
):
return
<
WindowHandle
>
GetParent(
<
HWND
>
windowHandle)
@
classmethod
def
IsWindowHandle
(
cls
, WindowHandle
windowHandle
):
IF
UNAME_SYSNAME
==
"
Windows
"
:
return
bool
(IsWindow(
<
HWND
>
windowHandle))
ELSE
:
return
False
@
classmethod
def
InstallX11ErrorHandlers
(
cls
):
pass
Back
|
FazBrowse Home
|
New Git URL