summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2006-11-29 09:46:43 +0000
committerMatthias Melcher <fltk@matthiasm.com>2006-11-29 09:46:43 +0000
commit549ef06358e4d31553640be9ec6f2df4a29a9d95 (patch)
treede57b4252ab4a51ed187fefa1789ad8cfb97066e /test
parentf49f038cdbf6236e9ef398711dfc046200c4241b (diff)
STR #1467: explained tooltip inheritance - and how to avoid it).
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5552 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
-rw-r--r--test/tabs.fl7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/tabs.fl b/test/tabs.fl
index 0081bd977..c660a2164 100644
--- a/test/tabs.fl
+++ b/test/tabs.fl
@@ -11,19 +11,20 @@ Function {} {open
tooltip {the various index cards test different aspects of the Fl_Tabs widget} xywh {10 10 300 200} selection_color 4 labelcolor 7 resizable
} {
Fl_Group {} {
- label Label1 open selected
+ label Label1 open
tooltip {this Tab tests correct keyboard navigation between text input fields} xywh {10 30 300 180} selection_color 1 resizable
} {
Fl_Input {} {
label {input:}
- xywh {60 50 240 40}
+ tooltip {This is the first input field} xywh {60 50 240 40}
}
Fl_Input {} {
label {input2:}
xywh {60 90 240 30}
+ code0 {o->tooltip("");}
}
Fl_Input {} {
- label {input3:}
+ label {input3:} selected
xywh {60 120 240 80}
}
}