diff options
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
|