mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:35:31 +00:00
900b14290c
* */*-api.xml: Regen, adding gtype="..." to many enum types * generator/EnumGen.cs (Generate): if the enum has the "gtype" property, add a GTypeAttribute pointing to an internal FooGType class whose GType property can be used to get the enum's GType. * generator/ObjectGen.cs: s/ObjectManager.RegisterType/GType.Register/ * glib/GTypeAttribute.cs: attribute for indicating a property that will return the GType of a type (particularly for enums, which can't have GType properties added to them). * glib/GType.cs: renamed from Type.cs to match the type name (public static readonly GType ...): add a few missing types. (Register): moved from ObjectManager.RegisterType (LookupGType): moved from TypeConverter.LookupType and extended to handle GTypeAttribute. Also, fix mappings for sbyte/byte/char, and return specific GTypes for Object subclasses rather than always returning GType.Object. [Fixes #74699] (LookupType): moved from ObjectWrapper.LookupType (ToString): return the type name * glib/Object.cs (RegisterGType): s/ObjectManager.Register/GType.Register/ (LookupGType): Make this protected internal so GType can access it. * glib/ObjectManager.cs (RegisterType): deprecate in favor of GType.Register. (LookupType): moved to GType * glib/TypeConverter.cs (LookupType): now a deprecated wrapper around GType.LookupGType. * glib/Value.cs: Use GType casts rather than TypeConverter * gtk/NodeStore.cs (ScanType): * gtk/ListStore.custom (ListStore): * gtk/TreeStore.custom (TreeStore): Use (GType) cast rather than TypeConverter. Remove the error check and exception, since the cast never returns GType.Invalid. (The check probably predates GLib.ManagedValue.) * gnome/PanelAppletFactory.cs (Register): Use a GType cast rather than GLib.Object.LookupGType (which is no longer accessible after an mcs bugfix) * sample/GtkDemo/DemoIconView.cs (CreateStore): use the Type[] constructor rather than the GType[] constructor, since it translates typeof(Gdk.Pixbuf) correctly now. svn path=/trunk/gtk-sharp/; revision=44038
85 lines
1.9 KiB
Makefile
85 lines
1.9 KiB
Makefile
SUBDIRS = glue
|
|
|
|
TARGET = $(ASSEMBLY)
|
|
ASSEMBLY = $(ASSEMBLY_NAME).dll
|
|
ASSEMBLY_NAME = glib-sharp
|
|
noinst_DATA = $(ASSEMBLY) $(ASSEMBLY).config
|
|
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb gtk-sharp.snk
|
|
DISTCLEANFILES = $(ASSEMBLY).config
|
|
|
|
references =
|
|
|
|
sources = \
|
|
Argv.cs \
|
|
Boxed.cs \
|
|
CDeclCallbackAttribute.cs \
|
|
ClassInitializerAttribute.cs \
|
|
ConnectBeforeAttribute.cs \
|
|
DefaultSignalHandlerAttribute.cs \
|
|
DelegateWrapper.cs \
|
|
DestroyNotify.cs \
|
|
EnumWrapper.cs \
|
|
FileUtils.cs \
|
|
GException.cs \
|
|
GString.cs \
|
|
GType.cs \
|
|
GTypeAttribute.cs \
|
|
Idle.cs \
|
|
IWrapper.cs \
|
|
ListBase.cs \
|
|
List.cs \
|
|
Log.cs \
|
|
MainContext.cs \
|
|
MainLoop.cs \
|
|
ManagedValue.cs \
|
|
Markup.cs \
|
|
Marshaller.cs \
|
|
MissingIntPtrCtorException.cs \
|
|
NotifyHandler.cs \
|
|
Object.cs \
|
|
ObjectManager.cs \
|
|
Opaque.cs \
|
|
PropertyAttribute.cs \
|
|
Signal.cs \
|
|
SignalArgs.cs \
|
|
SignalAttribute.cs \
|
|
SignalCallback.cs \
|
|
SList.cs \
|
|
Source.cs \
|
|
Thread.cs \
|
|
Timeout.cs \
|
|
TypeConverter.cs \
|
|
TypeFundamentals.cs \
|
|
UnwrappedObject.cs \
|
|
ValueArray.cs \
|
|
Value.cs \
|
|
WeakObject.cs
|
|
|
|
build_sources = $(addprefix $(srcdir)/, $(sources)) ../AssemblyInfo.cs
|
|
dist_sources = $(sources)
|
|
|
|
EXTRA_DIST = \
|
|
$(dist_sources) \
|
|
$(ASSEMBLY).config.in \
|
|
makefile.win32
|
|
|
|
gtk-sharp.snk: $(top_srcdir)/gtk-sharp.snk
|
|
cp $(top_srcdir)/gtk-sharp.snk .
|
|
|
|
$(ASSEMBLY): $(build_sources) gtk-sharp.snk
|
|
@rm -f $(ASSEMBLY).mdb
|
|
$(CSC) $(CSFLAGS) /nowarn:0612 /out:$(ASSEMBLY) /target:library $(references) $(build_sources)
|
|
|
|
install-data-local:
|
|
@if test -n '$(TARGET)'; then \
|
|
echo "$(GACUTIL) /i $(ASSEMBLY) /f $(GACUTIL_FLAGS)"; \
|
|
$(GACUTIL) /i $(ASSEMBLY) /f $(GACUTIL_FLAGS) || exit 1; \
|
|
fi
|
|
|
|
uninstall-local:
|
|
@if test -n '$(TARGET)'; then \
|
|
echo "$(GACUTIL) /u $(ASSEMBLY_NAME) $(GACUTIL_FLAGS)"; \
|
|
$(GACUTIL) /u $(ASSEMBLY_NAME) $(GACUTIL_FLAGS) || exit 1; \
|
|
fi
|
|
|