================================
VDKPacker class <vdkpacker.h>
inherits from VDKObjectContainer
================================

DESCRIPTION
-----------
VDKPacker class wraps gtkpacker


PROPERTIES
----------
int		Spacing
VDKPoint	Padding

PUBLIC MEMBERS
--------------
none

METHODS
-------

- VDKPacker(VDKForm* owner)
Contructor

- virtual ~VDKPacker()
Destructor

- void Add(VDKObject* obj, 
   int side = int(GTK_SIDE_TOP),
   int anchor = int(GTK_ANCHOR_NORTH), 
   int options = int(GTK_PACK_EXPAND| GTK_FILL_X| GTK_FILL_Y),
   int borderwith = 0);

Add an object to packer.
<side> can be one of the following::
    GTK_SIDE_TOP,
    GTK_SIDE_BOTTOM,
    GTK_SIDE_LEFT,
    GTK_SIDE_RIGHT

<anchor> can be one of the following:
  GTK_ANCHOR_CENTER,
  GTK_ANCHOR_NORTH,
  GTK_ANCHOR_NORTH_WEST,
  GTK_ANCHOR_NORTH_EAST,
  GTK_ANCHOR_SOUTH,
  GTK_ANCHOR_SOUTH_WEST,
  GTK_ANCHOR_SOUTH_EAST,
  GTK_ANCHOR_WEST,
  GTK_ANCHOR_EAST

<options> can  be one of the following:
  GTK_PACK_EXPAND,
  GTK_FILL_X,
  GTK_FILL_Y
and can be ored togheter.


- void ReconfigureChild(VDKObject* obj, 
		   int side,
		   int anchor, 
		   int options,
		   int borderwith);

Readjust child into packer


- void ReorderChild(VDKObject* child, int position)

- void SetSpacing(int s)

- void SetPadding(VDKPoint p)









