summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/motif_gtk/org/eclipse/swt/internal/gtk/GTK.java
blob: 7300d9aa47e8e33d4f27cea7bc01b51c97f0d2f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.eclipse.swt.internal.gtk;

import org.eclipse.swt.internal.*;

public class GTK extends Platform {

/** Natives */
public static final synchronized native int GTK_WIDGET_HEIGHT(int widget);
public static final synchronized native int GTK_WIDGET_WIDTH(int widget);
public static final synchronized native int g_signal_connect(int instance, byte[] detailed_signal, int proc, int data);
public static final synchronized native int gtk_events_pending();
public static final synchronized native boolean gtk_init_check(int[] argc, int[] argv);
public static final synchronized native void gtk_main();
public static final synchronized native int gtk_main_iteration();
public static final synchronized native int gtk_plug_new(int socket_id);
public static final synchronized native void gtk_widget_destroy(int widget);
public static final synchronized native void gtk_widget_show(int widget);
public static final synchronized native void gtk_widget_show_now(int widget);
public static final synchronized native int gtk_window_new(int type);
}