remove a bunch of doc comments

svn path=/trunk/gtk-sharp/; revision=30951
This commit is contained in:
Mike Kestner 2004-07-09 15:25:39 +00:00
parent d8b8c9ce79
commit 652b7fc82f
11 changed files with 0 additions and 142 deletions

View File

@ -22,26 +22,10 @@ namespace GLib {
using System;
/// <summary>
/// Boxed Class
/// </summary>
///
/// <remarks>
/// An abstract base class to derive structures and marshal them.
/// </remarks>
public class Boxed {
object obj;
IntPtr raw;
/// <summary>
/// Boxed Constructor
/// </summary>
///
/// <remarks>
/// Constructs a Boxed type from a raw ref.
/// </remarks>
public Boxed (object o)
{
this.obj = o;
@ -52,13 +36,6 @@ namespace GLib {
this.raw = ptr;
}
/// <summary>
/// Handle Property
/// </summary>
///
/// <remarks>
/// Gets a marshallable IntPtr.
/// </remarks>
public virtual IntPtr Handle {
get {
return raw;

View File

@ -28,14 +28,6 @@ namespace GLib {
using System.Collections;
using System.Runtime.InteropServices;
/// <summary>
/// DelegateWrapper Class
/// </summary>
///
/// <remarks>
/// Wrapper class for delegates.
/// </remarks>
public class DelegateWrapper
{
// Keys in the hashtable are instances of classes derived from this one.

View File

@ -26,27 +26,8 @@ namespace GLib {
using System;
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 ();
/// <summary>
/// Idle Class
/// </summary>
///
/// <remarks>
/// Allows the installation of Idle Handlers on the GLib main
/// loop.
/// </remarks>
public class Idle {
private Idle ()

View File

@ -24,14 +24,6 @@ namespace GLib {
using System;
using System.Runtime.InteropServices;
/// <summary>
/// List Class
/// </summary>
///
/// <remarks>
/// Wrapper class for GList.
/// </remarks>
public class List : ListBase {
[DllImport("libglib-2.0-0.dll")]

View File

@ -25,14 +25,6 @@ namespace GLib {
using System.Collections;
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 {
private IntPtr list_ptr = IntPtr.Zero;
@ -72,14 +64,6 @@ namespace GLib {
set { managed = value; }
}
/// <summary>
/// Handle Property
/// </summary>
///
/// <remarks>
/// A raw list reference for marshaling situations.
/// </remarks>
public IntPtr Handle {
get {
return list_ptr;

View File

@ -25,14 +25,6 @@ namespace GLib {
using System.Runtime.InteropServices;
using GLib;
/// <summary>
/// Managed types boxer
/// </summary>
///
/// <remarks>
/// Utility class for creating GBoxed wrappers around managed types
/// </remarks>
// FIXME:
// This used to use GCHandles, but I rewrote it to debug
// some odd interactions. Since the boxed code in GLib is designed

View File

@ -24,14 +24,6 @@ namespace GLib {
using System;
using System.Runtime.InteropServices;
/// <summary>
/// SList Class
/// </summary>
///
/// <remarks>
/// Wrapper class for GSList.
/// </remarks>
public class SList : ListBase {
[DllImport("libglib-2.0-0.dll")]

View File

@ -24,14 +24,6 @@ namespace GLib {
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]
public sealed class SignalAttribute : Attribute
{

View File

@ -24,27 +24,8 @@ namespace GLib {
using System;
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 ();
/// <summary>
/// Timeout Class
/// </summary>
///
/// <remarks>
/// Allows the installation of Timeout Handlers on the GLib main
/// loop.
/// </remarks>
public class Timeout {
private Timeout () {}

View File

@ -25,28 +25,11 @@ namespace GLib {
using System;
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)]
public struct GType {
IntPtr val;
/// <summary>
/// GType Constructor
/// </summary>
///
/// <remarks>
/// Constructs a new GType from a native GType value.
/// </remarks>
public GType (IntPtr val) {
this.val = val;
}

View File

@ -21,14 +21,6 @@
namespace GLib {
/// <summary>
/// TypeFundamentals enumeration
/// </summary>
///
/// <remarks>
/// The built-in types available in GLib.
/// </remarks>
public enum TypeFundamentals {
TypeInvalid = 0 << 2,
TypeNone = 1 << 2,