diff os2/dw.c @ 833:53b677d126dc

Scrollbox cleanups on Windows and added stubs on OS/2.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 27 Mar 2011 03:57:14 +0000
parents c6040726eb92
children a75e798ee6ed
line wrap: on
line diff
--- a/os2/dw.c	Sun Mar 27 03:47:53 2011 +0000
+++ b/os2/dw.c	Sun Mar 27 03:57:14 2011 +0000
@@ -4106,6 +4106,27 @@
 }
 
 /*
+ * INCOMPLETE
+ * Create a new scroll Box to be packed.
+ * Parameters:
+ *       type: Either DW_VERT (vertical) or DW_HORZ (horizontal).
+ *       pad: Number of pixels to pad around the box.
+ */
+HWND API dw_scrollbox_new(int type, int pad)
+{
+    return dw_box_new(type, pad);
+}
+
+int API dw_scrollbox_get_pos( HWND handle, int orient )
+{
+   return 0;
+}
+
+int API dw_scrollbox_get_range( HWND handle, int orient )
+{
+   return 0;
+}
+/*
  * Create a new Group Box to be packed.
  * Parameters:
  *       type: Either DW_VERT (vertical) or DW_HORZ (horizontal).