2005-04-06 Mike Kestner <mkestner@novell.com>
* gtk/FileFilter.custom : AddCustom delegate is destroy notified. * gtk/Gtk.metadata : hide FileFilter.AddCustom. hide gtk_object_get|set. svn path=/trunk/gtk-sharp/; revision=42611
This commit is contained in:
parent
f695e74bd6
commit
ec96098612
5 changed files with 47 additions and 9 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-04-06 Mike Kestner <mkestner@novell.com>
|
||||
|
||||
* gtk/FileFilter.custom : AddCustom delegate is destroy notified.
|
||||
* gtk/Gtk.metadata : hide FileFilter.AddCustom. hide gtk_object_get|set.
|
||||
|
||||
2005-04-05 Mike Kestner <mkestner@novell.com>
|
||||
|
||||
* gtk/*.custom : persistent delegates for most of the remaining
|
||||
|
|
|
@ -186,7 +186,7 @@
|
|||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="AddCustom">
|
||||
<MemberSignature Language="C#" Value="public void AddCustom (Gtk.FileFilterFlags needed, Gtk.FileFilterFunc func, IntPtr data, IntPtr notify);" />
|
||||
<MemberSignature Language="C#" Value="public void AddCustom (Gtk.FileFilterFlags needed, Gtk.FileFilterFunc func);" />
|
||||
<MemberType>Method</MemberType>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Void</ReturnType>
|
||||
|
@ -194,17 +194,11 @@
|
|||
<Parameters>
|
||||
<Parameter Name="needed" Type="Gtk.FileFilterFlags" />
|
||||
<Parameter Name="func" Type="Gtk.FileFilterFunc" />
|
||||
<Parameter Name="data" Type="System.IntPtr" />
|
||||
<Parameter Name="notify" Type="System.IntPtr" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<summary>
|
||||
Adds a rule to a filter that allows files based on a custom callback function.
|
||||
</summary>
|
||||
<summary>Adds a rule to a filter that allows files based on a custom callback function.</summary>
|
||||
<param name="needed">a <see cref="T:System.Int32" /></param>
|
||||
<param name="func">a <see cref="T:Gtk.FileFilterFunc" /></param>
|
||||
<param name="data">a <see cref="T:System.IntPtr" /></param>
|
||||
<param name="notify">a <see cref="T:System.IntPtr" /></param>
|
||||
<remarks>
|
||||
The bitfield <paramref name="needed" /> which is passed in provides information
|
||||
about what sorts of information that the filter function needs;
|
||||
|
@ -214,4 +208,4 @@
|
|||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
</Type>
|
||||
</Type>
|
||||
|
|
35
gtk/FileFilter.custom
Normal file
35
gtk/FileFilter.custom
Normal file
|
@ -0,0 +1,35 @@
|
|||
// Gtk.FileFilter.custom - Gtk FileFilter class customizations
|
||||
//
|
||||
// Author: Mike Kestner <mkestner@novell.com>
|
||||
//
|
||||
// Copyright (c) 2005 Novell, Inc.
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or
|
||||
// modify it under the terms of version 2 of the Lesser 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
|
||||
// Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser 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.
|
||||
|
||||
|
||||
[DllImport("libgtk-win32-2.0-0.dll")]
|
||||
static extern void gtk_file_filter_add_custom(IntPtr raw, int needed, GtkSharp.FileFilterFuncNative func, IntPtr data, NativeDestroyNotify notify);
|
||||
|
||||
public void AddCustom (Gtk.FileFilterFlags needed, Gtk.FileFilterFunc func)
|
||||
{
|
||||
if (func == null) {
|
||||
gtk_file_filter_add_custom (Handle, (int) needed, null, IntPtr.Zero, null);
|
||||
return;
|
||||
}
|
||||
GtkSharp.FileFilterFuncWrapper func_wrapper = new GtkSharp.FileFilterFuncWrapper (func);
|
||||
GCHandle gch = GCHandle.Alloc (func_wrapper);
|
||||
gtk_file_filter_add_custom(Handle, (int) needed, func_wrapper.NativeDelegate, (IntPtr) gch, DestroyHelper.NotifyHandler);
|
||||
}
|
||||
|
|
@ -204,6 +204,7 @@
|
|||
<attr path="/api/namespace/object[@cname='GtkExpander']/constructor[@cname='gtk_expander_new_with_mnemonic']" name="preferred">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkFileChooserDialog']/constructor[@cname='gtk_file_chooser_dialog_new']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkFileChooserDialog']/constructor[@cname='gtk_file_chooser_dialog_new_with_backend']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkFileFilter']/method[@name='AddCustom']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkFileSelection']/method[@name='GetSelections']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkFilePath']" name="parent">GObject</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkExpander']/signal[@name='Activate']" name="name">Activated</attr>
|
||||
|
@ -270,6 +271,8 @@
|
|||
<attr path="/api/namespace/object[@cname='GtkMessageDialog']/constructor[@cname='gtk_message_dialog_new_with_markup']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkObject']/constructor[@cname='gtk_object_new']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkObject']/method[@name='Destroy']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkObject']/method[@name='Get']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkObject']/method[@name='Set']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkObject']/signal[@name='Destroy']" name="name">Destroyed</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkPlug']/constructor[@cname='gtk_plug_new']" name="hidden">1</attr>
|
||||
<attr path="/api/namespace/object[@cname='GtkPlug']/constructor[@cname='gtk_plug_new_for_display']" name="hidden">1</attr>
|
||||
|
|
|
@ -53,6 +53,7 @@ customs = \
|
|||
EntryCompletion.custom \
|
||||
FileChooserDialog.custom \
|
||||
FileChooserWidget.custom \
|
||||
FileFilter.custom \
|
||||
FileSelection.custom \
|
||||
FileSystemModel.custom \
|
||||
Frame.custom \
|
||||
|
|
Loading…
Reference in a new issue