moved wizard under tools/estudio_wizard

This commit is contained in:
2015-03-05 16:01:45 +01:00
parent b26504b4a1
commit f81e5251e8
64 changed files with 0 additions and 0 deletions
@@ -0,0 +1,49 @@
note
description: "Summary description for {CONSOLE_WIZARD_PAGE}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
CONSOLE_WIZARD_PAGE
inherit
WIZARD_PAGE
create
make
feature {WIZARD, WIZARD_ENGINE, WIZARD_PAGE} -- Implementation
reuse
do
-- across
-- items as ic
-- loop
-- unparent (ic.item)
-- end
end
feature -- Helpers
new_string_question (a_prompt: READABLE_STRING_GENERAL; a_field_id: READABLE_STRING_8; a_description: detachable READABLE_STRING_GENERAL): CONSOLE_WIZARD_STRING_QUESTION
do
create Result.make (a_field_id, a_prompt, a_description)
end
new_directory_question (a_prompt: READABLE_STRING_GENERAL; a_field_id: READABLE_STRING_8; a_description: detachable READABLE_STRING_GENERAL): CONSOLE_WIZARD_DIRECTORY_QUESTION
do
create Result.make (a_field_id, a_prompt, a_description)
end
new_boolean_question (a_prompt: READABLE_STRING_GENERAL; a_field_id: READABLE_STRING_8; a_description: detachable READABLE_STRING_GENERAL): CONSOLE_WIZARD_BOOLEAN_QUESTION
do
create Result.make (a_field_id, a_prompt, a_description)
end
new_integer_question (a_prompt: READABLE_STRING_GENERAL; a_field_id: READABLE_STRING_8; a_description: detachable READABLE_STRING_GENERAL): CONSOLE_WIZARD_INTEGER_QUESTION
do
create Result.make (a_field_id, a_prompt, a_description)
end
end