INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Visual Eiffel Library.", "The WAPI_BITMAP class defines the type, width, height,", "color format, and bit values of a bitmap."
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_BITMAP
inherit

WAPI_GET_POINTER
end
feature -- Class data

bmType: INTEGER

bmWidth: INTEGER

bmHeight: INTEGER

bmWidthBytes: INTEGER

bmPlanes: INTEGER

bmBitsPixel: INTEGER

bmBits: POINTER
feature -- Access

ptr: POINTER
feature -- Change

set_bmType (i: INTEGER)
ensure
correct_set: bmtype = i

set_bmWidth (i: INTEGER)
ensure
correct_set: bmwidth = i

set_bmHeight (i: INTEGER)
ensure
correct_set: bmheight = i

set_bmWidthBytes (i: INTEGER)
ensure
correct_set: bmwidthbytes = i

set_bmPlanes (i: INTEGER)
ensure
correct_set: bmplanes = i

set_bmBitsPixel (i: INTEGER)
ensure
correct_set: bmbitspixel = i

set_bmBits (p: POINTER)
ensure
correct_set: bmbits = p
end -- class WAPI_BITMAP

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES