diff options
author | Camil Staps | 2015-07-01 17:36:37 +0200 |
---|---|---|
committer | Camil Staps | 2015-07-01 17:36:37 +0200 |
commit | 7553b7f9d4dddc2235c137d41de8ce22547bebe3 (patch) | |
tree | 34f8fb4b36640317d728a60586424f67f9befbe7 /ostooltip.dcl | |
parent | gitignore (diff) |
Initial commit
Diffstat (limited to 'ostooltip.dcl')
-rw-r--r-- | ostooltip.dcl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ostooltip.dcl b/ostooltip.dcl new file mode 100644 index 0000000..784f557 --- /dev/null +++ b/ostooltip.dcl @@ -0,0 +1,17 @@ +definition module ostooltip
+
+// Clean Object I/O library, version 1.2
+
+// Operations to add and remove tooltip controls and areas.
+
+import StdString
+from ostoolbox import :: OSToolbox
+from oswindow import :: OSWindowPtr
+
+/* Tooltip controls are added and removed by osAddControlToolTip and osRemoveControlToolTip.
+ The first OSWindowPtr argument identifies the parent window.
+ The second OSWindowPtr argument identifies the control.
+ The String argument is the tooltip text.
+*/
+osAddControlToolTip :: !OSWindowPtr !OSWindowPtr !String !*OSToolbox -> *OSToolbox
+osRemoveControlToolTip :: !OSWindowPtr !OSWindowPtr !*OSToolbox -> *OSToolbox
|