#include <user32.h>
#include <wine/debug.h>
Go to the source code of this file.
Defines |
| #define | MAX_WINDOWS 120 |
Functions |
| | WINE_DEFAULT_DEBUG_CHANNEL (user32) |
| void | ResizeAndCenter (HWND hwnd, int width, int height) |
| void | MakeWindowActive (HWND hwnd) |
| void | CompleteSwitch (BOOL doSwitch) |
| BOOL CALLBACK | EnumerateCallback (HWND window, LPARAM lParam) |
| void | EnumWindowsZOrder (WNDENUMPROC callback, LPARAM lParam) |
| void | ProcessMouseMessage (UINT message, LPARAM lParam) |
| void | OnPaint (HWND hWnd) |
| DWORD | CreateSwitcherWindow (HINSTANCE hInstance) |
| DWORD | GetDialogFont () |
| void | PrepareWindow () |
| void | ProcessHotKey () |
| LRESULT WINAPI | DoAppSwitch (WPARAM wParam, LPARAM lParam) |
| VOID | DestroyAppWindows () |
| LRESULT WINAPI | SwitchWndProc_common (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL unicode) |
| LRESULT WINAPI | SwitchWndProcA (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) |
| LRESULT WINAPI | SwitchWndProcW (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) |
Variables |
| HWND | switchdialog |
| HFONT | dialogFont |
| int | selectedWindow = 0 |
| BOOL | isOpen = FALSE |
| int | fontHeight = 0 |
| WCHAR | windowText [1024] |
| HWND | windowList [MAX_WINDOWS] |
| HICON | iconList [MAX_WINDOWS] |
| int | windowCount = 0 |
| int | cxBorder |
| int | cyBorder |
| int | nItems |
| int | nCols |
| int | nRows |
| int | itemsW |
| int | itemsH |
| int | totalW |
| int | totalH |
| int | xOffset |
| int | yOffset |
| POINT | pt |