/src/wrappers/gtk/examples/hello/my_button.e
http://github.com/tybor/Liberty · Specman e · 19 lines · 17 code · 2 blank · 0 comment · 0 complexity · 10da0633acd0f9913c9d6f5531a837f9 MD5 · raw file
- class MY_BUTTON
- inherit
- GTK_BUTTON
- redefine with_label, on_clicked
- end
- creation make,with_label
- feature
- on_clicked is
- do
- print ("Hello from `my-button'. I was called with the built-in clicked signal handler%N")
- end
-
- with_label (a_label:STRING) is
- do
- Precursor (a_label)
- enable_on_clicked
- end
- end