diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-07-18 15:58:30 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-07-18 15:58:30 +1000 |
commit | 6aa9475d598065081866913bb86a049a6d2d0c1a (patch) | |
tree | fd2074432185ed1d9f9dd8b3e9ae8e2344cbe7c5 /fltk-widgets.ads | |
parent | f419b275ee91792e08f211a588d891c4aa6bedac (diff) |
Decided on widget init problem, started on rudimentary editor appearance
Diffstat (limited to 'fltk-widgets.ads')
-rw-r--r-- | fltk-widgets.ads | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fltk-widgets.ads b/fltk-widgets.ads index 9910dee..8108a5d 100644 --- a/fltk-widgets.ads +++ b/fltk-widgets.ads @@ -43,6 +43,16 @@ package FLTK.Widgets is Box : in Box_Kind); + function Get_Label + (This : in out Widget) + return String; + + + procedure Set_Label + (This : in out Widget; + Text : in String); + + function Get_Label_Font (This : in Widget) return Font_Kind; |