Added gdk_get_display ()
-Yosh
This commit is contained in:
parent
9c5d32799d
commit
f9bfb8462a
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 17 13:56:17 PST 1997 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* a small patch by Lauri Alanko that allows Gimp to pass
|
||||||
|
on --display to it's plugins.
|
||||||
|
|
||||||
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
||||||
* a minor patch to make the file selection dialog not always
|
* a minor patch to make the file selection dialog not always
|
||||||
select the first file in a directory
|
select the first file in a directory
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 17 13:56:17 PST 1997 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* a small patch by Lauri Alanko that allows Gimp to pass
|
||||||
|
on --display to it's plugins.
|
||||||
|
|
||||||
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
||||||
* a minor patch to make the file selection dialog not always
|
* a minor patch to make the file selection dialog not always
|
||||||
select the first file in a directory
|
select the first file in a directory
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 17 13:56:17 PST 1997 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* a small patch by Lauri Alanko that allows Gimp to pass
|
||||||
|
on --display to it's plugins.
|
||||||
|
|
||||||
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
||||||
* a minor patch to make the file selection dialog not always
|
* a minor patch to make the file selection dialog not always
|
||||||
select the first file in a directory
|
select the first file in a directory
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 17 13:56:17 PST 1997 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* a small patch by Lauri Alanko that allows Gimp to pass
|
||||||
|
on --display to it's plugins.
|
||||||
|
|
||||||
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
||||||
* a minor patch to make the file selection dialog not always
|
* a minor patch to make the file selection dialog not always
|
||||||
select the first file in a directory
|
select the first file in a directory
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 17 13:56:17 PST 1997 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* a small patch by Lauri Alanko that allows Gimp to pass
|
||||||
|
on --display to it's plugins.
|
||||||
|
|
||||||
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
||||||
* a minor patch to make the file selection dialog not always
|
* a minor patch to make the file selection dialog not always
|
||||||
select the first file in a directory
|
select the first file in a directory
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 17 13:56:17 PST 1997 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* a small patch by Lauri Alanko that allows Gimp to pass
|
||||||
|
on --display to it's plugins.
|
||||||
|
|
||||||
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
||||||
* a minor patch to make the file selection dialog not always
|
* a minor patch to make the file selection dialog not always
|
||||||
select the first file in a directory
|
select the first file in a directory
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 17 13:56:17 PST 1997 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* a small patch by Lauri Alanko that allows Gimp to pass
|
||||||
|
on --display to it's plugins.
|
||||||
|
|
||||||
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
|
||||||
* a minor patch to make the file selection dialog not always
|
* a minor patch to make the file selection dialog not always
|
||||||
select the first file in a directory
|
select the first file in a directory
|
||||||
|
@ -3678,3 +3678,9 @@ gdk_event_send_clientmessage_toall(GdkEvent *event)
|
|||||||
|
|
||||||
XFree(ret_children);
|
XFree(ret_children);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gchar *
|
||||||
|
gdk_get_display(void)
|
||||||
|
{
|
||||||
|
return (gchar *)XDisplayName (gdk_display_name);
|
||||||
|
}
|
||||||
|
@ -50,6 +50,7 @@ void gdk_set_use_xshm (gint use_xshm);
|
|||||||
gint gdk_get_debug_level (void);
|
gint gdk_get_debug_level (void);
|
||||||
gint gdk_get_show_events (void);
|
gint gdk_get_show_events (void);
|
||||||
gint gdk_get_use_xshm (void);
|
gint gdk_get_use_xshm (void);
|
||||||
|
gchar *gdk_get_display (void);
|
||||||
|
|
||||||
guint32 gdk_time_get (void);
|
guint32 gdk_time_get (void);
|
||||||
guint32 gdk_timer_get (void);
|
guint32 gdk_timer_get (void);
|
||||||
|
@ -3678,3 +3678,9 @@ gdk_event_send_clientmessage_toall(GdkEvent *event)
|
|||||||
|
|
||||||
XFree(ret_children);
|
XFree(ret_children);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gchar *
|
||||||
|
gdk_get_display(void)
|
||||||
|
{
|
||||||
|
return (gchar *)XDisplayName (gdk_display_name);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user