2004-09-03 Mike Kestner <mkestner@ximian.com>

* configure.in : expand new doc/updater makefile
	* gtk/Gtk.metadata : hide Init.Check and AbiCheck*.
	* gtk/Init.custom : manual Init.Check impl.
	* gtk/Makefile.am : add Init.custom.

svn path=/trunk/gtk-sharp/; revision=33288
This commit is contained in:
Mike Kestner 2004-09-03 15:59:29 +00:00
parent d2a37895d5
commit 97f5a62824
5 changed files with 40 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2004-09-03 Mike Kestner <mkestner@ximian.com>
* configure.in : expand new doc/updater makefile
* gtk/Gtk.metadata : hide Init.Check and AbiCheck*.
* gtk/Init.custom : manual Init.Check impl.
* gtk/Makefile.am : add Init.custom.
2004-08-31 Mike Kestner <mkestner@ximian.com>
* gdk/Gdk.metadata : mark out params on *CreateWithXpm*.

View file

@ -257,6 +257,7 @@ vte/AssemblyInfo.cs
vte/vte-sharp.dll.config
vte/vte-sharp.pc
doc/Makefile
doc/updater/Makefile
sample/GtkDemo/Makefile
sample/Makefile
sample/gconf/Makefile

View file

@ -34,6 +34,9 @@
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='PaintPolygon']/*/*[@name='points']" name="array">1</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='PaintPolygon']/*/*[@name='npoints']" name="name">n_points</attr>
<attr path="/api/namespace/class[@cname='GtkIdle_']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkInit_']/method[@name='Check']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkInit_']/method[@name='CheckAbiCheck']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkInit_']/method[@name='AbiCheck']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkStock_']" name="name">StockManager</attr>
<attr path="/api/namespace/class[@cname='GtkStock_']/method[@name='ListIds']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkStock_']/method[@name='Lookup']/*/*[@name='item']" name="pass_as">ref</attr>

28
gtk/Init.custom Normal file
View file

@ -0,0 +1,28 @@
// Gtk.Init.custom - Gtk Init class customizations
//
// Author: Mike Kestner <mkestner@ximian.com>
//
// Copyright (C) 2004 Novell, Inc.
//
// This code is inserted after the automatically generated code.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of version 2 of the Lesser GNU General
// Public License as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this program; if not, write to the
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.
public static bool Check (ref string[] argv)
{
return Application.InitCheck (Environment.CommandLine, ref argv);
}

View file

@ -49,6 +49,7 @@ customs = \
IconFactory.custom \
IconSet.custom \
ImageMenuItem.custom \
Init.custom \
InputDialog.custom \
ItemFactory.custom \
Label.custom \