mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 03:55:28 +00:00
f1336f2f2b
* generator/CallbackGen.cs : remove an old workaround that put the native wrapper class into the implementor's *Sharp namespace. Use new ImportSignature sig. * generator/ImportSignature.cs : don't mangle the callback wrapper namespace any more. Remove impl_ns ctor param and field. * generator/MethodBase.cs : use new MethodBody and ImportSignature ctor sigs. * generator/MethodBody.cs : drop the impl_ns ctor param. * generator/Signal.cs : use new ImportSignature ctor sig. * generator/VirtualMethod.cs : use new ImportSignature ctor sig. svn path=/trunk/gtk-sharp/; revision=46877
62 lines
1.7 KiB
C#
62 lines
1.7 KiB
C#
// GtkSharp.Generation.ImportSignature.cs - The ImportSignature Generation Class.
|
|
//
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
//
|
|
// Copyright (c) 2001-2003 Mike Kestner
|
|
// Copyright (c) 2003-2004 Novell, Inc.
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of version 2 of the 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
|
|
// General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU 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.
|
|
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
using System;
|
|
using System.Collections;
|
|
|
|
public class ImportSignature {
|
|
|
|
Parameters parameters;
|
|
|
|
public ImportSignature (Parameters parms)
|
|
{
|
|
parameters = parms;
|
|
}
|
|
|
|
public override string ToString ()
|
|
{
|
|
if (parameters.Count == 0)
|
|
return "";
|
|
|
|
string[] parms = new string [parameters.Count];
|
|
for (int i = 0; i < parameters.Count; i++) {
|
|
Parameter p = parameters [i];
|
|
|
|
parms [i] = "";
|
|
if (p.CType == "GError**")
|
|
parms [i] += "out ";
|
|
else if (p.PassAs != "")
|
|
parms [i] += p.PassAs + " ";
|
|
parms [i] += p.MarshalType + " " + p.Name;
|
|
}
|
|
|
|
string import_sig = String.Join (", ", parms);
|
|
import_sig = import_sig.Replace ("out ref", "out");
|
|
import_sig = import_sig.Replace ("ref ref", "ref");
|
|
return import_sig;
|
|
}
|
|
}
|
|
}
|
|
|