removed deprecated functions
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2085 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
parent
28bd62eab3
commit
04d7c59350
@ -376,8 +376,8 @@ type
|
||||
function get_attributes: PAtkAttributeSet; cdecl; inline;
|
||||
function get_description: Pgchar; cdecl; inline;
|
||||
function get_index_in_parent: gint; cdecl; inline;
|
||||
function get_layer: TAtkLayer; cdecl; inline;
|
||||
function get_mdi_zorder: gint; cdecl; inline;
|
||||
|
||||
|
||||
function get_n_accessible_children: gint; cdecl; inline;
|
||||
function get_name: Pgchar; cdecl; inline;
|
||||
function get_parent: PAtkObject; cdecl; inline;
|
||||
@ -1250,8 +1250,6 @@ function atk_object_factory_get_type: TGType; cdecl; external;
|
||||
function atk_object_get_attributes(AObject: PAtkObject): PAtkAttributeSet; cdecl; external;
|
||||
function atk_object_get_description(AObject: PAtkObject): Pgchar; cdecl; external;
|
||||
function atk_object_get_index_in_parent(AObject: PAtkObject): gint; cdecl; external;
|
||||
function atk_object_get_layer(AObject: PAtkObject): TAtkLayer; cdecl; external;
|
||||
function atk_object_get_mdi_zorder(AObject: PAtkObject): gint; cdecl; external;
|
||||
function atk_object_get_n_accessible_children(AObject: PAtkObject): gint; cdecl; external;
|
||||
function atk_object_get_name(AObject: PAtkObject): Pgchar; cdecl; external;
|
||||
function atk_object_get_parent(AObject: PAtkObject): PAtkObject; cdecl; external;
|
||||
@ -1476,16 +1474,6 @@ begin
|
||||
Result := Atk1.atk_object_get_index_in_parent(@self);
|
||||
end;
|
||||
|
||||
function TAtkObject.get_layer: TAtkLayer; cdecl;
|
||||
begin
|
||||
Result := Atk1.atk_object_get_layer(@self);
|
||||
end;
|
||||
|
||||
function TAtkObject.get_mdi_zorder: gint; cdecl;
|
||||
begin
|
||||
Result := Atk1.atk_object_get_mdi_zorder(@self);
|
||||
end;
|
||||
|
||||
function TAtkObject.get_n_accessible_children: gint; cdecl;
|
||||
begin
|
||||
Result := Atk1.atk_object_get_n_accessible_children(@self);
|
||||
|
@ -2276,43 +2276,6 @@ const
|
||||
PARENT_RELATIVE = 1;
|
||||
PRIORITY_REDRAW = 20;
|
||||
|
||||
type
|
||||
TGdkModifierType = Integer;
|
||||
const
|
||||
{ GdkModifierType }
|
||||
GDK_SHIFT_MASK: TGdkModifierType = 1;
|
||||
GDK_LOCK_MASK: TGdkModifierType = 2;
|
||||
GDK_CONTROL_MASK: TGdkModifierType = 4;
|
||||
GDK_MOD1_MASK: TGdkModifierType = 8;
|
||||
GDK_MOD2_MASK: TGdkModifierType = 16;
|
||||
GDK_MOD3_MASK: TGdkModifierType = 32;
|
||||
GDK_MOD4_MASK: TGdkModifierType = 64;
|
||||
GDK_MOD5_MASK: TGdkModifierType = 128;
|
||||
GDK_BUTTON1_MASK: TGdkModifierType = 256;
|
||||
GDK_BUTTON2_MASK: TGdkModifierType = 512;
|
||||
GDK_BUTTON3_MASK: TGdkModifierType = 1024;
|
||||
GDK_BUTTON4_MASK: TGdkModifierType = 2048;
|
||||
GDK_BUTTON5_MASK: TGdkModifierType = 4096;
|
||||
GDK_MODIFIER_RESERVED_13_MASK: TGdkModifierType = 8192;
|
||||
GDK_MODIFIER_RESERVED_14_MASK: TGdkModifierType = 16384;
|
||||
GDK_MODIFIER_RESERVED_15_MASK: TGdkModifierType = 32768;
|
||||
GDK_MODIFIER_RESERVED_16_MASK: TGdkModifierType = 65536;
|
||||
GDK_MODIFIER_RESERVED_17_MASK: TGdkModifierType = 131072;
|
||||
GDK_MODIFIER_RESERVED_18_MASK: TGdkModifierType = 262144;
|
||||
GDK_MODIFIER_RESERVED_19_MASK: TGdkModifierType = 524288;
|
||||
GDK_MODIFIER_RESERVED_20_MASK: TGdkModifierType = 1048576;
|
||||
GDK_MODIFIER_RESERVED_21_MASK: TGdkModifierType = 2097152;
|
||||
GDK_MODIFIER_RESERVED_22_MASK: TGdkModifierType = 4194304;
|
||||
GDK_MODIFIER_RESERVED_23_MASK: TGdkModifierType = 8388608;
|
||||
GDK_MODIFIER_RESERVED_24_MASK: TGdkModifierType = 16777216;
|
||||
GDK_MODIFIER_RESERVED_25_MASK: TGdkModifierType = 33554432;
|
||||
GDK_SUPER_MASK: TGdkModifierType = 67108864;
|
||||
GDK_HYPER_MASK: TGdkModifierType = 134217728;
|
||||
GDK_META_MASK: TGdkModifierType = 268435456;
|
||||
GDK_MODIFIER_RESERVED_29_MASK: TGdkModifierType = 536870912;
|
||||
GDK_RELEASE_MASK: TGdkModifierType = 1073741824;
|
||||
GDK_MODIFIER_MASK: TGdkModifierType = 1543512063;
|
||||
|
||||
type
|
||||
TGdkAxisUse = Integer;
|
||||
const
|
||||
@ -2429,6 +2392,43 @@ const
|
||||
GDK_BLANK_CURSOR: TGdkCursorType = -2;
|
||||
GDK_CURSOR_IS_PIXMAP: TGdkCursorType = -1;
|
||||
|
||||
type
|
||||
TGdkModifierType = Integer;
|
||||
const
|
||||
{ GdkModifierType }
|
||||
GDK_SHIFT_MASK: TGdkModifierType = 1;
|
||||
GDK_LOCK_MASK: TGdkModifierType = 2;
|
||||
GDK_CONTROL_MASK: TGdkModifierType = 4;
|
||||
GDK_MOD1_MASK: TGdkModifierType = 8;
|
||||
GDK_MOD2_MASK: TGdkModifierType = 16;
|
||||
GDK_MOD3_MASK: TGdkModifierType = 32;
|
||||
GDK_MOD4_MASK: TGdkModifierType = 64;
|
||||
GDK_MOD5_MASK: TGdkModifierType = 128;
|
||||
GDK_BUTTON1_MASK: TGdkModifierType = 256;
|
||||
GDK_BUTTON2_MASK: TGdkModifierType = 512;
|
||||
GDK_BUTTON3_MASK: TGdkModifierType = 1024;
|
||||
GDK_BUTTON4_MASK: TGdkModifierType = 2048;
|
||||
GDK_BUTTON5_MASK: TGdkModifierType = 4096;
|
||||
GDK_MODIFIER_RESERVED_13_MASK: TGdkModifierType = 8192;
|
||||
GDK_MODIFIER_RESERVED_14_MASK: TGdkModifierType = 16384;
|
||||
GDK_MODIFIER_RESERVED_15_MASK: TGdkModifierType = 32768;
|
||||
GDK_MODIFIER_RESERVED_16_MASK: TGdkModifierType = 65536;
|
||||
GDK_MODIFIER_RESERVED_17_MASK: TGdkModifierType = 131072;
|
||||
GDK_MODIFIER_RESERVED_18_MASK: TGdkModifierType = 262144;
|
||||
GDK_MODIFIER_RESERVED_19_MASK: TGdkModifierType = 524288;
|
||||
GDK_MODIFIER_RESERVED_20_MASK: TGdkModifierType = 1048576;
|
||||
GDK_MODIFIER_RESERVED_21_MASK: TGdkModifierType = 2097152;
|
||||
GDK_MODIFIER_RESERVED_22_MASK: TGdkModifierType = 4194304;
|
||||
GDK_MODIFIER_RESERVED_23_MASK: TGdkModifierType = 8388608;
|
||||
GDK_MODIFIER_RESERVED_24_MASK: TGdkModifierType = 16777216;
|
||||
GDK_MODIFIER_RESERVED_25_MASK: TGdkModifierType = 33554432;
|
||||
GDK_SUPER_MASK: TGdkModifierType = 67108864;
|
||||
GDK_HYPER_MASK: TGdkModifierType = 134217728;
|
||||
GDK_META_MASK: TGdkModifierType = 268435456;
|
||||
GDK_MODIFIER_RESERVED_29_MASK: TGdkModifierType = 536870912;
|
||||
GDK_RELEASE_MASK: TGdkModifierType = 1073741824;
|
||||
GDK_MODIFIER_MASK: TGdkModifierType = 1543512063;
|
||||
|
||||
type
|
||||
TGdkGrabOwnership = Integer;
|
||||
const
|
||||
@ -2801,15 +2801,12 @@ type
|
||||
PPGdkAppLaunchContext = ^PGdkAppLaunchContext;
|
||||
PGdkAppLaunchContext = ^TGdkAppLaunchContext;
|
||||
|
||||
PPGdkDisplay = ^PGdkDisplay;
|
||||
PGdkDisplay = ^TGdkDisplay;
|
||||
|
||||
PPGdkScreen = ^PGdkScreen;
|
||||
PGdkScreen = ^TGdkScreen;
|
||||
TGdkAppLaunchContext = object(TGAppLaunchContext)
|
||||
function new: PGdkAppLaunchContext; cdecl; inline; static;
|
||||
|
||||
procedure set_desktop(desktop: gint); cdecl; inline;
|
||||
procedure set_display(display: PGdkDisplay); cdecl; inline;
|
||||
|
||||
procedure set_icon(icon: PGIcon); cdecl; inline;
|
||||
procedure set_icon_name(icon_name: Pgchar); cdecl; inline;
|
||||
procedure set_screen(screen: PGdkScreen); cdecl; inline;
|
||||
@ -2817,6 +2814,9 @@ type
|
||||
//property display: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_display { property is writeable but setter not declared } ;
|
||||
end;
|
||||
|
||||
PPGdkDisplay = ^PGdkDisplay;
|
||||
PGdkDisplay = ^TGdkDisplay;
|
||||
|
||||
PPGdkDevice = ^PGdkDevice;
|
||||
PGdkDevice = ^TGdkDevice;
|
||||
|
||||
@ -2829,9 +2829,6 @@ type
|
||||
PPGdkEvent = ^PGdkEvent;
|
||||
PGdkEvent = ^TGdkEvent;
|
||||
|
||||
PPGdkModifierType = ^PGdkModifierType;
|
||||
PGdkModifierType = ^TGdkModifierType;
|
||||
|
||||
PPPGdkAtom = ^PPGdkAtom;
|
||||
PPGdkAtom = ^PGdkAtom;
|
||||
PGdkAtom = ^TGdkAtom;
|
||||
@ -2857,17 +2854,17 @@ type
|
||||
procedure get_maximal_cursor_size(width: Pguint; height: Pguint); cdecl; inline;
|
||||
function get_n_screens: gint; cdecl; inline;
|
||||
function get_name: Pgchar; cdecl; inline;
|
||||
procedure get_pointer(screen: PPGdkScreen; x: Pgint; y: Pgint; mask: PGdkModifierType); cdecl; inline;
|
||||
|
||||
function get_screen(screen_num: gint): PGdkScreen; cdecl; inline;
|
||||
function get_window_at_pointer(win_x: Pgint; win_y: Pgint): PGdkWindow; cdecl; inline;
|
||||
|
||||
function has_pending: gboolean; cdecl; inline;
|
||||
function is_closed: gboolean; cdecl; inline;
|
||||
procedure keyboard_ungrab(time_: guint32); cdecl; inline;
|
||||
function list_devices: PGList; cdecl; inline;
|
||||
|
||||
|
||||
procedure notify_startup_complete(startup_id: Pgchar); cdecl; inline;
|
||||
function peek_event: PGdkEvent; cdecl; inline;
|
||||
function pointer_is_grabbed: gboolean; cdecl; inline;
|
||||
procedure pointer_ungrab(time_: guint32); cdecl; inline;
|
||||
|
||||
|
||||
procedure put_event(event: PGdkEvent); cdecl; inline;
|
||||
function request_selection_notification(selection: TGdkAtom): gboolean; cdecl; inline;
|
||||
procedure set_double_click_distance(distance: guint); cdecl; inline;
|
||||
@ -2881,7 +2878,7 @@ type
|
||||
function supports_selection_notification: gboolean; cdecl; inline;
|
||||
function supports_shapes: gboolean; cdecl; inline;
|
||||
procedure sync; cdecl; inline;
|
||||
procedure warp_pointer(screen: PGdkScreen; x: gint; y: gint); cdecl; inline;
|
||||
|
||||
end;
|
||||
|
||||
PPGdkVisual = ^PGdkVisual;
|
||||
@ -2961,8 +2958,8 @@ type
|
||||
function get_cursor_type: TGdkCursorType; cdecl; inline;
|
||||
function get_display: PGdkDisplay; cdecl; inline;
|
||||
function get_image: PGdkPixbuf; cdecl; inline;
|
||||
function ref: PGdkCursor; cdecl; inline;
|
||||
procedure unref; cdecl; inline;
|
||||
|
||||
|
||||
property cursor_type: TGdkCursorType read get_cursor_type { property is writeable but setter not declared } ;
|
||||
property display: PGdkDisplay read get_display { property is writeable but setter not declared } ;
|
||||
end;
|
||||
@ -2981,6 +2978,9 @@ type
|
||||
PPGdkDeviceType = ^PGdkDeviceType;
|
||||
PGdkDeviceType = ^TGdkDeviceType;
|
||||
|
||||
PPGdkModifierType = ^PGdkModifierType;
|
||||
PGdkModifierType = ^TGdkModifierType;
|
||||
|
||||
PPGdkInputMode = ^PGdkInputMode;
|
||||
PGdkInputMode = ^TGdkInputMode;
|
||||
|
||||
@ -3079,7 +3079,7 @@ type
|
||||
PGdkWindowHints = ^TGdkWindowHints;
|
||||
TGdkWindow = object(TGObject)
|
||||
function new(parent: PGdkWindow; attributes: PGdkWindowAttr; attributes_mask: gint): PGdkWindow; cdecl; inline; static;
|
||||
function at_pointer(win_x: Pgint; win_y: Pgint): PGdkWindow; cdecl; inline; static;
|
||||
|
||||
procedure constrain_size(geometry: PGdkGeometry; flags: guint; width: gint; height: gint; new_width: Pgint; new_height: Pgint); cdecl; inline; static;
|
||||
procedure process_all_updates; cdecl; inline; static;
|
||||
procedure set_debug_updates(setting: gboolean); cdecl; inline; static;
|
||||
@ -3128,7 +3128,7 @@ type
|
||||
function get_modal_hint: gboolean; cdecl; inline;
|
||||
function get_origin(x: Pgint; y: Pgint): gint; cdecl; inline;
|
||||
function get_parent: PGdkWindow; cdecl; inline;
|
||||
function get_pointer(x: Pgint; y: Pgint; mask: PGdkModifierType): PGdkWindow; cdecl; inline;
|
||||
|
||||
procedure get_position(x: Pgint; y: Pgint); cdecl; inline;
|
||||
procedure get_root_coords(x: gint; y: gint; root_x: Pgint; root_y: Pgint); cdecl; inline;
|
||||
procedure get_root_origin(x: Pgint; y: Pgint); cdecl; inline;
|
||||
@ -3763,7 +3763,6 @@ type
|
||||
|
||||
|
||||
function gdk_app_launch_context_get_type: TGType; cdecl; external;
|
||||
function gdk_app_launch_context_new: PGdkAppLaunchContext; cdecl; external;
|
||||
function gdk_atom_intern(atom_name: Pgchar; only_if_exists: gboolean): TGdkAtom; cdecl; external;
|
||||
function gdk_atom_intern_static_string(atom_name: Pgchar): TGdkAtom; cdecl; external;
|
||||
function gdk_atom_name(AAtom: PGdkAtom): Pgchar; cdecl; external;
|
||||
@ -3784,7 +3783,6 @@ function gdk_cursor_new(cursor_type: TGdkCursorType): PGdkCursor; cdecl; externa
|
||||
function gdk_cursor_new_for_display(display: PGdkDisplay; cursor_type: TGdkCursorType): PGdkCursor; cdecl; external;
|
||||
function gdk_cursor_new_from_name(display: PGdkDisplay; name: Pgchar): PGdkCursor; cdecl; external;
|
||||
function gdk_cursor_new_from_pixbuf(display: PGdkDisplay; pixbuf: PGdkPixbuf; x: gint; y: gint): PGdkCursor; cdecl; external;
|
||||
function gdk_cursor_ref(ACursor: PGdkCursor): PGdkCursor; cdecl; external;
|
||||
function gdk_device_get_associated_device(ADevice: PGdkDevice): PGdkDevice; cdecl; external;
|
||||
function gdk_device_get_axis(ADevice: PGdkDevice; axes: Pgdouble; use: TGdkAxisUse; value: Pgdouble): gboolean; cdecl; external;
|
||||
function gdk_device_get_axis_use(ADevice: PGdkDevice; index_: guint): TGdkAxisUse; cdecl; external;
|
||||
@ -3822,10 +3820,8 @@ function gdk_display_get_n_screens(ADisplay: PGdkDisplay): gint; cdecl; external
|
||||
function gdk_display_get_name(ADisplay: PGdkDisplay): Pgchar; cdecl; external;
|
||||
function gdk_display_get_screen(ADisplay: PGdkDisplay; screen_num: gint): PGdkScreen; cdecl; external;
|
||||
function gdk_display_get_type: TGType; cdecl; external;
|
||||
function gdk_display_get_window_at_pointer(ADisplay: PGdkDisplay; win_x: Pgint; win_y: Pgint): PGdkWindow; cdecl; external;
|
||||
function gdk_display_has_pending(ADisplay: PGdkDisplay): gboolean; cdecl; external;
|
||||
function gdk_display_is_closed(ADisplay: PGdkDisplay): gboolean; cdecl; external;
|
||||
function gdk_display_list_devices(ADisplay: PGdkDisplay): PGList; cdecl; external;
|
||||
function gdk_display_manager_get: PGdkDisplayManager; cdecl; external;
|
||||
function gdk_display_manager_get_default_display(ADisplayManager: PGdkDisplayManager): PGdkDisplay; cdecl; external;
|
||||
function gdk_display_manager_get_type: TGType; cdecl; external;
|
||||
@ -3834,7 +3830,6 @@ function gdk_display_manager_open_display(ADisplayManager: PGdkDisplayManager; n
|
||||
function gdk_display_open(display_name: Pgchar): PGdkDisplay; cdecl; external;
|
||||
function gdk_display_open_default_libgtk_only: PGdkDisplay; cdecl; external;
|
||||
function gdk_display_peek_event(ADisplay: PGdkDisplay): PGdkEvent; cdecl; external;
|
||||
function gdk_display_pointer_is_grabbed(ADisplay: PGdkDisplay): gboolean; cdecl; external;
|
||||
function gdk_display_request_selection_notification(ADisplay: PGdkDisplay; selection: TGdkAtom): gboolean; cdecl; external;
|
||||
function gdk_display_supports_clipboard_persistence(ADisplay: PGdkDisplay): gboolean; cdecl; external;
|
||||
function gdk_display_supports_composite(ADisplay: PGdkDisplay): gboolean; cdecl; external;
|
||||
@ -3987,7 +3982,6 @@ function gdk_visual_get_screen(AVisual: PGdkVisual): PGdkScreen; cdecl; external
|
||||
function gdk_visual_get_system: PGdkVisual; cdecl; external;
|
||||
function gdk_visual_get_type: TGType; cdecl; external;
|
||||
function gdk_visual_get_visual_type(AVisual: PGdkVisual): TGdkVisualType; cdecl; external;
|
||||
function gdk_window_at_pointer(win_x: Pgint; win_y: Pgint): PGdkWindow; cdecl; external;
|
||||
function gdk_window_create_similar_surface(AWindow: PGdkWindow; content: Tcairo_content_t; width: gint; height: gint): Pcairo_surface_t; cdecl; external;
|
||||
function gdk_window_ensure_native(AWindow: PGdkWindow): gboolean; cdecl; external;
|
||||
function gdk_window_get_accept_focus(AWindow: PGdkWindow): gboolean; cdecl; external;
|
||||
@ -4011,7 +4005,6 @@ function gdk_window_get_height(AWindow: PGdkWindow): gint; cdecl; external;
|
||||
function gdk_window_get_modal_hint(AWindow: PGdkWindow): gboolean; cdecl; external;
|
||||
function gdk_window_get_origin(AWindow: PGdkWindow; x: Pgint; y: Pgint): gint; cdecl; external;
|
||||
function gdk_window_get_parent(AWindow: PGdkWindow): PGdkWindow; cdecl; external;
|
||||
function gdk_window_get_pointer(AWindow: PGdkWindow; x: Pgint; y: Pgint; mask: PGdkModifierType): PGdkWindow; cdecl; external;
|
||||
function gdk_window_get_screen(AWindow: PGdkWindow): PGdkScreen; cdecl; external;
|
||||
function gdk_window_get_source_events(AWindow: PGdkWindow; source: TGdkInputSource): TGdkEventMask; cdecl; external;
|
||||
function gdk_window_get_state(AWindow: PGdkWindow): TGdkWindowState; cdecl; external;
|
||||
@ -4035,7 +4028,6 @@ function gdk_window_peek_children(AWindow: PGdkWindow): PGList; cdecl; external;
|
||||
function gdk_window_set_static_gravities(AWindow: PGdkWindow; use_static: gboolean): gboolean; cdecl; external;
|
||||
procedure gdk_add_option_entries_libgtk_only(group: PGOptionGroup); cdecl; external;
|
||||
procedure gdk_app_launch_context_set_desktop(AAppLaunchContext: PGdkAppLaunchContext; desktop: gint); cdecl; external;
|
||||
procedure gdk_app_launch_context_set_display(AAppLaunchContext: PGdkAppLaunchContext; display: PGdkDisplay); cdecl; external;
|
||||
procedure gdk_app_launch_context_set_icon(AAppLaunchContext: PGdkAppLaunchContext; icon: PGIcon); cdecl; external;
|
||||
procedure gdk_app_launch_context_set_icon_name(AAppLaunchContext: PGdkAppLaunchContext; icon_name: Pgchar); cdecl; external;
|
||||
procedure gdk_app_launch_context_set_screen(AAppLaunchContext: PGdkAppLaunchContext; screen: PGdkScreen); cdecl; external;
|
||||
@ -4048,7 +4040,6 @@ procedure gdk_cairo_set_source_pixbuf(cr: Pcairo_t; pixbuf: PGdkPixbuf; pixbuf_x
|
||||
procedure gdk_cairo_set_source_rgba(cr: Pcairo_t; rgba: PGdkRGBA); cdecl; external;
|
||||
procedure gdk_cairo_set_source_window(cr: Pcairo_t; window: PGdkWindow; x: gdouble; y: gdouble); cdecl; external;
|
||||
procedure gdk_color_free(AColor: PGdkColor); cdecl; external;
|
||||
procedure gdk_cursor_unref(ACursor: PGdkCursor); cdecl; external;
|
||||
procedure gdk_device_free_history(events: PPGdkTimeCoord; n_events: gint); cdecl; external;
|
||||
procedure gdk_device_get_position(ADevice: PGdkDevice; screen: PPGdkScreen; x: Pgint; y: Pgint); cdecl; external;
|
||||
procedure gdk_device_get_state(ADevice: PGdkDevice; window: PGdkWindow; axes: Pgdouble; mask: PGdkModifierType); cdecl; external;
|
||||
@ -4061,17 +4052,13 @@ procedure gdk_display_beep(ADisplay: PGdkDisplay); cdecl; external;
|
||||
procedure gdk_display_close(ADisplay: PGdkDisplay); cdecl; external;
|
||||
procedure gdk_display_flush(ADisplay: PGdkDisplay); cdecl; external;
|
||||
procedure gdk_display_get_maximal_cursor_size(ADisplay: PGdkDisplay; width: Pguint; height: Pguint); cdecl; external;
|
||||
procedure gdk_display_get_pointer(ADisplay: PGdkDisplay; screen: PPGdkScreen; x: Pgint; y: Pgint; mask: PGdkModifierType); cdecl; external;
|
||||
procedure gdk_display_keyboard_ungrab(ADisplay: PGdkDisplay; time_: guint32); cdecl; external;
|
||||
procedure gdk_display_manager_set_default_display(ADisplayManager: PGdkDisplayManager; display: PGdkDisplay); cdecl; external;
|
||||
procedure gdk_display_notify_startup_complete(ADisplay: PGdkDisplay; startup_id: Pgchar); cdecl; external;
|
||||
procedure gdk_display_pointer_ungrab(ADisplay: PGdkDisplay; time_: guint32); cdecl; external;
|
||||
procedure gdk_display_put_event(ADisplay: PGdkDisplay; event: PGdkEvent); cdecl; external;
|
||||
procedure gdk_display_set_double_click_distance(ADisplay: PGdkDisplay; distance: guint); cdecl; external;
|
||||
procedure gdk_display_set_double_click_time(ADisplay: PGdkDisplay; msec: guint); cdecl; external;
|
||||
procedure gdk_display_store_clipboard(ADisplay: PGdkDisplay; clipboard_window: PGdkWindow; time_: guint32; targets: PGdkAtom; n_targets: gint); cdecl; external;
|
||||
procedure gdk_display_sync(ADisplay: PGdkDisplay); cdecl; external;
|
||||
procedure gdk_display_warp_pointer(ADisplay: PGdkDisplay; screen: PGdkScreen; x: gint; y: gint); cdecl; external;
|
||||
procedure gdk_drag_abort(context: PGdkDragContext; time_: guint32); cdecl; external;
|
||||
procedure gdk_drag_context_set_device(ADragContext: PGdkDragContext; device: PGdkDevice); cdecl; external;
|
||||
procedure gdk_drag_drop(context: PGdkDragContext; time_: guint32); cdecl; external;
|
||||
@ -4218,21 +4205,11 @@ procedure gdk_window_unmaximize(AWindow: PGdkWindow); cdecl; external;
|
||||
procedure gdk_window_unstick(AWindow: PGdkWindow); cdecl; external;
|
||||
procedure gdk_window_withdraw(AWindow: PGdkWindow); cdecl; external;
|
||||
implementation
|
||||
function TGdkAppLaunchContext.new: PGdkAppLaunchContext; cdecl;
|
||||
begin
|
||||
Result := Gdk3.gdk_app_launch_context_new();
|
||||
end;
|
||||
|
||||
procedure TGdkAppLaunchContext.set_desktop(desktop: gint); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_app_launch_context_set_desktop(@self, desktop);
|
||||
end;
|
||||
|
||||
procedure TGdkAppLaunchContext.set_display(display: PGdkDisplay); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_app_launch_context_set_display(@self, display);
|
||||
end;
|
||||
|
||||
procedure TGdkAppLaunchContext.set_icon(icon: PGIcon); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_app_launch_context_set_icon(@self, icon);
|
||||
@ -4333,21 +4310,11 @@ begin
|
||||
Result := Gdk3.gdk_display_get_name(@self);
|
||||
end;
|
||||
|
||||
procedure TGdkDisplay.get_pointer(screen: PPGdkScreen; x: Pgint; y: Pgint; mask: PGdkModifierType); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_display_get_pointer(@self, screen, x, y, mask);
|
||||
end;
|
||||
|
||||
function TGdkDisplay.get_screen(screen_num: gint): PGdkScreen; cdecl;
|
||||
begin
|
||||
Result := Gdk3.gdk_display_get_screen(@self, screen_num);
|
||||
end;
|
||||
|
||||
function TGdkDisplay.get_window_at_pointer(win_x: Pgint; win_y: Pgint): PGdkWindow; cdecl;
|
||||
begin
|
||||
Result := Gdk3.gdk_display_get_window_at_pointer(@self, win_x, win_y);
|
||||
end;
|
||||
|
||||
function TGdkDisplay.has_pending: gboolean; cdecl;
|
||||
begin
|
||||
Result := Gdk3.gdk_display_has_pending(@self);
|
||||
@ -4358,16 +4325,6 @@ begin
|
||||
Result := Gdk3.gdk_display_is_closed(@self);
|
||||
end;
|
||||
|
||||
procedure TGdkDisplay.keyboard_ungrab(time_: guint32); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_display_keyboard_ungrab(@self, time_);
|
||||
end;
|
||||
|
||||
function TGdkDisplay.list_devices: PGList; cdecl;
|
||||
begin
|
||||
Result := Gdk3.gdk_display_list_devices(@self);
|
||||
end;
|
||||
|
||||
procedure TGdkDisplay.notify_startup_complete(startup_id: Pgchar); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_display_notify_startup_complete(@self, startup_id);
|
||||
@ -4378,16 +4335,6 @@ begin
|
||||
Result := Gdk3.gdk_display_peek_event(@self);
|
||||
end;
|
||||
|
||||
function TGdkDisplay.pointer_is_grabbed: gboolean; cdecl;
|
||||
begin
|
||||
Result := Gdk3.gdk_display_pointer_is_grabbed(@self);
|
||||
end;
|
||||
|
||||
procedure TGdkDisplay.pointer_ungrab(time_: guint32); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_display_pointer_ungrab(@self, time_);
|
||||
end;
|
||||
|
||||
procedure TGdkDisplay.put_event(event: PGdkEvent); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_display_put_event(@self, event);
|
||||
@ -4468,11 +4415,6 @@ begin
|
||||
Gdk3.gdk_display_sync(@self);
|
||||
end;
|
||||
|
||||
procedure TGdkDisplay.warp_pointer(screen: PGdkScreen; x: gint; y: gint); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_display_warp_pointer(@self, screen, x, y);
|
||||
end;
|
||||
|
||||
function TGdkScreen.get_default: PGdkScreen; cdecl;
|
||||
begin
|
||||
Result := Gdk3.gdk_screen_get_default();
|
||||
@ -4703,16 +4645,6 @@ begin
|
||||
Result := Gdk3.gdk_cursor_get_image(@self);
|
||||
end;
|
||||
|
||||
function TGdkCursor.ref: PGdkCursor; cdecl;
|
||||
begin
|
||||
Result := Gdk3.gdk_cursor_ref(@self);
|
||||
end;
|
||||
|
||||
procedure TGdkCursor.unref; cdecl;
|
||||
begin
|
||||
Gdk3.gdk_cursor_unref(@self);
|
||||
end;
|
||||
|
||||
procedure TGdkDevice.free_history(events: PPGdkTimeCoord; n_events: gint); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_device_free_history(events, n_events);
|
||||
@ -4853,11 +4785,6 @@ begin
|
||||
Result := Gdk3.gdk_window_new(parent, attributes, attributes_mask);
|
||||
end;
|
||||
|
||||
function TGdkWindow.at_pointer(win_x: Pgint; win_y: Pgint): PGdkWindow; cdecl;
|
||||
begin
|
||||
Result := Gdk3.gdk_window_at_pointer(win_x, win_y);
|
||||
end;
|
||||
|
||||
procedure TGdkWindow.constrain_size(geometry: PGdkGeometry; flags: guint; width: gint; height: gint; new_width: Pgint; new_height: Pgint); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_window_constrain_size(geometry, flags, width, height, new_width, new_height);
|
||||
@ -5098,11 +5025,6 @@ begin
|
||||
Result := Gdk3.gdk_window_get_parent(@self);
|
||||
end;
|
||||
|
||||
function TGdkWindow.get_pointer(x: Pgint; y: Pgint; mask: PGdkModifierType): PGdkWindow; cdecl;
|
||||
begin
|
||||
Result := Gdk3.gdk_window_get_pointer(@self, x, y, mask);
|
||||
end;
|
||||
|
||||
procedure TGdkWindow.get_position(x: Pgint; y: Pgint); cdecl;
|
||||
begin
|
||||
Gdk3.gdk_window_get_position(@self, x, y);
|
||||
|
@ -155,7 +155,7 @@ type
|
||||
function get_rowstride: gint; cdecl; inline;
|
||||
function get_width: gint; cdecl; inline;
|
||||
function new_subpixbuf(src_x: gint; src_y: gint; width: gint; height: gint): PGdkPixbuf; cdecl; inline;
|
||||
function ref: PGdkPixbuf; cdecl; inline;
|
||||
|
||||
function rotate_simple(angle: TGdkPixbufRotation): PGdkPixbuf; cdecl; inline;
|
||||
procedure saturate_and_pixelate(dest: PGdkPixbuf; saturation: gfloat; pixelate: gboolean); cdecl; inline;
|
||||
//function save(filename: Pgchar; type_: Pgchar; error: PPGError; args: array of const): gboolean; cdecl; inline;
|
||||
@ -168,7 +168,7 @@ type
|
||||
function savev(filename: Pgchar; type_: Pgchar; option_keys: PPgchar; option_values: PPgchar): gboolean; cdecl; inline;
|
||||
procedure scale(dest: PGdkPixbuf; dest_x: gint; dest_y: gint; dest_width: gint; dest_height: gint; offset_x: gdouble; offset_y: gdouble; scale_x: gdouble; scale_y: gdouble; interp_type: TGdkInterpType); cdecl; inline;
|
||||
function scale_simple(dest_width: gint; dest_height: gint; interp_type: TGdkInterpType): PGdkPixbuf; cdecl; inline;
|
||||
procedure unref; cdecl; inline;
|
||||
|
||||
property bits_per_sample: gint read get_bits_per_sample { property is writeable but setter not declared } ;
|
||||
property colorspace: TGdkColorspace read get_colorspace { property is writeable but setter not declared } ;
|
||||
property has_alpha: gboolean read get_has_alpha { property is writeable but setter not declared } ;
|
||||
@ -230,8 +230,8 @@ type
|
||||
function get_static_image: PGdkPixbuf; cdecl; inline;
|
||||
function get_width: gint; cdecl; inline;
|
||||
function is_static_image: gboolean; cdecl; inline;
|
||||
function ref: PGdkPixbufAnimation; cdecl; inline;
|
||||
procedure unref; cdecl; inline;
|
||||
|
||||
|
||||
end;
|
||||
TGdkPixbufAnimationIter = object(TGObject)
|
||||
function advance(current_time: PGTimeVal): gboolean; cdecl; inline;
|
||||
@ -304,7 +304,6 @@ function gdk_pixbuf_animation_iter_get_pixbuf(APixbufAnimationIter: PGdkPixbufAn
|
||||
function gdk_pixbuf_animation_iter_get_type: TGType; cdecl; external;
|
||||
function gdk_pixbuf_animation_iter_on_currently_loading_frame(APixbufAnimationIter: PGdkPixbufAnimationIter): gboolean; cdecl; external;
|
||||
function gdk_pixbuf_animation_new_from_file(filename: Pgchar): PGdkPixbufAnimation; cdecl; external;
|
||||
function gdk_pixbuf_animation_ref(APixbufAnimation: PGdkPixbufAnimation): PGdkPixbufAnimation; cdecl; external;
|
||||
function gdk_pixbuf_apply_embedded_orientation(APixbuf: PGdkPixbuf): PGdkPixbuf; cdecl; external;
|
||||
function gdk_pixbuf_composite_color_simple(APixbuf: PGdkPixbuf; dest_width: gint; dest_height: gint; interp_type: TGdkInterpType; overall_alpha: gint; check_size: gint; color1: guint32; color2: guint32): PGdkPixbuf; cdecl; external;
|
||||
function gdk_pixbuf_copy(APixbuf: PGdkPixbuf): PGdkPixbuf; cdecl; external;
|
||||
@ -354,7 +353,6 @@ function gdk_pixbuf_new_from_stream_at_scale(stream: PGInputStream; width: gint;
|
||||
function gdk_pixbuf_new_from_stream_finish(async_result: PGAsyncResult): PGdkPixbuf; cdecl; external;
|
||||
function gdk_pixbuf_new_from_xpm_data(data: PPgchar): PGdkPixbuf; cdecl; external;
|
||||
function gdk_pixbuf_new_subpixbuf(APixbuf: PGdkPixbuf; src_x: gint; src_y: gint; width: gint; height: gint): PGdkPixbuf; cdecl; external;
|
||||
function gdk_pixbuf_ref(APixbuf: PGdkPixbuf): PGdkPixbuf; cdecl; external;
|
||||
function gdk_pixbuf_rotate_simple(APixbuf: PGdkPixbuf; angle: TGdkPixbufRotation): PGdkPixbuf; cdecl; external;
|
||||
function gdk_pixbuf_save(APixbuf: PGdkPixbuf; filename: Pgchar; type_: Pgchar; error: PPGError; args: array of const): gboolean; cdecl; external;
|
||||
function gdk_pixbuf_save_to_buffer(APixbuf: PGdkPixbuf; buffer: PPgchar; buffer_size: Pgsize; type_: Pgchar; error: PPGError; args: array of const): gboolean; cdecl; external;
|
||||
@ -373,7 +371,6 @@ function gdk_pixdata_deserialize(APixdata: PGdkPixdata; stream_length: guint; st
|
||||
function gdk_pixdata_from_pixbuf(APixdata: PGdkPixdata; pixbuf: PGdkPixbuf; use_rle: gboolean): gpointer; cdecl; external;
|
||||
function gdk_pixdata_serialize(APixdata: PGdkPixdata; stream_length_p: Pguint): Pguint8; cdecl; external;
|
||||
function gdk_pixdata_to_csource(APixdata: PGdkPixdata; name: Pgchar; dump_type: TGdkPixdataDumpType): PGString; cdecl; external;
|
||||
procedure gdk_pixbuf_animation_unref(APixbufAnimation: PGdkPixbufAnimation); cdecl; external;
|
||||
procedure gdk_pixbuf_composite(APixbuf: PGdkPixbuf; dest: PGdkPixbuf; dest_x: gint; dest_y: gint; dest_width: gint; dest_height: gint; offset_x: gdouble; offset_y: gdouble; scale_x: gdouble; scale_y: gdouble; interp_type: TGdkInterpType; overall_alpha: gint); cdecl; external;
|
||||
procedure gdk_pixbuf_composite_color(APixbuf: PGdkPixbuf; dest: PGdkPixbuf; dest_x: gint; dest_y: gint; dest_width: gint; dest_height: gint; offset_x: gdouble; offset_y: gdouble; scale_x: gdouble; scale_y: gdouble; interp_type: TGdkInterpType; overall_alpha: gint; check_x: gint; check_y: gint; check_size: gint; color1: guint32; color2: guint32); cdecl; external;
|
||||
procedure gdk_pixbuf_copy_area(APixbuf: PGdkPixbuf; src_x: gint; src_y: gint; width: gint; height: gint; dest_pixbuf: PGdkPixbuf; dest_x: gint; dest_y: gint); cdecl; external;
|
||||
@ -388,7 +385,6 @@ procedure gdk_pixbuf_save_to_stream_async(APixbuf: PGdkPixbuf; stream: PGOutputS
|
||||
procedure gdk_pixbuf_scale(APixbuf: PGdkPixbuf; dest: PGdkPixbuf; dest_x: gint; dest_y: gint; dest_width: gint; dest_height: gint; offset_x: gdouble; offset_y: gdouble; scale_x: gdouble; scale_y: gdouble; interp_type: TGdkInterpType); cdecl; external;
|
||||
procedure gdk_pixbuf_simple_anim_add_frame(APixbufSimpleAnim: PGdkPixbufSimpleAnim; pixbuf: PGdkPixbuf); cdecl; external;
|
||||
procedure gdk_pixbuf_simple_anim_set_loop(APixbufSimpleAnim: PGdkPixbufSimpleAnim; loop: gboolean); cdecl; external;
|
||||
procedure gdk_pixbuf_unref(APixbuf: PGdkPixbuf); cdecl; external;
|
||||
implementation
|
||||
function TGdkPixbuf.new(colorspace: TGdkColorspace; has_alpha: gboolean; bits_per_sample: gint; width: gint; height: gint): PGdkPixbuf; cdecl;
|
||||
begin
|
||||
@ -570,11 +566,6 @@ begin
|
||||
Result := GdkPixbuf2.gdk_pixbuf_new_subpixbuf(@self, src_x, src_y, width, height);
|
||||
end;
|
||||
|
||||
function TGdkPixbuf.ref: PGdkPixbuf; cdecl;
|
||||
begin
|
||||
Result := GdkPixbuf2.gdk_pixbuf_ref(@self);
|
||||
end;
|
||||
|
||||
function TGdkPixbuf.rotate_simple(angle: TGdkPixbufRotation): PGdkPixbuf; cdecl;
|
||||
begin
|
||||
Result := GdkPixbuf2.gdk_pixbuf_rotate_simple(@self, angle);
|
||||
@ -610,11 +601,6 @@ begin
|
||||
Result := GdkPixbuf2.gdk_pixbuf_scale_simple(@self, dest_width, dest_height, interp_type);
|
||||
end;
|
||||
|
||||
procedure TGdkPixbuf.unref; cdecl;
|
||||
begin
|
||||
GdkPixbuf2.gdk_pixbuf_unref(@self);
|
||||
end;
|
||||
|
||||
function TGdkPixdata.deserialize(stream_length: guint; stream: Pguint8): gboolean; cdecl;
|
||||
begin
|
||||
Result := GdkPixbuf2.gdk_pixdata_deserialize(@self, stream_length, stream);
|
||||
@ -720,16 +706,6 @@ begin
|
||||
Result := GdkPixbuf2.gdk_pixbuf_animation_is_static_image(@self);
|
||||
end;
|
||||
|
||||
function TGdkPixbufAnimation.ref: PGdkPixbufAnimation; cdecl;
|
||||
begin
|
||||
Result := GdkPixbuf2.gdk_pixbuf_animation_ref(@self);
|
||||
end;
|
||||
|
||||
procedure TGdkPixbufAnimation.unref; cdecl;
|
||||
begin
|
||||
GdkPixbuf2.gdk_pixbuf_animation_unref(@self);
|
||||
end;
|
||||
|
||||
function TGdkPixbufAnimationIter.advance(current_time: PGTimeVal): gboolean; cdecl;
|
||||
begin
|
||||
Result := GdkPixbuf2.gdk_pixbuf_animation_iter_advance(@self, current_time);
|
||||
|
@ -1106,8 +1106,8 @@ type
|
||||
function create_readwrite_finish(res: PGAsyncResult): PGFileIOStream; cdecl; inline;
|
||||
function delete(cancellable: PGCancellable): gboolean; cdecl; inline;
|
||||
function dup: PGFile; cdecl; inline;
|
||||
procedure eject_mountable(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function eject_mountable_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
|
||||
|
||||
procedure eject_mountable_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function eject_mountable_with_operation_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
function enumerate_children(attributes: Pgchar; flags: TGFileQueryInfoFlags; cancellable: PGCancellable): PGFileEnumerator; cdecl; inline;
|
||||
@ -1195,8 +1195,8 @@ type
|
||||
function stop_mountable_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
function supports_thread_contexts: gboolean; cdecl; inline;
|
||||
function trash(cancellable: PGCancellable): gboolean; cdecl; inline;
|
||||
procedure unmount_mountable(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function unmount_mountable_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
|
||||
|
||||
procedure unmount_mountable_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function unmount_mountable_with_operation_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
end;
|
||||
@ -2472,7 +2472,7 @@ type
|
||||
PPGDesktopAppInfoLookup = ^PGDesktopAppInfoLookup;
|
||||
PGDesktopAppInfoLookup = ^TGDesktopAppInfoLookup;
|
||||
TGDesktopAppInfoLookup = object
|
||||
function get_default_for_uri_scheme(uri_scheme: Pgchar): PGAppInfo; cdecl; inline;
|
||||
|
||||
end;
|
||||
|
||||
PPGDesktopAppInfoLookupIface = ^PGDesktopAppInfoLookupIface;
|
||||
@ -2529,8 +2529,8 @@ type
|
||||
function can_start: gboolean; cdecl; inline;
|
||||
function can_start_degraded: gboolean; cdecl; inline;
|
||||
function can_stop: gboolean; cdecl; inline;
|
||||
procedure eject(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function eject_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
|
||||
|
||||
procedure eject_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function eject_with_operation_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
function enumerate_identifiers: PPgchar; cdecl; inline;
|
||||
@ -2676,8 +2676,8 @@ type
|
||||
unmounted: procedure; cdecl;
|
||||
function can_eject: gboolean; cdecl; inline;
|
||||
function can_unmount: gboolean; cdecl; inline;
|
||||
procedure eject(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function eject_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
|
||||
|
||||
procedure eject_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function eject_with_operation_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
function get_default_location: PGFile; cdecl; inline;
|
||||
@ -2694,8 +2694,8 @@ type
|
||||
procedure remount(flags: TGMountMountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function remount_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
procedure shadow; cdecl; inline;
|
||||
procedure unmount(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function unmount_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
|
||||
|
||||
procedure unmount_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function unmount_with_operation_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
procedure unshadow; cdecl; inline;
|
||||
@ -3428,8 +3428,8 @@ type
|
||||
removed: procedure; cdecl;
|
||||
function can_eject: gboolean; cdecl; inline;
|
||||
function can_mount: gboolean; cdecl; inline;
|
||||
procedure eject(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function eject_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
|
||||
|
||||
procedure eject_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function eject_with_operation_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
function enumerate_identifiers: PPgchar; cdecl; inline;
|
||||
@ -3506,7 +3506,7 @@ type
|
||||
PGVolumeMonitor = ^TGVolumeMonitor;
|
||||
TGVolumeMonitor = object(TGObject)
|
||||
priv: gpointer;
|
||||
function adopt_orphan_mount(mount: PGMount): PGVolume; cdecl; inline; static;
|
||||
|
||||
function get: PGVolumeMonitor; cdecl; inline; static;
|
||||
function get_connected_drives: PGList; cdecl; inline;
|
||||
function get_mount_for_uuid(uuid: Pgchar): PGMount; cdecl; inline;
|
||||
@ -4613,7 +4613,7 @@ type
|
||||
function get_peer_certificate_errors: TGTlsCertificateFlags; cdecl; inline;
|
||||
function get_rehandshake_mode: TGTlsRehandshakeMode; cdecl; inline;
|
||||
function get_require_close_notify: gboolean; cdecl; inline;
|
||||
function get_use_system_certdb: gboolean; cdecl; inline;
|
||||
|
||||
function handshake(cancellable: PGCancellable): gboolean; cdecl; inline;
|
||||
procedure handshake_async(io_priority: gint; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; inline;
|
||||
function handshake_finish(result_: PGAsyncResult): gboolean; cdecl; inline;
|
||||
@ -4622,7 +4622,7 @@ type
|
||||
procedure set_interaction(interaction: PGTlsInteraction); cdecl; inline;
|
||||
procedure set_rehandshake_mode(mode: TGTlsRehandshakeMode); cdecl; inline;
|
||||
procedure set_require_close_notify(require_close_notify: gboolean); cdecl; inline;
|
||||
procedure set_use_system_certdb(use_system_certdb: gboolean); cdecl; inline;
|
||||
|
||||
//property base_io_stream: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_base_io_stream { property is writeable but setter not declared } ;
|
||||
property certificate: PGTlsCertificate read get_certificate { property is writeable but setter not declared } ;
|
||||
property database: PGTlsDatabase read get_database { property is writeable but setter not declared } ;
|
||||
@ -4631,7 +4631,7 @@ type
|
||||
property peer_certificate_errors: TGTlsCertificateFlags read get_peer_certificate_errors ;
|
||||
property rehandshake_mode: TGTlsRehandshakeMode read get_rehandshake_mode { property is writeable but setter not declared } ;
|
||||
property require_close_notify: gboolean read get_require_close_notify { property is writeable but setter not declared } ;
|
||||
property use_system_certdb: gboolean read get_use_system_certdb { property is writeable but setter not declared } ;
|
||||
//property use_system_certdb: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_use_system_certdb { property is writeable but setter not declared } ;
|
||||
end;
|
||||
|
||||
PPGTlsConnectionClass = ^PGTlsConnectionClass;
|
||||
@ -4961,11 +4961,11 @@ type
|
||||
TGUnixSocketAddress = object(TGSocketAddress)
|
||||
priv: PGUnixSocketAddressPrivate;
|
||||
function new(path: Pgchar): PGUnixSocketAddress; cdecl; inline; static;
|
||||
function new_abstract(path: Pgchar; path_len: gint): PGUnixSocketAddress; cdecl; inline; static;
|
||||
|
||||
function new_with_type(path: Pgchar; path_len: gint; type_: TGUnixSocketAddressType): PGUnixSocketAddress; cdecl; inline; static;
|
||||
function abstract_names_supported: gboolean; cdecl; inline; static;
|
||||
function get_address_type: TGUnixSocketAddressType; cdecl; inline;
|
||||
function get_is_abstract: gboolean; cdecl; inline;
|
||||
|
||||
function get_path: Pgchar; cdecl; inline;
|
||||
function get_path_len: gsize; cdecl; inline;
|
||||
//property abstract: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_abstract { property is writeable but setter not declared } ;
|
||||
@ -5430,7 +5430,6 @@ function g_desktop_app_info_get_nodisplay(ADesktopAppInfo: PGDesktopAppInfo): gb
|
||||
function g_desktop_app_info_get_show_in(ADesktopAppInfo: PGDesktopAppInfo; desktop_env: Pgchar): gboolean; cdecl; external;
|
||||
function g_desktop_app_info_get_type: TGType; cdecl; external;
|
||||
function g_desktop_app_info_launch_uris_as_manager(ADesktopAppInfo: PGDesktopAppInfo; uris: PGList; launch_context: PGAppLaunchContext; spawn_flags: TGSpawnFlags; user_setup: TGSpawnChildSetupFunc; user_setup_data: gpointer; pid_callback: TGDesktopAppLaunchCallback; pid_callback_data: gpointer): gboolean; cdecl; external;
|
||||
function g_desktop_app_info_lookup_get_default_for_uri_scheme(ADesktopAppInfoLookup: PGDesktopAppInfoLookup; uri_scheme: Pgchar): PGAppInfo; cdecl; external;
|
||||
function g_desktop_app_info_lookup_get_type: TGType; cdecl; external;
|
||||
function g_desktop_app_info_new(desktop_id: Pgchar): PGDesktopAppInfo; cdecl; external;
|
||||
function g_desktop_app_info_new_from_filename(filename: Pgchar): PGDesktopAppInfo; cdecl; external;
|
||||
@ -5440,7 +5439,6 @@ function g_drive_can_poll_for_media(ADrive: PGDrive): gboolean; cdecl; external;
|
||||
function g_drive_can_start(ADrive: PGDrive): gboolean; cdecl; external;
|
||||
function g_drive_can_start_degraded(ADrive: PGDrive): gboolean; cdecl; external;
|
||||
function g_drive_can_stop(ADrive: PGDrive): gboolean; cdecl; external;
|
||||
function g_drive_eject_finish(ADrive: PGDrive; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_drive_eject_with_operation_finish(ADrive: PGDrive; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_drive_enumerate_identifiers(ADrive: PGDrive): PPgchar; cdecl; external;
|
||||
function g_drive_get_icon(ADrive: PGDrive): PGIcon; cdecl; external;
|
||||
@ -5490,7 +5488,6 @@ function g_file_delete(AFile: PGFile; cancellable: PGCancellable): gboolean; cde
|
||||
function g_file_descriptor_based_get_fd(AFileDescriptorBased: PGFileDescriptorBased): gint; cdecl; external;
|
||||
function g_file_descriptor_based_get_type: TGType; cdecl; external;
|
||||
function g_file_dup(AFile: PGFile): PGFile; cdecl; external;
|
||||
function g_file_eject_mountable_finish(AFile: PGFile; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_file_eject_mountable_with_operation_finish(AFile: PGFile; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_file_enumerate_children(AFile: PGFile; attributes: Pgchar; flags: TGFileQueryInfoFlags; cancellable: PGCancellable): PGFileEnumerator; cdecl; external;
|
||||
function g_file_enumerate_children_finish(AFile: PGFile; res: PGAsyncResult): PGFileEnumerator; cdecl; external;
|
||||
@ -5622,7 +5619,6 @@ function g_file_start_mountable_finish(AFile: PGFile; result_: PGAsyncResult): g
|
||||
function g_file_stop_mountable_finish(AFile: PGFile; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_file_supports_thread_contexts(AFile: PGFile): gboolean; cdecl; external;
|
||||
function g_file_trash(AFile: PGFile; cancellable: PGCancellable): gboolean; cdecl; external;
|
||||
function g_file_unmount_mountable_finish(AFile: PGFile; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_file_unmount_mountable_with_operation_finish(AFile: PGFile; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_filename_completer_get_completion_suffix(AFilenameCompleter: PGFilenameCompleter; initial_text: Pgchar): Pgchar; cdecl; external;
|
||||
function g_filename_completer_get_completions(AFilenameCompleter: PGFilenameCompleter; initial_text: Pgchar): PPgchar; cdecl; external;
|
||||
@ -5720,7 +5716,6 @@ function g_memory_output_stream_new(data: gpointer; size: gsize; realloc_functio
|
||||
function g_memory_output_stream_steal_data(AMemoryOutputStream: PGMemoryOutputStream): gpointer; cdecl; external;
|
||||
function g_mount_can_eject(AMount: PGMount): gboolean; cdecl; external;
|
||||
function g_mount_can_unmount(AMount: PGMount): gboolean; cdecl; external;
|
||||
function g_mount_eject_finish(AMount: PGMount; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_mount_eject_with_operation_finish(AMount: PGMount; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_mount_get_default_location(AMount: PGMount): PGFile; cdecl; external;
|
||||
function g_mount_get_drive(AMount: PGMount): PGDrive; cdecl; external;
|
||||
@ -5742,7 +5737,6 @@ function g_mount_operation_get_type: TGType; cdecl; external;
|
||||
function g_mount_operation_get_username(AMountOperation: PGMountOperation): Pgchar; cdecl; external;
|
||||
function g_mount_operation_new: PGMountOperation; cdecl; external;
|
||||
function g_mount_remount_finish(AMount: PGMount; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_mount_unmount_finish(AMount: PGMount; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_mount_unmount_with_operation_finish(AMount: PGMount; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_native_volume_monitor_get_type: TGType; cdecl; external;
|
||||
function g_network_address_get_hostname(ANetworkAddress: PGNetworkAddress): Pgchar; cdecl; external;
|
||||
@ -6015,7 +6009,6 @@ function g_tls_connection_get_peer_certificate_errors(ATlsConnection: PGTlsConne
|
||||
function g_tls_connection_get_rehandshake_mode(ATlsConnection: PGTlsConnection): TGTlsRehandshakeMode; cdecl; external;
|
||||
function g_tls_connection_get_require_close_notify(ATlsConnection: PGTlsConnection): gboolean; cdecl; external;
|
||||
function g_tls_connection_get_type: TGType; cdecl; external;
|
||||
function g_tls_connection_get_use_system_certdb(ATlsConnection: PGTlsConnection): gboolean; cdecl; external;
|
||||
function g_tls_connection_handshake(ATlsConnection: PGTlsConnection; cancellable: PGCancellable): gboolean; cdecl; external;
|
||||
function g_tls_connection_handshake_finish(ATlsConnection: PGTlsConnection; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_tls_database_create_certificate_handle(ATlsDatabase: PGTlsDatabase; certificate: PGTlsCertificate): Pgchar; cdecl; external;
|
||||
@ -6105,12 +6098,10 @@ function g_unix_output_stream_get_type: TGType; cdecl; external;
|
||||
function g_unix_output_stream_new(fd: gint; close_fd: gboolean): PGUnixOutputStream; cdecl; external;
|
||||
function g_unix_socket_address_abstract_names_supported: gboolean; cdecl; external;
|
||||
function g_unix_socket_address_get_address_type(AUnixSocketAddress: PGUnixSocketAddress): TGUnixSocketAddressType; cdecl; external;
|
||||
function g_unix_socket_address_get_is_abstract(AUnixSocketAddress: PGUnixSocketAddress): gboolean; cdecl; external;
|
||||
function g_unix_socket_address_get_path(AUnixSocketAddress: PGUnixSocketAddress): Pgchar; cdecl; external;
|
||||
function g_unix_socket_address_get_path_len(AUnixSocketAddress: PGUnixSocketAddress): gsize; cdecl; external;
|
||||
function g_unix_socket_address_get_type: TGType; cdecl; external;
|
||||
function g_unix_socket_address_new(path: Pgchar): PGUnixSocketAddress; cdecl; external;
|
||||
function g_unix_socket_address_new_abstract(path: Pgchar; path_len: gint): PGUnixSocketAddress; cdecl; external;
|
||||
function g_unix_socket_address_new_with_type(path: Pgchar; path_len: gint; type_: TGUnixSocketAddressType): PGUnixSocketAddress; cdecl; external;
|
||||
function g_vfs_get_default: PGVfs; cdecl; external;
|
||||
function g_vfs_get_file_for_path(AVfs: PGVfs; path: Pgchar): PGFile; cdecl; external;
|
||||
@ -6122,7 +6113,6 @@ function g_vfs_is_active(AVfs: PGVfs): gboolean; cdecl; external;
|
||||
function g_vfs_parse_name(AVfs: PGVfs; parse_name: Pgchar): PGFile; cdecl; external;
|
||||
function g_volume_can_eject(AVolume: PGVolume): gboolean; cdecl; external;
|
||||
function g_volume_can_mount(AVolume: PGVolume): gboolean; cdecl; external;
|
||||
function g_volume_eject_finish(AVolume: PGVolume; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_volume_eject_with_operation_finish(AVolume: PGVolume; result_: PGAsyncResult): gboolean; cdecl; external;
|
||||
function g_volume_enumerate_identifiers(AVolume: PGVolume): PPgchar; cdecl; external;
|
||||
function g_volume_get_activation_root(AVolume: PGVolume): PGFile; cdecl; external;
|
||||
@ -6133,7 +6123,6 @@ function g_volume_get_mount(AVolume: PGVolume): PGMount; cdecl; external;
|
||||
function g_volume_get_name(AVolume: PGVolume): Pgchar; cdecl; external;
|
||||
function g_volume_get_type: TGType; cdecl; external;
|
||||
function g_volume_get_uuid(AVolume: PGVolume): Pgchar; cdecl; external;
|
||||
function g_volume_monitor_adopt_orphan_mount(mount: PGMount): PGVolume; cdecl; external;
|
||||
function g_volume_monitor_get: PGVolumeMonitor; cdecl; external;
|
||||
function g_volume_monitor_get_connected_drives(AVolumeMonitor: PGVolumeMonitor): PGList; cdecl; external;
|
||||
function g_volume_monitor_get_mount_for_uuid(AVolumeMonitor: PGVolumeMonitor; uuid: Pgchar): PGMount; cdecl; external;
|
||||
@ -6272,7 +6261,6 @@ procedure g_dbus_server_start(ADBusServer: PGDBusServer); cdecl; external;
|
||||
procedure g_dbus_server_stop(ADBusServer: PGDBusServer); cdecl; external;
|
||||
procedure g_dbus_signal_info_unref(ADBusSignalInfo: PGDBusSignalInfo); cdecl; external;
|
||||
procedure g_desktop_app_info_set_desktop_env(desktop_env: Pgchar); cdecl; external;
|
||||
procedure g_drive_eject(ADrive: PGDrive; flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_drive_eject_with_operation(ADrive: PGDrive; flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_drive_poll_for_media(ADrive: PGDrive; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_drive_start(ADrive: PGDrive; flags: TGDriveStartFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
@ -6286,7 +6274,6 @@ procedure g_file_attribute_matcher_unref(AFileAttributeMatcher: PGFileAttributeM
|
||||
procedure g_file_copy_async(AFile: PGFile; destination: PGFile; flags: TGFileCopyFlags; io_priority: gint; cancellable: PGCancellable; progress_callback: TGFileProgressCallback; progress_callback_data: gpointer; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_file_create_async(AFile: PGFile; flags: TGFileCreateFlags; io_priority: gint; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_file_create_readwrite_async(AFile: PGFile; flags: TGFileCreateFlags; io_priority: gint; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_file_eject_mountable(AFile: PGFile; flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_file_eject_mountable_with_operation(AFile: PGFile; flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_file_enumerate_children_async(AFile: PGFile; attributes: Pgchar; flags: TGFileQueryInfoFlags; io_priority: gint; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_file_enumerator_close_async(AFileEnumerator: PGFileEnumerator; io_priority: gint; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
@ -6342,7 +6329,6 @@ procedure g_file_set_attributes_async(AFile: PGFile; info: PGFileInfo; flags: TG
|
||||
procedure g_file_set_display_name_async(AFile: PGFile; display_name: Pgchar; io_priority: gint; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_file_start_mountable(AFile: PGFile; flags: TGDriveStartFlags; start_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_file_stop_mountable(AFile: PGFile; flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_file_unmount_mountable(AFile: PGFile; flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_file_unmount_mountable_with_operation(AFile: PGFile; flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_filename_completer_set_dirs_only(AFilenameCompleter: PGFilenameCompleter; dirs_only: gboolean); cdecl; external;
|
||||
procedure g_filter_input_stream_set_close_base_stream(AFilterInputStream: PGFilterInputStream; close_base: gboolean); cdecl; external;
|
||||
@ -6364,7 +6350,6 @@ procedure g_io_stream_close_async(AIOStream: PGIOStream; io_priority: gint; canc
|
||||
procedure g_io_stream_splice_async(AIOStream: PGIOStream; stream2: PGIOStream; flags: TGIOStreamSpliceFlags; io_priority: gint; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_loadable_icon_load_async(ALoadableIcon: PGLoadableIcon; size: gint; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_memory_input_stream_add_data(AMemoryInputStream: PGMemoryInputStream; data: Pguint8; len: gssize; destroy_: TGDestroyNotify); cdecl; external;
|
||||
procedure g_mount_eject(AMount: PGMount; flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_mount_eject_with_operation(AMount: PGMount; flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_mount_guess_content_type(AMount: PGMount; force_rescan: gboolean; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_mount_operation_reply(AMountOperation: PGMountOperation; result_: TGMountOperationResult); cdecl; external;
|
||||
@ -6376,7 +6361,6 @@ procedure g_mount_operation_set_password_save(AMountOperation: PGMountOperation;
|
||||
procedure g_mount_operation_set_username(AMountOperation: PGMountOperation; username: Pgchar); cdecl; external;
|
||||
procedure g_mount_remount(AMount: PGMount; flags: TGMountMountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_mount_shadow(AMount: PGMount); cdecl; external;
|
||||
procedure g_mount_unmount(AMount: PGMount; flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_mount_unmount_with_operation(AMount: PGMount; flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_mount_unshadow(AMount: PGMount); cdecl; external;
|
||||
procedure g_network_service_set_scheme(ANetworkService: PGNetworkService; scheme: Pgchar); cdecl; external;
|
||||
@ -6464,7 +6448,6 @@ procedure g_tls_connection_set_database(ATlsConnection: PGTlsConnection; databas
|
||||
procedure g_tls_connection_set_interaction(ATlsConnection: PGTlsConnection; interaction: PGTlsInteraction); cdecl; external;
|
||||
procedure g_tls_connection_set_rehandshake_mode(ATlsConnection: PGTlsConnection; mode: TGTlsRehandshakeMode); cdecl; external;
|
||||
procedure g_tls_connection_set_require_close_notify(ATlsConnection: PGTlsConnection; require_close_notify: gboolean); cdecl; external;
|
||||
procedure g_tls_connection_set_use_system_certdb(ATlsConnection: PGTlsConnection; use_system_certdb: gboolean); cdecl; external;
|
||||
procedure g_tls_database_lookup_certificate_for_handle_async(ATlsDatabase: PGTlsDatabase; handle: Pgchar; interaction: PGTlsInteraction; flags: TGTlsDatabaseLookupFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_tls_database_lookup_certificate_issuer_async(ATlsDatabase: PGTlsDatabase; certificate: PGTlsCertificate; interaction: PGTlsInteraction; flags: TGTlsDatabaseLookupFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_tls_database_lookup_certificates_issued_by_async(ATlsDatabase: PGTlsDatabase; issuer_raw_dn: Pguint8; interaction: PGTlsInteraction; flags: TGTlsDatabaseLookupFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
@ -6480,7 +6463,6 @@ procedure g_unix_mount_free(mount_entry: PGUnixMountEntry); cdecl; external;
|
||||
procedure g_unix_mount_monitor_set_rate_limit(AUnixMountMonitor: PGUnixMountMonitor; limit_msec: gint); cdecl; external;
|
||||
procedure g_unix_mount_point_free(AUnixMountPoint: PGUnixMountPoint); cdecl; external;
|
||||
procedure g_unix_output_stream_set_close_fd(AUnixOutputStream: PGUnixOutputStream; close_fd: gboolean); cdecl; external;
|
||||
procedure g_volume_eject(AVolume: PGVolume; flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_volume_eject_with_operation(AVolume: PGVolume; flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_volume_mount(AVolume: PGVolume; flags: TGMountMountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl; external;
|
||||
procedure g_zlib_compressor_set_file_info(AZlibCompressor: PGZlibCompressor; file_info: PGFileInfo); cdecl; external;
|
||||
@ -7030,16 +7012,6 @@ begin
|
||||
Result := Gio2.g_file_dup(@self);
|
||||
end;
|
||||
|
||||
procedure TGFile.eject_mountable(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_file_eject_mountable(@self, flags, cancellable, callback, user_data);
|
||||
end;
|
||||
|
||||
function TGFile.eject_mountable_finish(result_: PGAsyncResult): gboolean; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_file_eject_mountable_finish(@self, result_);
|
||||
end;
|
||||
|
||||
procedure TGFile.eject_mountable_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_file_eject_mountable_with_operation(@self, flags, mount_operation, cancellable, callback, user_data);
|
||||
@ -7475,16 +7447,6 @@ begin
|
||||
Result := Gio2.g_file_trash(@self, cancellable);
|
||||
end;
|
||||
|
||||
procedure TGFile.unmount_mountable(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_file_unmount_mountable(@self, flags, cancellable, callback, user_data);
|
||||
end;
|
||||
|
||||
function TGFile.unmount_mountable_finish(result_: PGAsyncResult): gboolean; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_file_unmount_mountable_finish(@self, result_);
|
||||
end;
|
||||
|
||||
procedure TGFile.unmount_mountable_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_file_unmount_mountable_with_operation(@self, flags, mount_operation, cancellable, callback, user_data);
|
||||
@ -9300,11 +9262,6 @@ begin
|
||||
Result := Gio2.g_desktop_app_info_launch_uris_as_manager(@self, uris, launch_context, spawn_flags, user_setup, user_setup_data, pid_callback, pid_callback_data);
|
||||
end;
|
||||
|
||||
function TGDesktopAppInfoLookup.get_default_for_uri_scheme(uri_scheme: Pgchar): PGAppInfo; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_desktop_app_info_lookup_get_default_for_uri_scheme(@self, uri_scheme);
|
||||
end;
|
||||
|
||||
function TGMountOperation.new: PGMountOperation; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_mount_operation_new();
|
||||
@ -9400,16 +9357,6 @@ begin
|
||||
Result := Gio2.g_drive_can_stop(@self);
|
||||
end;
|
||||
|
||||
procedure TGDrive.eject(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_drive_eject(@self, flags, cancellable, callback, user_data);
|
||||
end;
|
||||
|
||||
function TGDrive.eject_finish(result_: PGAsyncResult): gboolean; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_drive_eject_finish(@self, result_);
|
||||
end;
|
||||
|
||||
procedure TGDrive.eject_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_drive_eject_with_operation(@self, flags, mount_operation, cancellable, callback, user_data);
|
||||
@ -9645,16 +9592,6 @@ begin
|
||||
Result := Gio2.g_mount_can_unmount(@self);
|
||||
end;
|
||||
|
||||
procedure TGMount.eject(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_mount_eject(@self, flags, cancellable, callback, user_data);
|
||||
end;
|
||||
|
||||
function TGMount.eject_finish(result_: PGAsyncResult): gboolean; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_mount_eject_finish(@self, result_);
|
||||
end;
|
||||
|
||||
procedure TGMount.eject_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_mount_eject_with_operation(@self, flags, mount_operation, cancellable, callback, user_data);
|
||||
@ -9735,16 +9672,6 @@ begin
|
||||
Gio2.g_mount_shadow(@self);
|
||||
end;
|
||||
|
||||
procedure TGMount.unmount(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_mount_unmount(@self, flags, cancellable, callback, user_data);
|
||||
end;
|
||||
|
||||
function TGMount.unmount_finish(result_: PGAsyncResult): gboolean; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_mount_unmount_finish(@self, result_);
|
||||
end;
|
||||
|
||||
procedure TGMount.unmount_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_mount_unmount_with_operation(@self, flags, mount_operation, cancellable, callback, user_data);
|
||||
@ -10500,16 +10427,6 @@ begin
|
||||
Result := Gio2.g_volume_can_mount(@self);
|
||||
end;
|
||||
|
||||
procedure TGVolume.eject(flags: TGMountUnmountFlags; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_volume_eject(@self, flags, cancellable, callback, user_data);
|
||||
end;
|
||||
|
||||
function TGVolume.eject_finish(result_: PGAsyncResult): gboolean; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_volume_eject_finish(@self, result_);
|
||||
end;
|
||||
|
||||
procedure TGVolume.eject_with_operation(flags: TGMountUnmountFlags; mount_operation: PGMountOperation; cancellable: PGCancellable; callback: TGAsyncReadyCallback; user_data: gpointer); cdecl;
|
||||
begin
|
||||
Gio2.g_volume_eject_with_operation(@self, flags, mount_operation, cancellable, callback, user_data);
|
||||
@ -10575,11 +10492,6 @@ begin
|
||||
Result := Gio2.g_volume_should_automount(@self);
|
||||
end;
|
||||
|
||||
function TGVolumeMonitor.adopt_orphan_mount(mount: PGMount): PGVolume; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_volume_monitor_adopt_orphan_mount(mount);
|
||||
end;
|
||||
|
||||
function TGVolumeMonitor.get: PGVolumeMonitor; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_volume_monitor_get();
|
||||
@ -12050,11 +11962,6 @@ begin
|
||||
Result := Gio2.g_tls_connection_get_require_close_notify(@self);
|
||||
end;
|
||||
|
||||
function TGTlsConnection.get_use_system_certdb: gboolean; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_tls_connection_get_use_system_certdb(@self);
|
||||
end;
|
||||
|
||||
function TGTlsConnection.handshake(cancellable: PGCancellable): gboolean; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_tls_connection_handshake(@self, cancellable);
|
||||
@ -12095,11 +12002,6 @@ begin
|
||||
Gio2.g_tls_connection_set_require_close_notify(@self, require_close_notify);
|
||||
end;
|
||||
|
||||
procedure TGTlsConnection.set_use_system_certdb(use_system_certdb: gboolean); cdecl;
|
||||
begin
|
||||
Gio2.g_tls_connection_set_use_system_certdb(@self, use_system_certdb);
|
||||
end;
|
||||
|
||||
function TGTlsFileDatabase.new(anchors: Pgchar): PGTlsDatabase; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_tls_file_database_new(anchors);
|
||||
@ -12335,11 +12237,6 @@ begin
|
||||
Result := Gio2.g_unix_socket_address_new(path);
|
||||
end;
|
||||
|
||||
function TGUnixSocketAddress.new_abstract(path: Pgchar; path_len: gint): PGUnixSocketAddress; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_unix_socket_address_new_abstract(path, path_len);
|
||||
end;
|
||||
|
||||
function TGUnixSocketAddress.new_with_type(path: Pgchar; path_len: gint; type_: TGUnixSocketAddressType): PGUnixSocketAddress; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_unix_socket_address_new_with_type(path, path_len, type_);
|
||||
@ -12355,11 +12252,6 @@ begin
|
||||
Result := Gio2.g_unix_socket_address_get_address_type(@self);
|
||||
end;
|
||||
|
||||
function TGUnixSocketAddress.get_is_abstract: gboolean; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_unix_socket_address_get_is_abstract(@self);
|
||||
end;
|
||||
|
||||
function TGUnixSocketAddress.get_path: Pgchar; cdecl;
|
||||
begin
|
||||
Result := Gio2.g_unix_socket_address_get_path(@self);
|
||||
|
@ -1315,24 +1315,24 @@ type
|
||||
PPGCompletion = ^PGCompletion;
|
||||
PGCompletion = ^TGCompletion;
|
||||
|
||||
PPGCompletionStrncmpFunc = ^PGCompletionStrncmpFunc;
|
||||
PGCompletionStrncmpFunc = ^TGCompletionStrncmpFunc;
|
||||
|
||||
PPGCompletionFunc = ^PGCompletionFunc;
|
||||
PGCompletionFunc = ^TGCompletionFunc;
|
||||
|
||||
PPGCompletionStrncmpFunc = ^PGCompletionStrncmpFunc;
|
||||
PGCompletionStrncmpFunc = ^TGCompletionStrncmpFunc;
|
||||
TGCompletion = object
|
||||
items: PGList;
|
||||
func: TGCompletionFunc;
|
||||
prefix: Pgchar;
|
||||
cache: PGList;
|
||||
strncmp_func: TGCompletionStrncmpFunc;
|
||||
procedure add_items(items: PGList); cdecl; inline;
|
||||
procedure clear_items; cdecl; inline;
|
||||
function complete(prefix: Pgchar; new_prefix: PPgchar): PGList; cdecl; inline;
|
||||
function complete_utf8(prefix: Pgchar; new_prefix: PPgchar): PGList; cdecl; inline;
|
||||
procedure free; cdecl; inline;
|
||||
procedure remove_items(items: PGList); cdecl; inline;
|
||||
procedure set_compare(strncmp_func: TGCompletionStrncmpFunc); cdecl; inline;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
function new(func: TGCompletionFunc): PGCompletion; cdecl; inline; static;
|
||||
end;
|
||||
|
||||
@ -1408,7 +1408,7 @@ type
|
||||
procedure set_julian(julian_date: guint32); cdecl; inline;
|
||||
procedure set_month(month: TGDateMonth); cdecl; inline;
|
||||
procedure set_parse(str: Pgchar); cdecl; inline;
|
||||
procedure set_time(time_: TGTime); cdecl; inline;
|
||||
|
||||
procedure set_time_t(timet: glong); cdecl; inline;
|
||||
procedure set_time_val(timeval: PGTimeVal); cdecl; inline;
|
||||
procedure set_year(year: TGDateYear); cdecl; inline;
|
||||
@ -1938,7 +1938,7 @@ type
|
||||
procedure destroy_; cdecl; inline;
|
||||
function get_can_recurse: gboolean; cdecl; inline;
|
||||
function get_context: PGMainContext; cdecl; inline;
|
||||
procedure get_current_time(timeval: PGTimeVal); cdecl; inline;
|
||||
|
||||
function get_id: guint; cdecl; inline;
|
||||
function get_name: Pgchar; cdecl; inline;
|
||||
function get_priority: gint; cdecl; inline;
|
||||
@ -2143,10 +2143,10 @@ type
|
||||
function length(list: PGSList): guint; cdecl; inline; static;
|
||||
function nth(list: PGSList; n: guint): PGSList; cdecl; inline; static;
|
||||
function nth_data(list: PGSList; n: guint): gpointer; cdecl; inline; static;
|
||||
procedure pop_allocator; cdecl; inline; static;
|
||||
|
||||
function position(list: PGSList; llink: PGSList): gint; cdecl; inline; static;
|
||||
function prepend(list: PGSList; data: gpointer): PGSList; cdecl; inline; static;
|
||||
procedure push_allocator(dummy: gpointer); cdecl; inline; static;
|
||||
|
||||
function remove(list: PGSList; data: gpointer): PGSList; cdecl; inline; static;
|
||||
function remove_all(list: PGSList; data: gpointer): PGSList; cdecl; inline; static;
|
||||
function remove_link(list: PGSList; link_: PGSList): PGSList; cdecl; inline; static;
|
||||
@ -2533,22 +2533,22 @@ type
|
||||
PGTuples = ^TGTuples;
|
||||
TGTuples = object
|
||||
len: guint;
|
||||
procedure destroy_; cdecl; inline;
|
||||
function index(index_: gint; field: gint): gpointer; cdecl; inline;
|
||||
|
||||
|
||||
end;
|
||||
|
||||
PPGRelation = ^PGRelation;
|
||||
PGRelation = ^TGRelation;
|
||||
TGRelation = object
|
||||
function count(key: gpointer; field: gint): gint; cdecl; inline;
|
||||
function delete(key: gpointer; field: gint): gint; cdecl; inline;
|
||||
procedure destroy_; cdecl; inline;
|
||||
//function exists(args: array of const): gboolean; cdecl; inline;
|
||||
procedure index(field: gint; hash_func: TGHashFunc; key_equal_func: TGEqualFunc); cdecl; inline;
|
||||
//procedure insert(args: array of const); cdecl; inline;
|
||||
procedure print; cdecl; inline;
|
||||
function select(key: gpointer; field: gint): PGTuples; cdecl; inline;
|
||||
function new(fields: gint): PGRelation; cdecl; inline; static;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
end;
|
||||
|
||||
PPGScannerConfig = ^PGScannerConfig;
|
||||
@ -3325,8 +3325,6 @@ function g_checksum_type_get_length(checksum_type: TGChecksumType): gssize; cdec
|
||||
function g_child_watch_add(pid: TGPid; function_: TGChildWatchFunc; data: gpointer): guint; cdecl; external;
|
||||
function g_child_watch_add_full(priority: gint; pid: TGPid; function_: TGChildWatchFunc; data: gpointer; notify: TGDestroyNotify): guint; cdecl; external;
|
||||
function g_child_watch_source_new(pid: TGPid): PGSource; cdecl; external;
|
||||
function g_completion_complete(ACompletion: PGCompletion; prefix: Pgchar; new_prefix: PPgchar): PGList; cdecl; external;
|
||||
function g_completion_complete_utf8(ACompletion: PGCompletion; prefix: Pgchar; new_prefix: PPgchar): PGList; cdecl; external;
|
||||
function g_completion_new(func: TGCompletionFunc): PGCompletion; cdecl; external;
|
||||
function g_compute_checksum_for_data(checksum_type: TGChecksumType; data: Pguint8; length: gsize): Pgchar; cdecl; external;
|
||||
function g_compute_checksum_for_string(checksum_type: TGChecksumType; str: Pgchar; length: gssize): Pgchar; cdecl; external;
|
||||
@ -3812,11 +3810,6 @@ function g_regex_replace_literal(ARegex: PGRegex; string_: Pgchar; string_len: g
|
||||
function g_regex_split(ARegex: PGRegex; string_: Pgchar; match_options: TGRegexMatchFlags): PPgchar; cdecl; external;
|
||||
function g_regex_split_full(ARegex: PGRegex; string_: Pgchar; string_len: gssize; start_position: gint; match_options: TGRegexMatchFlags; max_tokens: gint): PPgchar; cdecl; external;
|
||||
function g_regex_split_simple(pattern: Pgchar; string_: Pgchar; compile_options: TGRegexCompileFlags; match_options: TGRegexMatchFlags): PPgchar; cdecl; external;
|
||||
function g_relation_count(ARelation: PGRelation; key: gpointer; field: gint): gint; cdecl; external;
|
||||
function g_relation_delete(ARelation: PGRelation; key: gpointer; field: gint): gint; cdecl; external;
|
||||
function g_relation_exists(ARelation: PGRelation; args: array of const): gboolean; cdecl; external;
|
||||
function g_relation_new(fields: gint): PGRelation; cdecl; external;
|
||||
function g_relation_select(ARelation: PGRelation; key: gpointer; field: gint): PGTuples; cdecl; external;
|
||||
function g_rmdir(filename: Pgchar): gint; cdecl; external;
|
||||
function g_scanner_cur_line(AScanner: PGScanner): guint; cdecl; external;
|
||||
function g_scanner_cur_position(AScanner: PGScanner): guint; cdecl; external;
|
||||
@ -4058,7 +4051,6 @@ function g_try_malloc0_n(n_blocks: gsize; n_block_bytes: gsize): gpointer; cdecl
|
||||
function g_try_malloc_n(n_blocks: gsize; n_block_bytes: gsize): gpointer; cdecl; external;
|
||||
function g_try_realloc(mem: gpointer; n_bytes: gsize): gpointer; cdecl; external;
|
||||
function g_try_realloc_n(mem: gpointer; n_blocks: gsize; n_block_bytes: gsize): gpointer; cdecl; external;
|
||||
function g_tuples_index(ATuples: PGTuples; index_: gint; field: gint): gpointer; cdecl; external;
|
||||
function g_ucs4_to_utf16(str: Pgunichar; len: glong; items_read: Pglong; items_written: Pglong): Pguint16; cdecl; external;
|
||||
function g_ucs4_to_utf8(str: Pgunichar; len: glong; items_read: Pglong; items_written: Pglong): Pgchar; cdecl; external;
|
||||
function g_unichar_break_type(c: gunichar): TGUnicodeBreakType; cdecl; external;
|
||||
@ -4305,11 +4297,6 @@ procedure g_checksum_get_digest(AChecksum: PGChecksum; buffer: Pguint8; digest_l
|
||||
procedure g_checksum_reset(AChecksum: PGChecksum); cdecl; external;
|
||||
procedure g_checksum_update(AChecksum: PGChecksum; data: Pguint8; length: gssize); cdecl; external;
|
||||
procedure g_clear_error; cdecl; external;
|
||||
procedure g_completion_add_items(ACompletion: PGCompletion; items: PGList); cdecl; external;
|
||||
procedure g_completion_clear_items(ACompletion: PGCompletion); cdecl; external;
|
||||
procedure g_completion_free(ACompletion: PGCompletion); cdecl; external;
|
||||
procedure g_completion_remove_items(ACompletion: PGCompletion; items: PGList); cdecl; external;
|
||||
procedure g_completion_set_compare(ACompletion: PGCompletion; strncmp_func: TGCompletionStrncmpFunc); cdecl; external;
|
||||
procedure g_datalist_clear(datalist: PPGData); cdecl; external;
|
||||
procedure g_datalist_foreach(datalist: PPGData; func: TGDataForeachFunc; user_data: gpointer); cdecl; external;
|
||||
procedure g_datalist_id_set_data_full(datalist: PPGData; key_id: TGQuark; data: gpointer; destroy_func: TGDestroyNotify); cdecl; external;
|
||||
@ -4331,7 +4318,6 @@ procedure g_date_set_dmy(ADate: PGDate; day: TGDateDay; month: TGDateMonth; y: T
|
||||
procedure g_date_set_julian(ADate: PGDate; julian_date: guint32); cdecl; external;
|
||||
procedure g_date_set_month(ADate: PGDate; month: TGDateMonth); cdecl; external;
|
||||
procedure g_date_set_parse(ADate: PGDate; str: Pgchar); cdecl; external;
|
||||
procedure g_date_set_time(ADate: PGDate; time_: TGTime); cdecl; external;
|
||||
procedure g_date_set_time_t(ADate: PGDate; timet: glong); cdecl; external;
|
||||
procedure g_date_set_time_val(ADate: PGDate; timeval: PGTimeVal); cdecl; external;
|
||||
procedure g_date_set_year(ADate: PGDate; year: TGDateYear); cdecl; external;
|
||||
@ -4499,10 +4485,6 @@ procedure g_rand_set_seed(ARand: PGRand; seed: guint32); cdecl; external;
|
||||
procedure g_rand_set_seed_array(ARand: PGRand; seed: Pguint32; seed_length: guint); cdecl; external;
|
||||
procedure g_random_set_seed(seed: guint32); cdecl; external;
|
||||
procedure g_regex_unref(ARegex: PGRegex); cdecl; external;
|
||||
procedure g_relation_destroy(ARelation: PGRelation); cdecl; external;
|
||||
procedure g_relation_index(ARelation: PGRelation; field: gint; hash_func: TGHashFunc; key_equal_func: TGEqualFunc); cdecl; external;
|
||||
procedure g_relation_insert(ARelation: PGRelation; args: array of const); cdecl; external;
|
||||
procedure g_relation_print(ARelation: PGRelation); cdecl; external;
|
||||
procedure g_reload_user_special_dirs_cache; cdecl; external;
|
||||
procedure g_return_if_fail_warning(log_domain: Pgchar; pretty_function: Pgchar; expression: Pgchar); cdecl; external;
|
||||
procedure g_scanner_destroy(AScanner: PGScanner); cdecl; external;
|
||||
@ -4544,7 +4526,6 @@ procedure g_slist_push_allocator(dummy: gpointer); cdecl; external;
|
||||
procedure g_source_add_child_source(ASource: PGSource; child_source: PGSource); cdecl; external;
|
||||
procedure g_source_add_poll(ASource: PGSource; fd: PGPollFD); cdecl; external;
|
||||
procedure g_source_destroy(ASource: PGSource); cdecl; external;
|
||||
procedure g_source_get_current_time(ASource: PGSource; timeval: PGTimeVal); cdecl; external;
|
||||
procedure g_source_remove_child_source(ASource: PGSource; child_source: PGSource); cdecl; external;
|
||||
procedure g_source_remove_poll(ASource: PGSource; fd: PGPollFD); cdecl; external;
|
||||
procedure g_source_set_callback(ASource: PGSource; func: TGSourceFunc; data: gpointer; notify: TGDestroyNotify); cdecl; external;
|
||||
@ -4625,7 +4606,6 @@ procedure g_tree_insert(ATree: PGTree; key: gpointer; value: gpointer); cdecl; e
|
||||
procedure g_tree_replace(ATree: PGTree; key: gpointer; value: gpointer); cdecl; external;
|
||||
procedure g_tree_traverse(ATree: PGTree; traverse_func: TGTraverseFunc; traverse_type: TGTraverseType; user_data: gpointer); cdecl; external;
|
||||
procedure g_tree_unref(ATree: PGTree); cdecl; external;
|
||||
procedure g_tuples_destroy(ATuples: PGTuples); cdecl; external;
|
||||
procedure g_unicode_canonical_ordering(string_: Pgunichar; len: gsize); cdecl; external;
|
||||
procedure g_unsetenv(variable: Pgchar); cdecl; external;
|
||||
procedure g_usleep(microseconds: gulong); cdecl; external;
|
||||
@ -5352,41 +5332,6 @@ begin
|
||||
Result := GLib2.g_list_sort_with_data(list, compare_func, user_data);
|
||||
end;
|
||||
|
||||
procedure TGCompletion.add_items(items: PGList); cdecl;
|
||||
begin
|
||||
GLib2.g_completion_add_items(@self, items);
|
||||
end;
|
||||
|
||||
procedure TGCompletion.clear_items; cdecl;
|
||||
begin
|
||||
GLib2.g_completion_clear_items(@self);
|
||||
end;
|
||||
|
||||
function TGCompletion.complete(prefix: Pgchar; new_prefix: PPgchar): PGList; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_completion_complete(@self, prefix, new_prefix);
|
||||
end;
|
||||
|
||||
function TGCompletion.complete_utf8(prefix: Pgchar; new_prefix: PPgchar): PGList; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_completion_complete_utf8(@self, prefix, new_prefix);
|
||||
end;
|
||||
|
||||
procedure TGCompletion.free; cdecl;
|
||||
begin
|
||||
GLib2.g_completion_free(@self);
|
||||
end;
|
||||
|
||||
procedure TGCompletion.remove_items(items: PGList); cdecl;
|
||||
begin
|
||||
GLib2.g_completion_remove_items(@self, items);
|
||||
end;
|
||||
|
||||
procedure TGCompletion.set_compare(strncmp_func: TGCompletionStrncmpFunc); cdecl;
|
||||
begin
|
||||
GLib2.g_completion_set_compare(@self, strncmp_func);
|
||||
end;
|
||||
|
||||
function TGCompletion.new(func: TGCompletionFunc): PGCompletion; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_completion_new(func);
|
||||
@ -5532,11 +5477,6 @@ begin
|
||||
GLib2.g_date_set_parse(@self, str);
|
||||
end;
|
||||
|
||||
procedure TGDate.set_time(time_: TGTime); cdecl;
|
||||
begin
|
||||
GLib2.g_date_set_time(@self, time_);
|
||||
end;
|
||||
|
||||
procedure TGDate.set_time_t(timet: glong); cdecl;
|
||||
begin
|
||||
GLib2.g_date_set_time_t(@self, timet);
|
||||
@ -6597,11 +6537,6 @@ begin
|
||||
Result := GLib2.g_source_get_context(@self);
|
||||
end;
|
||||
|
||||
procedure TGSource.get_current_time(timeval: PGTimeVal); cdecl;
|
||||
begin
|
||||
GLib2.g_source_get_current_time(@self, timeval);
|
||||
end;
|
||||
|
||||
function TGSource.get_id: guint; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_source_get_id(@self);
|
||||
@ -7222,11 +7157,6 @@ begin
|
||||
Result := GLib2.g_slist_nth_data(list, n);
|
||||
end;
|
||||
|
||||
procedure TGSList.pop_allocator; cdecl;
|
||||
begin
|
||||
GLib2.g_slist_pop_allocator();
|
||||
end;
|
||||
|
||||
function TGSList.position(list: PGSList; llink: PGSList): gint; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_slist_position(list, llink);
|
||||
@ -7237,11 +7167,6 @@ begin
|
||||
Result := GLib2.g_slist_prepend(list, data);
|
||||
end;
|
||||
|
||||
procedure TGSList.push_allocator(dummy: gpointer); cdecl;
|
||||
begin
|
||||
GLib2.g_slist_push_allocator(dummy);
|
||||
end;
|
||||
|
||||
function TGSList.remove(list: PGSList; data: gpointer): PGSList; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_slist_remove(list, data);
|
||||
@ -8202,51 +8127,6 @@ begin
|
||||
Result := GLib2.g_rand_new_with_seed_array(seed, seed_length);
|
||||
end;
|
||||
|
||||
procedure TGTuples.destroy_; cdecl;
|
||||
begin
|
||||
GLib2.g_tuples_destroy(@self);
|
||||
end;
|
||||
|
||||
function TGTuples.index(index_: gint; field: gint): gpointer; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_tuples_index(@self, index_, field);
|
||||
end;
|
||||
|
||||
function TGRelation.count(key: gpointer; field: gint): gint; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_relation_count(@self, key, field);
|
||||
end;
|
||||
|
||||
function TGRelation.delete(key: gpointer; field: gint): gint; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_relation_delete(@self, key, field);
|
||||
end;
|
||||
|
||||
procedure TGRelation.destroy_; cdecl;
|
||||
begin
|
||||
GLib2.g_relation_destroy(@self);
|
||||
end;
|
||||
|
||||
procedure TGRelation.index(field: gint; hash_func: TGHashFunc; key_equal_func: TGEqualFunc); cdecl;
|
||||
begin
|
||||
GLib2.g_relation_index(@self, field, hash_func, key_equal_func);
|
||||
end;
|
||||
|
||||
procedure TGRelation.print; cdecl;
|
||||
begin
|
||||
GLib2.g_relation_print(@self);
|
||||
end;
|
||||
|
||||
function TGRelation.select(key: gpointer; field: gint): PGTuples; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_relation_select(@self, key, field);
|
||||
end;
|
||||
|
||||
function TGRelation.new(fields: gint): PGRelation; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_relation_new(fields);
|
||||
end;
|
||||
|
||||
function TGScanner.cur_line: guint; cdecl;
|
||||
begin
|
||||
Result := GLib2.g_scanner_cur_line(@self);
|
||||
|
@ -280,7 +280,7 @@ type
|
||||
function reset: PGValue; cdecl; inline;
|
||||
procedure set_boolean(v_boolean: gboolean); cdecl; inline;
|
||||
procedure set_boxed(v_boxed: gpointer); cdecl; inline;
|
||||
procedure set_boxed_take_ownership(v_boxed: gpointer); cdecl; inline;
|
||||
|
||||
procedure set_char(v_char: gchar); cdecl; inline;
|
||||
procedure set_double(v_double: gdouble); cdecl; inline;
|
||||
procedure set_enum(v_enum: gint); cdecl; inline;
|
||||
@ -292,14 +292,14 @@ type
|
||||
procedure set_int64(v_int64: gint64); cdecl; inline;
|
||||
procedure set_long(v_long: glong); cdecl; inline;
|
||||
procedure set_object(v_object: PGObject); cdecl; inline;
|
||||
procedure set_object_take_ownership(v_object: gpointer); cdecl; inline;
|
||||
|
||||
procedure set_param(param: PGParamSpec); cdecl; inline;
|
||||
procedure set_param_take_ownership(param: PGParamSpec); cdecl; inline;
|
||||
|
||||
procedure set_pointer(v_pointer: gpointer); cdecl; inline;
|
||||
procedure set_static_boxed(v_boxed: gpointer); cdecl; inline;
|
||||
procedure set_static_string(v_string: Pgchar); cdecl; inline;
|
||||
procedure set_string(v_string: Pgchar); cdecl; inline;
|
||||
procedure set_string_take_ownership(v_string: Pgchar); cdecl; inline;
|
||||
|
||||
procedure set_uchar(v_uchar: guint8); cdecl; inline;
|
||||
procedure set_uint(v_uint: guint); cdecl; inline;
|
||||
procedure set_uint64(v_uint64: guint64); cdecl; inline;
|
||||
@ -1337,7 +1337,6 @@ procedure g_value_copy(AValue: PGValue; dest_value: PGValue); cdecl; external;
|
||||
procedure g_value_register_transform_func(src_type: TGType; dest_type: TGType; transform_func: TGValueTransform); cdecl; external;
|
||||
procedure g_value_set_boolean(AValue: PGValue; v_boolean: gboolean); cdecl; external;
|
||||
procedure g_value_set_boxed(AValue: PGValue; v_boxed: gpointer); cdecl; external;
|
||||
procedure g_value_set_boxed_take_ownership(AValue: PGValue; v_boxed: gpointer); cdecl; external;
|
||||
procedure g_value_set_char(AValue: PGValue; v_char: gchar); cdecl; external;
|
||||
procedure g_value_set_double(AValue: PGValue; v_double: gdouble); cdecl; external;
|
||||
procedure g_value_set_enum(AValue: PGValue; v_enum: gint); cdecl; external;
|
||||
@ -1349,14 +1348,11 @@ procedure g_value_set_int(AValue: PGValue; v_int: gint); cdecl; external;
|
||||
procedure g_value_set_int64(AValue: PGValue; v_int64: gint64); cdecl; external;
|
||||
procedure g_value_set_long(AValue: PGValue; v_long: glong); cdecl; external;
|
||||
procedure g_value_set_object(AValue: PGValue; v_object: PGObject); cdecl; external;
|
||||
procedure g_value_set_object_take_ownership(AValue: PGValue; v_object: gpointer); cdecl; external;
|
||||
procedure g_value_set_param(AValue: PGValue; param: PGParamSpec); cdecl; external;
|
||||
procedure g_value_set_param_take_ownership(AValue: PGValue; param: PGParamSpec); cdecl; external;
|
||||
procedure g_value_set_pointer(AValue: PGValue; v_pointer: gpointer); cdecl; external;
|
||||
procedure g_value_set_static_boxed(AValue: PGValue; v_boxed: gpointer); cdecl; external;
|
||||
procedure g_value_set_static_string(AValue: PGValue; v_string: Pgchar); cdecl; external;
|
||||
procedure g_value_set_string(AValue: PGValue; v_string: Pgchar); cdecl; external;
|
||||
procedure g_value_set_string_take_ownership(AValue: PGValue; v_string: Pgchar); cdecl; external;
|
||||
procedure g_value_set_uchar(AValue: PGValue; v_uchar: guint8); cdecl; external;
|
||||
procedure g_value_set_uint(AValue: PGValue; v_uint: guint); cdecl; external;
|
||||
procedure g_value_set_uint64(AValue: PGValue; v_uint64: guint64); cdecl; external;
|
||||
@ -1729,11 +1725,6 @@ begin
|
||||
GObject2.g_value_set_boxed(@self, v_boxed);
|
||||
end;
|
||||
|
||||
procedure TGValue.set_boxed_take_ownership(v_boxed: gpointer); cdecl;
|
||||
begin
|
||||
GObject2.g_value_set_boxed_take_ownership(@self, v_boxed);
|
||||
end;
|
||||
|
||||
procedure TGValue.set_char(v_char: gchar); cdecl;
|
||||
begin
|
||||
GObject2.g_value_set_char(@self, v_char);
|
||||
@ -1789,21 +1780,11 @@ begin
|
||||
GObject2.g_value_set_object(@self, v_object);
|
||||
end;
|
||||
|
||||
procedure TGValue.set_object_take_ownership(v_object: gpointer); cdecl;
|
||||
begin
|
||||
GObject2.g_value_set_object_take_ownership(@self, v_object);
|
||||
end;
|
||||
|
||||
procedure TGValue.set_param(param: PGParamSpec); cdecl;
|
||||
begin
|
||||
GObject2.g_value_set_param(@self, param);
|
||||
end;
|
||||
|
||||
procedure TGValue.set_param_take_ownership(param: PGParamSpec); cdecl;
|
||||
begin
|
||||
GObject2.g_value_set_param_take_ownership(@self, param);
|
||||
end;
|
||||
|
||||
procedure TGValue.set_pointer(v_pointer: gpointer); cdecl;
|
||||
begin
|
||||
GObject2.g_value_set_pointer(@self, v_pointer);
|
||||
@ -1824,11 +1805,6 @@ begin
|
||||
GObject2.g_value_set_string(@self, v_string);
|
||||
end;
|
||||
|
||||
procedure TGValue.set_string_take_ownership(v_string: Pgchar); cdecl;
|
||||
begin
|
||||
GObject2.g_value_set_string_take_ownership(@self, v_string);
|
||||
end;
|
||||
|
||||
procedure TGValue.set_uchar(v_uchar: guint8); cdecl;
|
||||
begin
|
||||
GObject2.g_value_set_uchar(@self, v_uchar);
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -981,8 +981,8 @@ type
|
||||
TSoupLoggerFilter = function(logger: PSoupLogger; msg: PSoupMessage; user_data: gpointer): TSoupLoggerLogLevel; cdecl;
|
||||
TSoupLogger = object(TGObject)
|
||||
function new(level: TSoupLoggerLogLevel; max_body_size: gint): PSoupLogger; cdecl; inline; static;
|
||||
procedure attach(session: PSoupSession); cdecl; inline;
|
||||
procedure detach(session: PSoupSession); cdecl; inline;
|
||||
|
||||
|
||||
procedure set_printer(printer: TSoupLoggerPrinter; printer_data: gpointer; destroy_: TGDestroyNotify); cdecl; inline;
|
||||
procedure set_request_filter(request_filter: TSoupLoggerFilter; filter_data: gpointer; destroy_: TGDestroyNotify); cdecl; inline;
|
||||
procedure set_response_filter(response_filter: TSoupLoggerFilter; filter_data: gpointer; destroy_: TGDestroyNotify); cdecl; inline;
|
||||
@ -1069,7 +1069,7 @@ type
|
||||
procedure foreach(func: TSoupMessageHeadersForeachFunc; user_data: gpointer); cdecl; inline;
|
||||
procedure free; cdecl; inline;
|
||||
procedure free_ranges(ranges: PSoupRange); cdecl; inline;
|
||||
function get(name: Pgchar): Pgchar; cdecl; inline;
|
||||
|
||||
function get_content_disposition(disposition: PPgchar; params: PPGHashTable): gboolean; cdecl; inline;
|
||||
function get_content_length: gint64; cdecl; inline;
|
||||
function get_content_range(start: Pgint64; end_: Pgint64; total_length: Pgint64): gboolean; cdecl; inline;
|
||||
@ -1466,7 +1466,6 @@ function soup_message_get_http_version(AMessage: PSoupMessage): TSoupHTTPVersion
|
||||
function soup_message_get_https_status(AMessage: PSoupMessage; certificate: PPGTlsCertificate; errors: PGTlsCertificateFlags): gboolean; cdecl; external;
|
||||
function soup_message_get_type: TGType; cdecl; external;
|
||||
function soup_message_get_uri(AMessage: PSoupMessage): PSoupURI; cdecl; external;
|
||||
function soup_message_headers_get(AMessageHeaders: PSoupMessageHeaders; name: Pgchar): Pgchar; cdecl; external;
|
||||
function soup_message_headers_get_content_disposition(AMessageHeaders: PSoupMessageHeaders; disposition: PPgchar; params: PPGHashTable): gboolean; cdecl; external;
|
||||
function soup_message_headers_get_content_length(AMessageHeaders: PSoupMessageHeaders): gint64; cdecl; external;
|
||||
function soup_message_headers_get_content_range(AMessageHeaders: PSoupMessageHeaders; start: Pgint64; end_: Pgint64; total_length: Pgint64): gboolean; cdecl; external;
|
||||
@ -1607,8 +1606,6 @@ procedure soup_header_free_list(list: PGSList); cdecl; external;
|
||||
procedure soup_header_free_param_list(param_list: PGHashTable); cdecl; external;
|
||||
procedure soup_header_g_string_append_param(string_: PGString; name: Pgchar; value: Pgchar); cdecl; external;
|
||||
procedure soup_header_g_string_append_param_quoted(string_: PGString; name: Pgchar; value: Pgchar); cdecl; external;
|
||||
procedure soup_logger_attach(ALogger: PSoupLogger; session: PSoupSession); cdecl; external;
|
||||
procedure soup_logger_detach(ALogger: PSoupLogger; session: PSoupSession); cdecl; external;
|
||||
procedure soup_logger_set_printer(ALogger: PSoupLogger; printer: TSoupLoggerPrinter; printer_data: gpointer; destroy_: TGDestroyNotify); cdecl; external;
|
||||
procedure soup_logger_set_request_filter(ALogger: PSoupLogger; request_filter: TSoupLoggerFilter; filter_data: gpointer; destroy_: TGDestroyNotify); cdecl; external;
|
||||
procedure soup_logger_set_response_filter(ALogger: PSoupLogger; response_filter: TSoupLoggerFilter; filter_data: gpointer; destroy_: TGDestroyNotify); cdecl; external;
|
||||
@ -2666,16 +2663,6 @@ begin
|
||||
Result := Soup2_4.soup_logger_new(level, max_body_size);
|
||||
end;
|
||||
|
||||
procedure TSoupLogger.attach(session: PSoupSession); cdecl;
|
||||
begin
|
||||
Soup2_4.soup_logger_attach(@self, session);
|
||||
end;
|
||||
|
||||
procedure TSoupLogger.detach(session: PSoupSession); cdecl;
|
||||
begin
|
||||
Soup2_4.soup_logger_detach(@self, session);
|
||||
end;
|
||||
|
||||
procedure TSoupLogger.set_printer(printer: TSoupLoggerPrinter; printer_data: gpointer; destroy_: TGDestroyNotify); cdecl;
|
||||
begin
|
||||
Soup2_4.soup_logger_set_printer(@self, printer, printer_data, destroy_);
|
||||
@ -2871,11 +2858,6 @@ begin
|
||||
Soup2_4.soup_message_headers_free_ranges(@self, ranges);
|
||||
end;
|
||||
|
||||
function TSoupMessageHeaders.get(name: Pgchar): Pgchar; cdecl;
|
||||
begin
|
||||
Result := Soup2_4.soup_message_headers_get(@self, name);
|
||||
end;
|
||||
|
||||
function TSoupMessageHeaders.get_content_disposition(disposition: PPgchar; params: PPGHashTable): gboolean; cdecl;
|
||||
begin
|
||||
Result := Soup2_4.soup_message_headers_get_content_disposition(@self, disposition, params);
|
||||
|
@ -3906,9 +3906,6 @@ type
|
||||
PPWebKitWebFrame = ^PWebKitWebFrame;
|
||||
PWebKitWebFrame = ^TWebKitWebFrame;
|
||||
|
||||
PPWebKitWebView = ^PWebKitWebView;
|
||||
PWebKitWebView = ^TWebKitWebView;
|
||||
|
||||
PPWebKitWebDataSource = ^PWebKitWebDataSource;
|
||||
PWebKitWebDataSource = ^TWebKitWebDataSource;
|
||||
|
||||
@ -3918,11 +3915,14 @@ type
|
||||
PPWebKitSecurityOrigin = ^PWebKitSecurityOrigin;
|
||||
PWebKitSecurityOrigin = ^TWebKitSecurityOrigin;
|
||||
|
||||
PPWebKitWebView = ^PWebKitWebView;
|
||||
PWebKitWebView = ^TWebKitWebView;
|
||||
|
||||
PPWebKitWebFramePrivate = ^PWebKitWebFramePrivate;
|
||||
PWebKitWebFramePrivate = ^TWebKitWebFramePrivate;
|
||||
TWebKitWebFrame = object(TGObject)
|
||||
priv: PWebKitWebFramePrivate;
|
||||
function new(web_view: PWebKitWebView): PWebKitWebFrame; cdecl; inline; static;
|
||||
|
||||
function find_frame(name: Pgchar): PWebKitWebFrame; cdecl; inline;
|
||||
function get_data_source: PWebKitWebDataSource; cdecl; inline;
|
||||
function get_global_context: TJSGlobalContextRef; cdecl; inline;
|
||||
@ -4137,7 +4137,7 @@ type
|
||||
PWebKitWebBackForwardListPrivate = ^TWebKitWebBackForwardListPrivate;
|
||||
TWebKitWebBackForwardList = object(TGObject)
|
||||
priv: PWebKitWebBackForwardListPrivate;
|
||||
function new_with_web_view(web_view: PWebKitWebView): PWebKitWebBackForwardList; cdecl; inline; static;
|
||||
|
||||
procedure add_item(history_item: TWebKitWebHistoryItem); cdecl; inline;
|
||||
procedure clear; cdecl; inline;
|
||||
function contains_item(history_item: TWebKitWebHistoryItem): gboolean; cdecl; inline;
|
||||
@ -4216,13 +4216,13 @@ type
|
||||
procedure go_forward; cdecl; inline;
|
||||
function go_to_back_forward_item(item: PWebKitWebHistoryItem): gboolean; cdecl; inline;
|
||||
function has_selection: gboolean; cdecl; inline;
|
||||
procedure load_html_string(content: Pgchar; base_uri: Pgchar); cdecl; inline;
|
||||
|
||||
procedure load_request(request: PWebKitNetworkRequest); cdecl; inline;
|
||||
procedure load_string(content: Pgchar; mime_type: Pgchar; encoding: Pgchar; base_uri: Pgchar); cdecl; inline;
|
||||
procedure load_uri(uri: Pgchar); cdecl; inline;
|
||||
function mark_text_matches(string_: Pgchar; case_sensitive: gboolean; limit: guint): guint; cdecl; inline;
|
||||
procedure move_cursor(step: TGtkMovementStep; count: gint); cdecl; inline;
|
||||
procedure open(uri: Pgchar); cdecl; inline;
|
||||
|
||||
procedure paste_clipboard; cdecl; inline;
|
||||
procedure redo; cdecl; inline;
|
||||
procedure reload; cdecl; inline;
|
||||
@ -5795,7 +5795,6 @@ function webkit_web_back_forward_list_get_forward_list_with_limit(AWebBackForwar
|
||||
function webkit_web_back_forward_list_get_limit(AWebBackForwardList: PWebKitWebBackForwardList): gint; cdecl; external;
|
||||
function webkit_web_back_forward_list_get_nth_item(AWebBackForwardList: PWebKitWebBackForwardList; index: gint): TWebKitWebHistoryItem; cdecl; external;
|
||||
function webkit_web_back_forward_list_get_type: TGType; cdecl; external;
|
||||
function webkit_web_back_forward_list_new_with_web_view(web_view: PWebKitWebView): PWebKitWebBackForwardList; cdecl; external;
|
||||
function webkit_web_data_source_get_data(AWebDataSource: PWebKitWebDataSource): PGString; cdecl; external;
|
||||
function webkit_web_data_source_get_encoding(AWebDataSource: PWebKitWebDataSource): Pgchar; cdecl; external;
|
||||
function webkit_web_data_source_get_initial_request(AWebDataSource: PWebKitWebDataSource): PWebKitNetworkRequest; cdecl; external;
|
||||
@ -5830,7 +5829,6 @@ function webkit_web_frame_get_type: TGType; cdecl; external;
|
||||
function webkit_web_frame_get_uri(AWebFrame: PWebKitWebFrame): Pgchar; cdecl; external;
|
||||
function webkit_web_frame_get_vertical_scrollbar_policy(AWebFrame: PWebKitWebFrame): TGtkPolicyType; cdecl; external;
|
||||
function webkit_web_frame_get_web_view(AWebFrame: PWebKitWebFrame): PWebKitWebView; cdecl; external;
|
||||
function webkit_web_frame_new(web_view: PWebKitWebView): PWebKitWebFrame; cdecl; external;
|
||||
function webkit_web_frame_print_full(AWebFrame: PWebKitWebFrame; operation: PGtkPrintOperation; action: TGtkPrintOperationAction): TGtkPrintOperationResult; cdecl; external;
|
||||
function webkit_web_history_item_copy(AWebHistoryItem: PWebKitWebHistoryItem): PWebKitWebHistoryItem; cdecl; external;
|
||||
function webkit_web_history_item_get_alternate_title(AWebHistoryItem: PWebKitWebHistoryItem): Pgchar; cdecl; external;
|
||||
@ -6461,12 +6459,10 @@ procedure webkit_web_view_execute_script(AWebView: PWebKitWebView; script: Pgcha
|
||||
procedure webkit_web_view_go_back(AWebView: PWebKitWebView); cdecl; external;
|
||||
procedure webkit_web_view_go_back_or_forward(AWebView: PWebKitWebView; steps: gint); cdecl; external;
|
||||
procedure webkit_web_view_go_forward(AWebView: PWebKitWebView); cdecl; external;
|
||||
procedure webkit_web_view_load_html_string(AWebView: PWebKitWebView; content: Pgchar; base_uri: Pgchar); cdecl; external;
|
||||
procedure webkit_web_view_load_request(AWebView: PWebKitWebView; request: PWebKitNetworkRequest); cdecl; external;
|
||||
procedure webkit_web_view_load_string(AWebView: PWebKitWebView; content: Pgchar; mime_type: Pgchar; encoding: Pgchar; base_uri: Pgchar); cdecl; external;
|
||||
procedure webkit_web_view_load_uri(AWebView: PWebKitWebView; uri: Pgchar); cdecl; external;
|
||||
procedure webkit_web_view_move_cursor(AWebView: PWebKitWebView; step: TGtkMovementStep; count: gint); cdecl; external;
|
||||
procedure webkit_web_view_open(AWebView: PWebKitWebView; uri: Pgchar); cdecl; external;
|
||||
procedure webkit_web_view_paste_clipboard(AWebView: PWebKitWebView); cdecl; external;
|
||||
procedure webkit_web_view_redo(AWebView: PWebKitWebView); cdecl; external;
|
||||
procedure webkit_web_view_reload(AWebView: PWebKitWebView); cdecl; external;
|
||||
@ -13523,11 +13519,6 @@ begin
|
||||
WebKit3.webkit_network_response_set_uri(@self, uri);
|
||||
end;
|
||||
|
||||
function TWebKitWebFrame.new(web_view: PWebKitWebView): PWebKitWebFrame; cdecl;
|
||||
begin
|
||||
Result := WebKit3.webkit_web_frame_new(web_view);
|
||||
end;
|
||||
|
||||
function TWebKitWebFrame.find_frame(name: Pgchar): PWebKitWebFrame; cdecl;
|
||||
begin
|
||||
Result := WebKit3.webkit_web_frame_find_frame(@self, name);
|
||||
@ -13703,11 +13694,6 @@ begin
|
||||
WebKit3.webkit_viewport_attributes_recompute(@self);
|
||||
end;
|
||||
|
||||
function TWebKitWebBackForwardList.new_with_web_view(web_view: PWebKitWebView): PWebKitWebBackForwardList; cdecl;
|
||||
begin
|
||||
Result := WebKit3.webkit_web_back_forward_list_new_with_web_view(web_view);
|
||||
end;
|
||||
|
||||
function TWebKitWebHistoryItem.new: PWebKitWebHistoryItem; cdecl;
|
||||
begin
|
||||
Result := WebKit3.webkit_web_history_item_new();
|
||||
@ -14053,11 +14039,6 @@ begin
|
||||
Result := WebKit3.webkit_web_view_has_selection(@self);
|
||||
end;
|
||||
|
||||
procedure TWebKitWebView.load_html_string(content: Pgchar; base_uri: Pgchar); cdecl;
|
||||
begin
|
||||
WebKit3.webkit_web_view_load_html_string(@self, content, base_uri);
|
||||
end;
|
||||
|
||||
procedure TWebKitWebView.load_request(request: PWebKitNetworkRequest); cdecl;
|
||||
begin
|
||||
WebKit3.webkit_web_view_load_request(@self, request);
|
||||
@ -14083,11 +14064,6 @@ begin
|
||||
WebKit3.webkit_web_view_move_cursor(@self, step, count);
|
||||
end;
|
||||
|
||||
procedure TWebKitWebView.open(uri: Pgchar); cdecl;
|
||||
begin
|
||||
WebKit3.webkit_web_view_open(@self, uri);
|
||||
end;
|
||||
|
||||
procedure TWebKitWebView.paste_clipboard; cdecl;
|
||||
begin
|
||||
WebKit3.webkit_web_view_paste_clipboard(@self);
|
||||
|
Loading…
Reference in New Issue
Block a user