aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gfx/gfx_widgets.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/gfx/gfx_widgets.h')
-rw-r--r--engines/sci/gfx/gfx_widgets.h70
1 files changed, 0 insertions, 70 deletions
diff --git a/engines/sci/gfx/gfx_widgets.h b/engines/sci/gfx/gfx_widgets.h
index ed36884c1b..251af9f7ed 100644
--- a/engines/sci/gfx/gfx_widgets.h
+++ b/engines/sci/gfx/gfx_widgets.h
@@ -96,76 +96,6 @@ extern Common::Point gfxw_point_zero;
** gfx_state_internal.h.
**
**
-**
-** -- draw(GfxWidget *self, Common::Point pos)
-** Draws the widget.
-** Parameters: (GfxWidget *) self: self reference
-** (Common::Point) pos: The position to draw to (added to the widget's
-** internal position)
-** Returns : (int) 0
-** The widget is drawn iff it is flagged as dirty. Invoking this operation on
-** a container widget will recursively draw all of its contents.
-**
-**
-** -- tag(GfxWidget *self)
-** Tags the specified widget
-** Parameters: (GfxWidget *) self: self reference
-** Returns : (int) 0
-** If invoked on a container widget, this will also tag all of the container's
-** contents (but not the contents' contents!)
-**
-**
-** -- print(GfxWidget *self, int indentation)
-** Prints a string representation of the widget with sciprintf
-** Parameters: (GfxWidget *) self: self reference
-** (int) indentation: Number of double spaces to indent
-** Returns ; (int) 0
-** Will recursively print all of the widget's contents if the widget contains
-** further sub-widgets
-**
-**
-** -- compare_to(GfxWidget *self, GfxWidget *other)
-** Compares two compareable widgets by their screen position
-** Parameters: (GfxWidget *) self: self reference
-** (GfxWidget *) other: other widget
-** Returns : (int) <0, 0, or >0 if other is, respectively, less than, equal
-** to, or greater than self
-** This comparison only applies to some widgets; compare_to(a,a)=0 is not
-** guaranteed. It may be used for sorting for all widgets.
-**
-**
-** -- equals(GfxWidget *self, GfxWidget *other)
-** Compares two compareable widgets for equality
-** Parameters: (GfxWidget *) self: self reference
-** (GfxWidget *) other: other widget
-** Returns : (int) 0 if the widgets are not equal, != 0 if they match
-** This operation checks whether two widgets describe the same graphical data.
-** It is used to determine whether a new widget should be discarded because it
-** describes the same graphical data as an old widget that has already been
-** drawn. For lists, it also checks whether all contents are in an identical
-** order.
-**
-**
-** -- should_replace(GfxWidget *self, GfxWidget *other)
-** Compares two compareable widgets for equality
-** Parameters: (GfxWidget *) self: self reference
-** (GfxWidget *) other: other widget
-** Returns : (int) 0 if 'self' should be kept, != 0 if it should be replaced
-** by the 'other'
-** When 'equals' returns true, this means that no new widget will be added.
-** However, in some cases newer widgets may contain information that should
-** cause the older widget to be removed nonetheless; this is indicated by this
-** function.
-**
-**
-** -- superarea_of(GfxWidget *self, GfxWidget *other)
-** Tests whether drawing self after other would reduce all traces of other
-** Parameters: (GfxWidget *) self: self reference
-** (gxfw_widget_t *) other: The widget to compare for containment
-** Returns : (int) 1 if self is superarea_of other, 0 otherwise
-**
-**
-**
** **************************
** ** Container operations **
** **************************