remove a bunch of doc comments
svn path=/trunk/gtk-sharp/; revision=30951
This commit is contained in:
parent
d8b8c9ce79
commit
652b7fc82f
11 changed files with 0 additions and 142 deletions
|
@ -22,26 +22,10 @@ namespace GLib {
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Boxed Class
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// An abstract base class to derive structures and marshal them.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public class Boxed {
|
public class Boxed {
|
||||||
object obj;
|
object obj;
|
||||||
IntPtr raw;
|
IntPtr raw;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Boxed Constructor
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Constructs a Boxed type from a raw ref.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public Boxed (object o)
|
public Boxed (object o)
|
||||||
{
|
{
|
||||||
this.obj = o;
|
this.obj = o;
|
||||||
|
@ -52,13 +36,6 @@ namespace GLib {
|
||||||
this.raw = ptr;
|
this.raw = ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Handle Property
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Gets a marshallable IntPtr.
|
|
||||||
/// </remarks>
|
|
||||||
public virtual IntPtr Handle {
|
public virtual IntPtr Handle {
|
||||||
get {
|
get {
|
||||||
return raw;
|
return raw;
|
||||||
|
|
|
@ -28,14 +28,6 @@ namespace GLib {
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// DelegateWrapper Class
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Wrapper class for delegates.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public class DelegateWrapper
|
public class DelegateWrapper
|
||||||
{
|
{
|
||||||
// Keys in the hashtable are instances of classes derived from this one.
|
// Keys in the hashtable are instances of classes derived from this one.
|
||||||
|
|
19
glib/Idle.cs
19
glib/Idle.cs
|
@ -26,27 +26,8 @@ namespace GLib {
|
||||||
using System;
|
using System;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// IdleHandler Delegate
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Delegate used for idle handlerss in the GLib main loop. Return
|
|
||||||
/// true to restart the idle. Returning false clears the
|
|
||||||
/// idle.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public delegate bool IdleHandler ();
|
public delegate bool IdleHandler ();
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Idle Class
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Allows the installation of Idle Handlers on the GLib main
|
|
||||||
/// loop.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public class Idle {
|
public class Idle {
|
||||||
|
|
||||||
private Idle ()
|
private Idle ()
|
||||||
|
|
|
@ -24,14 +24,6 @@ namespace GLib {
|
||||||
using System;
|
using System;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// List Class
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Wrapper class for GList.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public class List : ListBase {
|
public class List : ListBase {
|
||||||
|
|
||||||
[DllImport("libglib-2.0-0.dll")]
|
[DllImport("libglib-2.0-0.dll")]
|
||||||
|
|
|
@ -25,14 +25,6 @@ namespace GLib {
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// ListBase Class
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Base class for GList and GSList.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public abstract class ListBase : IDisposable, ICollection, GLib.IWrapper, ICloneable {
|
public abstract class ListBase : IDisposable, ICollection, GLib.IWrapper, ICloneable {
|
||||||
|
|
||||||
private IntPtr list_ptr = IntPtr.Zero;
|
private IntPtr list_ptr = IntPtr.Zero;
|
||||||
|
@ -72,14 +64,6 @@ namespace GLib {
|
||||||
set { managed = value; }
|
set { managed = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Handle Property
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// A raw list reference for marshaling situations.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public IntPtr Handle {
|
public IntPtr Handle {
|
||||||
get {
|
get {
|
||||||
return list_ptr;
|
return list_ptr;
|
||||||
|
|
|
@ -25,14 +25,6 @@ namespace GLib {
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using GLib;
|
using GLib;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Managed types boxer
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Utility class for creating GBoxed wrappers around managed types
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
// FIXME:
|
// FIXME:
|
||||||
// This used to use GCHandles, but I rewrote it to debug
|
// This used to use GCHandles, but I rewrote it to debug
|
||||||
// some odd interactions. Since the boxed code in GLib is designed
|
// some odd interactions. Since the boxed code in GLib is designed
|
||||||
|
|
|
@ -24,14 +24,6 @@ namespace GLib {
|
||||||
using System;
|
using System;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// SList Class
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Wrapper class for GSList.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public class SList : ListBase {
|
public class SList : ListBase {
|
||||||
|
|
||||||
[DllImport("libglib-2.0-0.dll")]
|
[DllImport("libglib-2.0-0.dll")]
|
||||||
|
|
|
@ -24,14 +24,6 @@ namespace GLib {
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Marks events genrated from glib signals
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// This attribute indentifies events generated from glib signals
|
|
||||||
/// and allows obtaining its original name.
|
|
||||||
/// </remarks>
|
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public sealed class SignalAttribute : Attribute
|
public sealed class SignalAttribute : Attribute
|
||||||
{
|
{
|
||||||
|
|
|
@ -24,27 +24,8 @@ namespace GLib {
|
||||||
using System;
|
using System;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// TimeoutHandler Delegate
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Delegate used for Timeouts in the GLib main loop. Return
|
|
||||||
/// true to restart the timeout. Returning false clears the
|
|
||||||
/// timeout.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public delegate bool TimeoutHandler ();
|
public delegate bool TimeoutHandler ();
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Timeout Class
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Allows the installation of Timeout Handlers on the GLib main
|
|
||||||
/// loop.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public class Timeout {
|
public class Timeout {
|
||||||
|
|
||||||
private Timeout () {}
|
private Timeout () {}
|
||||||
|
|
17
glib/Type.cs
17
glib/Type.cs
|
@ -25,28 +25,11 @@ namespace GLib {
|
||||||
using System;
|
using System;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// GType Class
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// An arbitrary data type similar to a CORBA Any which is used
|
|
||||||
/// to get and set properties on Objects.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
public struct GType {
|
public struct GType {
|
||||||
|
|
||||||
IntPtr val;
|
IntPtr val;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// GType Constructor
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Constructs a new GType from a native GType value.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public GType (IntPtr val) {
|
public GType (IntPtr val) {
|
||||||
this.val = val;
|
this.val = val;
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,14 +21,6 @@
|
||||||
|
|
||||||
namespace GLib {
|
namespace GLib {
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// TypeFundamentals enumeration
|
|
||||||
/// </summary>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// The built-in types available in GLib.
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
public enum TypeFundamentals {
|
public enum TypeFundamentals {
|
||||||
TypeInvalid = 0 << 2,
|
TypeInvalid = 0 << 2,
|
||||||
TypeNone = 1 << 2,
|
TypeNone = 1 << 2,
|
||||||
|
|
Loading…
Add table
Reference in a new issue