1999-02-11 Mario Motta <mmotta@guest.net>
	* vdkobj.cc
	In ConnectDefaultSignals() fixed a bug that 
	incorrectly connected realize signal to widget
-------------------------------------------------------------------	
1999-02-11 Mario Motta <mmotta@guest.net>	
	* text.cc
	All updating (setting/changing font/back/for colors included)
	operations are now denied if text widget isn't realized
	(Before this modifications text widget realizing was forced, unsafe)
	To update text widget after creation use "realize_signal".
	(see at ./testvdk/textwindow.cc)
	* ./testvdk/textwindow.cc ./testvdk/textwindow.h
	Modified consequently to above modification.
	* ./testvdk/textwin.cc
	Modified consequently to above modification.
--------------------------------------------------------------------	
1999-02-11 Mario Motta <mmotta@guest.net>
	VDK-0.5.11 released
	
--------------------------------------------------------------------	
1999-02-10 Mario Motta <mmotta@guest.net>
	* Minor clean up and removing some unuseful inlining 
	to avoid some warnings compiling with -O2

--------------------------------------------------------------------	
Tue Feb  9 07:26:47 CET 1999  Mario Motta <mmotta@guest.net>
	* text.cc/.h
	fixed a minor bug in TextInsert(), BackwardDelete(),
	ForwardDelete(), Clear() that did'nt set
	Changed property to true inserting/deleting text
---------------------------------------------------------------------
Sun Feb  7 21:05:09 CET 1999 Mario Motta <mmotta@guest.net>
	* text.cc
	memory leak bug fixed.
	In int SaveToFile() added g_free(p)
	to free mem allocated by GetChars().
	const char* p changed to char* p.
--------------------------------------------------------------------
Fri Feb  5 16:36:31 CET 1999 Mario Motta <mmotta@guest.net>
	* notebook.cc/.h:
	VDKTabPage public member TabLabel changed from
	VDKObject* to VDKLabel*
--------------------------------------------------------------------------
Fri Jan 22 20:33:17 CET 1999 Mario Motta <mmotta@guest.net>
	
	* VDKPaned
	Added
	 Method
	  void Pack(VDKObject* obj, int pane , bool resize, bool shrink);
	
	* VDKText
	 Bug fixed in SaveToFile() that wrote a garbaged char at file end.

	* VDKFileDialog
	 Operations changed, faster and better. (thanks to J.Hudson)

	* VDKObject
	Added
	 Method
	   GtkWidget* WrappedWidget();
	returns underlying wrapped widget in those cases when vdk object
	is a composite one (like VDKText, VDKCustomList, etc..)

	* VDKInput (new widget)
	Added by Jonathan Hudson

	* VDKForm
	Added
	 Property
	  bool Iconized
	iconize/deiconize form
	Added
	 Method
	  OnIconize(VDKForm*);
	  OnRestore(VDKForm*);
	called whenever form is iconized/restored both from wm and property.

	* VDKThread (new widget) (by R.Salmaso)
	Requires pthread library and link with -lpthread.
	Put on example/thread
---------------------------------------------------------------------	
Sun Jan 10 01:21:23 CET 1999 Salmaso Raffaele <r.salmaso@flashnet.it>

   * VDKLabel
     Removed
       Method
         Caption(char *);
     Added
       Property
         Caption : get/set the label caption
         CaptionWrap : wrap caption

   * VDKLabelButton
     Removed
       Method
         Caption(char *);
     Added
       Property
         Caption
         CaptionWrap

   * VDKPixmapButton
     Removed
       Method
         Caption(char *)
     Added
       Property
         Caption
         CaptionWrap
       Constructor
      	 2 new parameter: 
		GtkPositionType position = GTK_POS_RIGHT, int padding = 0
         VDKPixmapButton (VDKForm* owner, char* pixfile, char* label = "",
                          char* tip = NULL, bool defButton = no,
                          GtkPositionType position = GTK_POS_RIGHT, int padding = 0)
         VDKPixmapButton (VDKForm* owner, char** pixdata, char* label = "",
                          char* tip = NULL, bool defButton = no,
                          GtkPositionType position = GTK_POS_RIGHT, int padding = 0)

   * VDKCheckButton
     Removed
       Method
         Caption(char *)
     Added
       Property
         Caption
         CaptionWrap
       Constructor
         Now accept a tooltip: VDKCheckButton (VDKForm *owner, char* label, char* tips);

   * VDKToggleButton (new widget)
     Added
       Property
         Checked
       Constructor
         VDKToggleButton (VDKForm* owner, char* tip);
       Method
         SetForeground (VDKRgb color, GtkStateType state);
         Toggle ();

   * VDKLabelToggleButton (new widget)
     Added
       Property
         Caption
         CaptionWrap
       Constuctor
         VDKLabelToggleButton (VDKForm* owner, char* label, char* tip);
       Method
         SetForeground(VDKRgb color, GtkStateType state = GTK_STATE_NORMAL);
         SetFont(VDKFont* font);

   * VDKPixmapToggleButton (new widget)
     Added
       Property
         Caption
         CaptionWrap
       Constructor
         VDKPixmapToggleButton (VDKForm* owner,
                                char* pixfile,
                                char* label = "",
                                char* tip = NULL,
                                GtkPositionType position = GTK_POS_RIGHT,
                                int padding = 0);
         VDKPixmapToggleButton(VDKForm* owner,
                               char** pixdata,
                               char* label = "",
                               char* tip = NULL,
                               GtkPositionType position = GTK_POS_RIGHT,
                               int padding = 0);
       Method
         SetForeground(VDKRgb color, GtkStateType state = GTK_STATE_NORMAL);
         SetFont(VDKFont* font);
         Enable (bool flag = true);

   * include/vdk/vdk.h
     Added new widgets

   * test/testvdk.cc
     Changed every Caption(char *) to new property Caption

   * test/scrollwin.cc
     Correct a typo: `soon` instead of `son` (line 21)

   * contrib/swat-0.1/mainForm.cc
     Changed every Caption(char *) to new property Caption

   * example/hello/hello3
     New "Hello world!" to show new widgets
   







	