From 05172d9599b10eb24d84586eecc4d330800b936c Mon Sep 17 00:00:00 2001 From: Duncan Mak Date: Tue, 22 Jul 2003 04:38:13 +0000 Subject: [PATCH] * en/Gtk/FSButton.xml: Removed the constructor, per the custom file update and added documentation. * gtk/FileSelection.custom (FSButton): Mark the constructor as 'internal', instead of 'public'. svn path=/trunk/gtk-sharp/; revision=16513 --- ChangeLog | 5 +++++ doc/ChangeLog | 5 +++++ doc/en/Gtk/FSButton.xml | 47 ++++++++++++++++++++-------------------- gtk/FileSelection.custom | 2 +- 4 files changed, 35 insertions(+), 24 deletions(-) diff --git a/ChangeLog b/ChangeLog index a57c49f03..f9096e161 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-07-22 Duncan Mak + + * gtk/FileSelection.custom (FSButton): Mark the constructor as + 'internal', instead of 'public'. + 2003-07-15 Duncan Mak * sources/makefile (get-source-code): make it go a bit faster by diff --git a/doc/ChangeLog b/doc/ChangeLog index e56eda42f..e40e9358c 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2003-07-22 Duncan Mak + + * en/Gtk/FSButton.xml: Removed the constructor, per the custom + file update and added documentation. + 2003-07-20 John Luke * en/Gtk/FileSelection.xml: update and add example diff --git a/doc/en/Gtk/FSButton.xml b/doc/en/Gtk/FSButton.xml index 3bd6f7a5e..fe5a24ae9 100644 --- a/doc/en/Gtk/FSButton.xml +++ b/doc/en/Gtk/FSButton.xml @@ -1,5 +1,5 @@ - + gtk-sharp @@ -9,8 +9,17 @@ To be added - To be added - To be added + + Helper class for s embedded inside a + + + + This class is used as a wrapper around buttons embedded inside + a . This class exposes an + additional property, , which + can be used to get back to the parent dialog. + + Gtk.Button @@ -31,22 +40,6 @@ - - - Constructor - - - - - - - To be added - To be added: an object of type 'Gtk.FileSelection' - To be added: an object of type 'IntPtr' - To be added: an object of type 'Gtk.FileSelection+FSButton' - To be added - - Property @@ -54,10 +47,18 @@ Gtk.FileSelection - To be added - To be added: an object of type 'Gtk.FileSelection' - To be added + Returns the parent + The parent + + + This class is only used to by + s embedded inside a + . From the + , you can use + this property to get back to the parent dialog box. + + - + \ No newline at end of file diff --git a/gtk/FileSelection.custom b/gtk/FileSelection.custom index 8d7044610..37c5d430e 100644 --- a/gtk/FileSelection.custom +++ b/gtk/FileSelection.custom @@ -16,7 +16,7 @@ public class FSButton : Gtk.Button { get { return file_sel; } } - public FSButton (FileSelection fs, IntPtr raw) : base (raw) { + internal FSButton (FileSelection fs, IntPtr raw) : base (raw) { file_sel = fs; } }