mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
New appearance mgr support. This appears (no pun intended) to have some problems that I'll fix tonight, so don't check it out.
This commit is contained in:
parent
09ac088152
commit
d6bc4e7fc0
3 changed files with 631 additions and 1 deletions
|
@ -40,12 +40,24 @@ class MyScanner(Scanner):
|
|||
|
||||
def makeblacklistnames(self):
|
||||
return [
|
||||
"GetThemeFont", # Funny stringbuffer in/out parameter, I think...
|
||||
]
|
||||
|
||||
def makeblacklisttypes(self):
|
||||
return [
|
||||
"MenuTitleDrawingUPP",
|
||||
"MenuItemDrawingUPP",
|
||||
"ThemeIteratorUPP",
|
||||
"ThemeTabTitleDrawUPP",
|
||||
"ThemeEraseUPP",
|
||||
"ThemeButtonDrawUPP",
|
||||
"WindowTitleDrawingUPP",
|
||||
"ProcessSerialNumber_ptr", # Too much work for now.
|
||||
"ThemeTrackDrawInfo_ptr", # Too much work
|
||||
"ThemeButtonDrawInfo_ptr", # ditto
|
||||
"ThemeWindowMetrics_ptr", # ditto
|
||||
"ThemeDrawingState", # This is an opaque pointer, so it should be simple. Later.
|
||||
"Collection", # No interface to collection mgr yet.
|
||||
]
|
||||
|
||||
def makerepairinstructions(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue