INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

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

WAPI_ERROR_SERVER
end
feature -- Access

CreateStatusWindow (style: BIT 32; lpsztext: POINTER; hwndparent: INTEGER; wid: INTEGER): INTEGER
-- The `CreateStatusWindow' function creates a status window,
-- which is typically used to display the status of an application.
-- The window generally appears at the bottom of the parent window,
-- and it contains the specified text.
require
correct_hwndparent: hwndparent /= null_

DrawStatusText (hdc: INTEGER; lprc: WAPI_RECT; psztext: STRING; uflags: BIT 32)
-- The `DrawStatusText' function draws the specified text in the
-- style of a status window with borders.
require
correct_lprc: lprc /= void
correct_psztext: psztext /= void
end -- class WAPI_STATUSBAR_FUNCTIONS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES