INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "EOLE_SELECT_PICTURE class"
project: "Visual Eiffel Library"
revision: "$Revision: 1.2 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: wine
class EOLE_SELECT_PICTURE
inherit

EOLE_OBJECT_WITH_POINTER
end
creation

make
feature

make
-- Purpose:
-- Create an object
-- Params:
-- None.
-- Return Value:
-- None.
-- Notes:
-- It's a dummy constructor now.

allocate: POINTER
-- Purpose:
-- Alloc_outcate the physical memory block of nesessary size
-- (sizeof (EOLE_SELECT_PICTURE) from memory pool.
-- Params:
-- None.
-- Return Value:
-- Pointer to allocated memory block.
-- Notes:
-- None.

set_hdc_out (hdc_out: INTEGER)
-- Purpose:
-- Set the 'hdcOut' member of the corresponding
-- C++ structure to the specified SelectPicture element hdcOut
-- Params:
-- hdc_out [in]
-- hdcOut of the SelectPicture element
-- to init the corresponding field of the structure.
-- Return Value:
-- None.
-- Notes:
-- None.

set_hbmp_out (hbmp_out: INTEGER)
-- Purpose:
-- Set the 'hbmpOut' member of the corresponding
-- C++ structure to the specified SelectPicture element hbmpOut.
-- Params:
-- hbmp_out [in]
-- hbmpOut of the SelectPicture element
-- to init the corresponding field of the structure.
-- Return Value:
-- None.
-- Notes:
-- None.

get_hdc_out: INTEGER
-- Purpose:
-- Resturn the value of the 'hdcOut' member of the
-- corresponding C++ structure.
-- Params:
-- None.
-- Return Value:
-- hdc_out.
-- Notes:
-- None.

get_hbmp_out: INTEGER
-- Purpose:
-- Resturn the value of the 'hbmpOut' member of the
-- corresponding C++ structure.
-- Params:
-- None.
-- Return Value:
-- hdc_out.
-- Notes:
-- None.
end -- class EOLE_SELECT_PICTURE

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES