INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Device context used during a Wm_paint message. ", "WEL: library of reusable components for Eiffel. ", "Based on WEL library for ISE Eiffel, used with permission. "
project: "Windows Eiffel Library"
copyright: "(c) 1986-1997 Interactive Software Engineering Inc. ", "Modifications and extensions: ", "(c) 1997 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
cluster: wel
class WEL_PAINT_DC
inherit

WEL_DISPLAY_DC
end
creation

make
feature {NONE}-- Initialization

make (a_window: WEL_WINDOW)
-- Makes a DC associated with `a_window'
require
a_window_not_void: a_window /= void
a_window_exists: a_window.exists
ensure
window_set: window = a_window
feature -- Access

window: WEL_WINDOW

paint_struct: WEL_PAINT_STRUCT
feature -- Basic operations

get
-- Get the device context
require
window_not_void: window /= void
window_exist: window.exists

release
-- Release the device context
require
window_not_void: window /= void
window_exist: window.exists
end -- class WEL_PAINT_DC

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES