Small changes

This commit is contained in:
Severin Münger
2013-09-15 13:25:01 +02:00
parent be05edac7d
commit 45e3a6d7cc
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
note
description: "Summary description for {DEMO_PROGRESSSOURCE}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
DEMO_PROGRESSSOURCE
inherit
WSF_PROGRESSSOURCE
create
make
feature {NONE} -- Initialization
make
do
prog := 20
end
feature -- Implementation
progress: INTEGER
do
if prog < 100 then
prog := prog + 1
end
Result := prog
end
prog: INTEGER
end

View File

@@ -25,6 +25,8 @@ feature
n2_container: WSF_FORM_ELEMENT_CONTROL [STRING] n2_container: WSF_FORM_ELEMENT_CONTROL [STRING]
n3_container: WSF_FORM_ELEMENT_CONTROL [STRING] n3_container: WSF_FORM_ELEMENT_CONTROL [STRING]
cats_container: WSF_FORM_ELEMENT_CONTROL [LIST [STRING]] cats_container: WSF_FORM_ELEMENT_CONTROL [LIST [STRING]]
progress: WSF_PROGRESS_CONTROL
progress_source: WSF_PROGRESSSOURCE
link1: WSF_BASIC_CONTROL link1: WSF_BASIC_CONTROL
link2: WSF_BASIC_CONTROL link2: WSF_BASIC_CONTROL
s: FLAG_AUTOCOMPLETION s: FLAG_AUTOCOMPLETION
@@ -37,6 +39,8 @@ feature
create autocompletion1.make_autocomplete ("autocompletion1", s) create autocompletion1.make_autocomplete ("autocompletion1", s)
create button1.make_button ("sample_button1", "SUM") create button1.make_button ("sample_button1", "SUM")
create textbox_result.make_html ("txtBox3", "p", "") create textbox_result.make_html ("txtBox3", "p", "")
create {DEMO_PROGRESSSOURCE} progress_source.make
create progress.make_progress ("progress1", progress_source)
create link1.make_control ("a") create link1.make_control ("a")
create link2.make_control ("a") create link2.make_control ("a")
link1.set_content ("Home") link1.set_content ("Home")
@@ -69,6 +73,7 @@ feature
form.add_control (create {WSF_FORM_ELEMENT_CONTROL [STRING]}.make_form_element ("Result", textbox_result)) form.add_control (create {WSF_FORM_ELEMENT_CONTROL [STRING]}.make_form_element ("Result", textbox_result))
container.add_control (navbar) container.add_control (navbar)
container.add_control (form) container.add_control (form)
container.add_control (progress)
control := container control := container
end end