- indexing
- title: "Visual Eiffel Library.", "The WAPI_FINDREPLACE class contains information the operating", "system uses to initialize the system-defined Find and", "Replace dialog boxes."
- 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_FINDREPLACE
- inherit
-
WAPI_GET_POINTER
- end
- creation
- make
- feature -- Class data
-
lStructSize: INTEGER
-
hWndOwner: INTEGER
-
hInstance: INTEGER
-
Flags: BIT 32
-
lpstrFindWhat: POINTER
-
lpstrReplaceWith: POINTER
-
wFindWhatLenL: BIT 8
-
wFindWhatLenH: BIT 8
-
wReplaceWithLenL: BIT 8
-
wReplaceWithLenH: BIT 8
-
lCustData: INTEGER
-
lpfnHook: POINTER
-
lpstrTemplateName: POINTER
- feature -- Creation
-
make
-
- ensure
-
correct_set:
lstructsize = 40
- feature -- Access
-
ptr: POINTER
- feature -- Change
-
set_hWndOwner (i: INTEGER)
-
- ensure
-
correct_set:
hwndowner = i
-
set_hInstance (i: INTEGER)
-
- ensure
-
correct_set:
hinstance = i
-
set_Flags (b: BIT 32)
-
- ensure
-
correct_set:
flags = b
-
set_lpstrFindWhat (p: POINTER)
-
- require
-
correct_p:
p /= default_pointer
-
- ensure
-
correct_set:
lpstrfindwhat = p
-
set_lpstrReplaceWith (p: POINTER)
-
- ensure
-
correct_set:
lpstrreplacewith = p
-
set_wFindWhatLen (i: INTEGER)
-
set_wReplaceWithLen (i: INTEGER)
-
set_lCustData (i: INTEGER)
-
- ensure
-
correct_set:
lcustdata = i
-
set_lpfnHook (p: POINTER)
-
- ensure
-
correct_set:
lpfnhook = p
-
set_lpstrTemplateName (p: POINTER)
-
- ensure
-
correct_set:
lpstrtemplatename = p
end -- class WAPI_FINDREPLACE