INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Visual Eiffel Library.", "Win32 API: Multiple Document Interface Functions"
project: "Visual Eiffel Win32 Library"
revision: "$Revision: 1.1 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: winlib
class WAPI_MDI_FUNCTIONS
inherit

WAPI_ERROR_SERVER
end
feature -- Access

DefFrameProc (hwndframe, hwndmdiclient, umsg, wparam, lparam: INTEGER): INTEGER
-- The 'DefFrameProc' function provides default processing for any window
-- messages that the window procedure of a multiple document interface
-- (MDI) frame window does not process. All window messages that are not
-- explicitly processed by the window procedure must be passed to the
-- 'DefFrameProc' function, not the 'DefWindowProc' function.

DefMDIChildProc (hwndchild, umsg, wparam, lparam: INTEGER): INTEGER
-- The 'DefMDIChildProc' function provides default processing for
-- any window message that the window procedure of a multiple document
-- interface (MDI) child window does not process. A window message
-- not processed by the window procedure must be passed to the
-- 'DefMDIChildProc' function, not to the 'DefWindowProc' function.

TranslateMDISysAccel (hwndclient: INTEGER; lpmsg: WAPI_MSG): BOOLEAN
-- The `TranslateMDISysAccel' function processes accelerator
-- keystrokes for System menu commands of the multiple document
-- interface (MDI) child windows associated with the specified
-- MDI client window. The function translates WM_KEYUP and WM_KEYDOWN
-- messages to WM_SYSCOMMAND messages and sends them to the
-- appropriate MDI child windows.
end -- class WAPI_MDI_FUNCTIONS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES