Little fixes, good night.

svn path=/trunk/gtk-sharp/; revision=16878
This commit is contained in:
Duncan Mak 2003-07-30 07:00:45 +00:00
parent e728c4d773
commit 8de5848e61
2 changed files with 6 additions and 6 deletions

View file

@ -67,7 +67,7 @@
Along with different coordinate systems comes functions Along with different coordinate systems comes functions
to convert between them. <see cref="M:Gnome.Canvas.W2c" /> converts world to to convert between them. <see cref="M:Gnome.Canvas.W2c" /> converts world to
canvas pixel coordinates and <see cref="M:Gnome.Canvas.C2w" /> from canvas pixel coordinates and <see cref="M:Gnome.Canvas.C2w" /> from
canvas to world. <see cref="M:Gnome.Canvas.W2cD() " /> is like canvas to world. <see cref="M:Gnome.Canvas.W2cD" /> is like
<see cref="M:Gnome.Canvas.W2c" /> but returns the pixel coordinates as <see cref="M:Gnome.Canvas.W2c" /> but returns the pixel coordinates as
doubles which is useful to avoid precision loss from integer doubles which is useful to avoid precision loss from integer
rounding. To get the affine transform matrix for converting rounding. To get the affine transform matrix for converting
@ -75,7 +75,7 @@
<see cref="M:Gnome.Canvas.W2cAffine" />. <see cref="M:Gnome.Canvas.W2cAffine" />.
<see cref="M:Gnome.Canvas.WindowToWorld" /> <see cref="M:Gnome.Canvas.WindowToWorld" />
converts from window to world coordinates and converts from window to world coordinates and
<see cref="M:Gnome.Canvas.World.ToWindow" /> converts in the other <see cref="M:Gnome.Canvas.WorldToWindow" /> converts in the other
direction. There are no functions for converting between direction. There are no functions for converting between
canvas and window coordinates, since this is just a matter of canvas and window coordinates, since this is just a matter of
subtracting the canvas scrolling offset. To convert to/from subtracting the canvas scrolling offset. To convert to/from
@ -91,7 +91,7 @@
</para> </para>
<para> <para>
Defining the scrollable area of a canvas widget is done by Defining the scrollable area of a canvas widget is done by
calling <see cref="M:Gnomecanvas.SetScrollRegion" /> and to get the calling <see cref="M:Gnome.Canvas.SetScrollRegion" /> and to get the
current region <see cref="M:Gnome.Canvas.GetScrollRegion" /> can be current region <see cref="M:Gnome.Canvas.GetScrollRegion" /> can be
used. If the window is larger than the canvas scrolling region used. If the window is larger than the canvas scrolling region
it can optionally be centered in the window. Use the it can optionally be centered in the window. Use the

View file

@ -61,12 +61,12 @@
<see cref="M:Gnome.CanvasItem.W2i" />, and to convert in the other direction <see cref="M:Gnome.CanvasItem.W2i" />, and to convert in the other direction
call <see cref="M:Gnome.CanvasItem.I2w" />. To get the transform for call <see cref="M:Gnome.CanvasItem.I2w" />. To get the transform for
converting from item to world coordinates use converting from item to world coordinates use
<see cref="M:M:Gnome.CanvasItem.I2wAffine" /> or for converting item to <see cref="M:Gnome.CanvasItem.I2wAffine" /> or for converting item to
canvas coordinates, <see cref="M:Gnome.CanvasItem.I2cAffine" />. canvas coordinates, <see cref="M:Gnome.CanvasItem.I2cAffine" />.
</para> </para>
<para> <para>
Handling user input for interactive items is accomplished Handling user input for interactive items is accomplished
through a few functions and the "event" signals. To grab the through a few functions and the <see cref="E:Gnome.CanvasItem.CanvasEvent" /> signals. To grab the
mouse cursor call <see cref="M:Gnome.CanvasItem.Grab" />, it can be mouse cursor call <see cref="M:Gnome.CanvasItem.Grab" />, it can be
ungrabbed with <see cref="M:Gnome.CanvasItem.Ungrab" /> (see ungrabbed with <see cref="M:Gnome.CanvasItem.Ungrab" /> (see
<see cref="M:Gdk.Pointer.Grab" /> of the GTK+ library for details). To grab <see cref="M:Gdk.Pointer.Grab" /> of the GTK+ library for details). To grab
@ -77,7 +77,7 @@
Some other useful functions include a reparenting routine, Some other useful functions include a reparenting routine,
<see cref="M:Gnome.CanvasItem.Reparent" />, and a function to query the <see cref="M:Gnome.CanvasItem.Reparent" />, and a function to query the
bounding box of an item (a minumum rectangular area containing bounding box of an item (a minumum rectangular area containing
all parts of the item), <see cref="M:Gnome.CanvasItem.Getbounds" /></para> all parts of the item), <see cref="M:Gnome.CanvasItem.Getbounds" />.</para>
</remarks> </remarks>
</Docs> </Docs>
<Base> <Base>