mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 21:35:39 +00:00
2004-05-07 Todd Berman <tberman@sevenl.net>
* gnome/Gnome.metadat: Hide App ctor. * gnome/Makefile.am: add App.custom. * gnome/App.custom: New custom for subclassing. svn path=/trunk/gtk-sharp/; revision=26960
This commit is contained in:
parent
864884b4f0
commit
b138697051
|
@ -1,3 +1,9 @@
|
||||||
|
2004-05-07 Todd Berman <tberman@sevenl.net>
|
||||||
|
|
||||||
|
* gnome/Gnome.metadat: Hide App ctor.
|
||||||
|
* gnome/Makefile.am: add App.custom.
|
||||||
|
* gnome/App.custom: New custom for subclassing.
|
||||||
|
|
||||||
2004-05-07 Todd Berman <tberman@sevenl.net>
|
2004-05-07 Todd Berman <tberman@sevenl.net>
|
||||||
|
|
||||||
* gnome/Gnome.metadata: Hide Scores ctor.
|
* gnome/Gnome.metadata: Hide Scores ctor.
|
||||||
|
|
12
gnome/App.custom
Normal file
12
gnome/App.custom
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
[DllImport("gnomeui-2")]
|
||||||
|
static extern IntPtr gnome_app_new(string appname, string title);
|
||||||
|
|
||||||
|
public App (string appname, string title) : base (IntPtr.Zero)
|
||||||
|
{
|
||||||
|
if (GetType () != typeof (App)) {
|
||||||
|
CreateNativeObject (new string[0], new GLib.Value[0]);
|
||||||
|
Construct (appname, title);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Raw = gnome_app_new(appname, title);
|
||||||
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<metadata>
|
<metadata>
|
||||||
|
<attr path="/api/namespace/object[@cname='GnomeApp']/constructor[@cname='gnome_app_new']" name="hidden">1</attr>
|
||||||
<attr path="/api/namespace/boxed[@cname='GnomeCanvasPoints']" name="opaque">1</attr>
|
<attr path="/api/namespace/boxed[@cname='GnomeCanvasPoints']" name="opaque">1</attr>
|
||||||
<attr path="/api/namespace/boxed[@cname='GnomeGlyphList']/method/*/*[@type='const-guchar*']" name="type">const-gchar*</attr>
|
<attr path="/api/namespace/boxed[@cname='GnomeGlyphList']/method/*/*[@type='const-guchar*']" name="type">const-gchar*</attr>
|
||||||
<attr path="/api/namespace/boxed[@cname='GnomePrintUnit']/method/*/*[@type='const-guchar*']" name="type">const-gchar*</attr>
|
<attr path="/api/namespace/boxed[@cname='GnomePrintUnit']/method/*/*[@type='const-guchar*']" name="type">const-gchar*</attr>
|
||||||
|
|
|
@ -40,6 +40,7 @@ sources = \
|
||||||
build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs
|
build_sources = $(addprefix $(srcdir)/, $(sources)) AssemblyInfo.cs
|
||||||
|
|
||||||
customs = \
|
customs = \
|
||||||
|
App.custom \
|
||||||
CanvasBpath.custom \
|
CanvasBpath.custom \
|
||||||
CanvasClipgroup.custom \
|
CanvasClipgroup.custom \
|
||||||
Canvas.custom \
|
Canvas.custom \
|
||||||
|
|
Loading…
Reference in a new issue