mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-07 06:30:37 +01:00
* add gtk_status_icon_set_tooltip_text as per Juha's patch, mantis #39199
--This line, and those below, will be ignored-- M gtk2/src/gtkext/gtkstatusicon.inc M gtk2/src/gtkext/gtkstatusiconh.inc git-svn-id: trunk@49590 -
This commit is contained in:
parent
c7690907e7
commit
2910c4dc2b
@ -49,6 +49,7 @@ begin
|
||||
pointer(gtk_status_icon_set_screen):=GetProcAddress(gtkhandle,'gtk_status_icon_set_screen');
|
||||
pointer(gtk_status_icon_get_screen):=GetProcAddress(gtkhandle,'gtk_status_icon_get_screen');
|
||||
pointer(gtk_status_icon_set_tooltip):=GetProcAddress(gtkhandle,'gtk_status_icon_set_tooltip');
|
||||
pointer(gtk_status_icon_set_tooltip_text):=GetProcAddress(gtkhandle,'gtk_status_icon_set_tooltip_text');
|
||||
pointer(gtk_status_icon_set_visible):=GetProcAddress(gtkhandle,'gtk_status_icon_set_visible');
|
||||
pointer(gtk_status_icon_get_visible):=GetProcAddress(gtkhandle,'gtk_status_icon_get_visible');
|
||||
pointer(gtk_status_icon_set_blinking):=GetProcAddress(gtkhandle,'gtk_status_icon_set_blinking');
|
||||
|
||||
@ -48,6 +48,7 @@ var
|
||||
gtk_status_icon_set_screen : procedure(status_icon:PGtkStatusIcon; screen:PGdkScreen); cdecl;
|
||||
gtk_status_icon_get_screen : function(status_icon:PGtkStatusIcon):PGdkScreen; cdecl;
|
||||
gtk_status_icon_set_tooltip : procedure(status_icon:PGtkStatusIcon; tooltip_text:Pgchar); cdecl;
|
||||
gtk_status_icon_set_tooltip_text : procedure(status_icon:PGtkStatusIcon; text:Pgchar); cdecl;
|
||||
gtk_status_icon_set_visible : procedure(status_icon:PGtkStatusIcon; visible:gboolean); cdecl;
|
||||
gtk_status_icon_get_visible : function(status_icon:PGtkStatusIcon):gboolean; cdecl;
|
||||
gtk_status_icon_set_blinking : procedure(status_icon:PGtkStatusIcon; blinking:gboolean); cdecl;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user