~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

Viewing changes to fpcsrc/packages/extra/gtk2/gtk+/gtk/gtkfilechooserentry.inc

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
{$IFDEF read_forward_definitions}
3
 
{$ENDIF}
4
 
 
5
 
{$IFDEF read_interface_types}
6
 
type
7
 
   PGtkFileChooserEntry  = pointer;
8
 
   PPGtkFileChooserEntry = ^PGtkFileChooserEntry;
9
 
{$ENDIF}
10
 
 
11
 
{$IFDEF read_interface_rest}
12
 
 
13
 
function GTK_TYPE_FILE_CHOOSER_ENTRY : GType;
14
 
 
15
 
function GTK_FILE_CHOOSER_ENTRY(obj : pointer) : PGtkFileChooserEntry;
16
 
 
17
 
function GTK_IS_FILE_CHOOSER_ENTRY(obj : pointer) : gboolean;
18
 
 
19
 
function _gtk_file_chooser_entry_get_type:GType;cdecl;external gtklib name '_gtk_file_chooser_entry_get_type';
20
 
function _gtk_file_chooser_entry_new:PGtkWidget;cdecl;external gtklib name '_gtk_file_chooser_entry_new';
21
 
 
22
 
procedure _gtk_file_chooser_entry_set_file_system(chooser_entry:PGtkFileChooserEntry; file_system:PGtkFileSystem);cdecl;external gtklib name '_gtk_file_chooser_entry_set_file_system';
23
 
 
24
 
procedure _gtk_file_chooser_entry_set_base_folder(chooser_entry:PGtkFileChooserEntry; path:PGtkFilePath);cdecl;external gtklib name '_gtk_file_chooser_entry_set_base_folder';
25
 
 
26
 
procedure _gtk_file_chooser_entry_set_file_part(chooser_entry:PGtkFileChooserEntry; file_part:Pgchar);cdecl;external gtklib name '_gtk_file_chooser_entry_set_file_part';
27
 
 
28
 
function _gtk_file_chooser_entry_get_current_folder(chooser_entry:PGtkFileChooserEntry):PGtkFilePath;cdecl;external gtklib name '_gtk_file_chooser_entry_get_current_folder';
29
 
 
30
 
function _gtk_file_chooser_entry_get_file_part(chooser_entry:PGtkFileChooserEntry):Pgchar;cdecl;external gtklib name '_gtk_file_chooser_entry_get_file_part';
31
 
 
32
 
{$endif} {read_interface_rest}
33
 
 
34
 
{************************************************}
35
 
 
36
 
{$IFDEF read_implementation}
37
 
 
38
 
function GTK_TYPE_FILE_CHOOSER_ENTRY : GType;
39
 
  begin
40
 
     GTK_TYPE_FILE_CHOOSER_ENTRY:=_gtk_file_chooser_entry_get_type;
41
 
  end;
42
 
 
43
 
{return type}
44
 
function GTK_FILE_CHOOSER_ENTRY(obj : pointer) : PGtkFileChooserEntry;
45
 
begin
46
 
   GTK_FILE_CHOOSER_ENTRY:=G_TYPE_CHECK_INSTANCE_CAST(obj,GTK_TYPE_FILE_CHOOSER_ENTRY);
47
 
end;
48
 
 
49
 
function GTK_IS_FILE_CHOOSER_ENTRY(obj : pointer) : gboolean;
50
 
begin
51
 
   GTK_IS_FILE_CHOOSER_ENTRY:=G_TYPE_CHECK_INSTANCE_TYPE(obj,GTK_TYPE_FILE_CHOOSER_ENTRY);
52
 
end;
53
 
 
54
 
{$ENDIF} {read_implementation}