jdk/src/solaris/native/sun/awt/gtk2_interface.c
author anthony
Wed, 28 Apr 2010 17:16:05 +0400
changeset 5444 f7c5aeb82a14
parent 4270 cfaee5c87755
child 5471 0b3ae448170e
permissions -rw-r--r--
6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros Summary: Introduce a GTK-based alternative implementation of the FileDialogPeer on X11 Reviewed-by: anthony, peterz Contributed-by: Costantino Cerbo <c.cerbo@gmail.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
715
f16baef3a20e 6719955: Update copyright year
xdono
parents: 411
diff changeset
     2
 * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
#include <dlfcn.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#include <setjmp.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <X11/Xlib.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include <limits.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include <stdio.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include <string.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include "gtk2_interface.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "java_awt_Transparency.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#define GTK2_LIB "libgtk-x11-2.0.so.0"
5444
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
    35
#define GTHREAD_LIB "libgthread-2.0.so.0"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#define G_TYPE_INVALID                  G_TYPE_MAKE_FUNDAMENTAL (0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
#define G_TYPE_NONE                     G_TYPE_MAKE_FUNDAMENTAL (1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#define G_TYPE_INTERFACE                G_TYPE_MAKE_FUNDAMENTAL (2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
#define G_TYPE_CHAR                     G_TYPE_MAKE_FUNDAMENTAL (3)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
#define G_TYPE_UCHAR                    G_TYPE_MAKE_FUNDAMENTAL (4)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
#define G_TYPE_BOOLEAN                  G_TYPE_MAKE_FUNDAMENTAL (5)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
#define G_TYPE_INT                      G_TYPE_MAKE_FUNDAMENTAL (6)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
#define G_TYPE_UINT                     G_TYPE_MAKE_FUNDAMENTAL (7)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
#define G_TYPE_LONG                     G_TYPE_MAKE_FUNDAMENTAL (8)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
#define G_TYPE_ULONG                    G_TYPE_MAKE_FUNDAMENTAL (9)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
#define G_TYPE_INT64                    G_TYPE_MAKE_FUNDAMENTAL (10)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
#define G_TYPE_UINT64                   G_TYPE_MAKE_FUNDAMENTAL (11)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
#define G_TYPE_ENUM                     G_TYPE_MAKE_FUNDAMENTAL (12)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
#define G_TYPE_FLAGS                    G_TYPE_MAKE_FUNDAMENTAL (13)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
#define G_TYPE_FLOAT                    G_TYPE_MAKE_FUNDAMENTAL (14)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
#define G_TYPE_DOUBLE                   G_TYPE_MAKE_FUNDAMENTAL (15)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
#define G_TYPE_STRING                   G_TYPE_MAKE_FUNDAMENTAL (16)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
#define G_TYPE_POINTER                  G_TYPE_MAKE_FUNDAMENTAL (17)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
#define G_TYPE_BOXED                    G_TYPE_MAKE_FUNDAMENTAL (18)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
#define G_TYPE_PARAM                    G_TYPE_MAKE_FUNDAMENTAL (19)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
#define G_TYPE_OBJECT                   G_TYPE_MAKE_FUNDAMENTAL (20)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
#define GTK_TYPE_BORDER                 ((*fp_gtk_border_get_type)())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
#define G_TYPE_FUNDAMENTAL_SHIFT        (2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
#define G_TYPE_MAKE_FUNDAMENTAL(x)      ((GType) ((x) << G_TYPE_FUNDAMENTAL_SHIFT))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
#define MIN(a, b)  (((a) < (b)) ? (a) : (b))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
#define CONV_BUFFER_SIZE 128
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
#define NO_SYMBOL_EXCEPTION 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
/* SynthConstants */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
const gint ENABLED    = 1 << 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
const gint MOUSE_OVER = 1 << 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
const gint PRESSED    = 1 << 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
const gint DISABLED   = 1 << 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
const gint FOCUSED    = 1 << 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
const gint SELECTED   = 1 << 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
const gint DEFAULT    = 1 << 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
static void *gtk2_libhandle = NULL;
5444
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
    79
static void *gthread_libhandle = NULL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
static jmp_buf j;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
/* Widgets */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
static GtkWidget *gtk2_widget = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
static GtkWidget *gtk2_window = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
static GtkFixed  *gtk2_fixed  = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
/* Paint system */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
static GdkPixmap *gtk2_white_pixmap = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
static GdkPixmap *gtk2_black_pixmap = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
static GdkPixbuf *gtk2_white_pixbuf = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
static GdkPixbuf *gtk2_black_pixbuf = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
static int gtk2_pixbuf_width = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
static int gtk2_pixbuf_height = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
/* Static buffer for conversion from java.lang.String to UTF-8 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
static char convertionBuffer[CONV_BUFFER_SIZE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
2487
f1744cd208ba 6804221: Three tests for JTabbedPane produce VM crash on rhel3
peterz
parents: 715
diff changeset
    98
static gboolean new_combo = TRUE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
const char ENV_PREFIX[] = "GTK_MODULES=";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
/*******************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
enum GtkWidgetType
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    _GTK_ARROW_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    _GTK_BUTTON_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    _GTK_CHECK_BUTTON_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    _GTK_CHECK_MENU_ITEM_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    _GTK_COLOR_SELECTION_DIALOG_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    _GTK_COMBO_BOX_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    _GTK_COMBO_BOX_ARROW_BUTTON_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    _GTK_COMBO_BOX_TEXT_FIELD_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    _GTK_CONTAINER_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    _GTK_ENTRY_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    _GTK_FRAME_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    _GTK_HANDLE_BOX_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    _GTK_HPANED_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    _GTK_HPROGRESS_BAR_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    _GTK_HSCALE_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    _GTK_HSCROLLBAR_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    _GTK_HSEPARATOR_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    _GTK_IMAGE_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    _GTK_MENU_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    _GTK_MENU_BAR_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    _GTK_MENU_ITEM_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    _GTK_NOTEBOOK_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    _GTK_LABEL_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    _GTK_RADIO_BUTTON_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    _GTK_RADIO_MENU_ITEM_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    _GTK_SCROLLED_WINDOW_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    _GTK_SEPARATOR_MENU_ITEM_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    _GTK_SEPARATOR_TOOL_ITEM_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    _GTK_SPIN_BUTTON_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    _GTK_TEXT_VIEW_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    _GTK_TOGGLE_BUTTON_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    _GTK_TOOLBAR_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    _GTK_TOOLTIP_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    _GTK_TREE_VIEW_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    _GTK_VIEWPORT_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    _GTK_VPANED_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    _GTK_VPROGRESS_BAR_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    _GTK_VSCALE_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    _GTK_VSCROLLBAR_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    _GTK_VSEPARATOR_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    _GTK_WINDOW_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    _GTK_DIALOG_TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    _GTK_WIDGET_TYPE_SIZE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
static GtkWidget *gtk2_widgets[_GTK_WIDGET_TYPE_SIZE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
/*************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 * Glib function pointers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 *************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
static gboolean (*fp_g_main_context_iteration)(GMainContext *context,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                                             gboolean may_block);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
static GValue*      (*fp_g_value_init)(GValue *value, GType g_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
static gboolean     (*fp_g_type_is_a)(GType type, GType is_a_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
static gboolean     (*fp_g_value_get_boolean)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
static gchar        (*fp_g_value_get_char)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
static guchar       (*fp_g_value_get_uchar)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
static gint         (*fp_g_value_get_int)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
static guint        (*fp_g_value_get_uint)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
static glong        (*fp_g_value_get_long)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
static gulong       (*fp_g_value_get_ulong)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
static gint64       (*fp_g_value_get_int64)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
static guint64      (*fp_g_value_get_uint64)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
static gfloat       (*fp_g_value_get_float)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
static gdouble      (*fp_g_value_get_double)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
static const gchar* (*fp_g_value_get_string)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
static gint         (*fp_g_value_get_enum)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
static guint        (*fp_g_value_get_flags)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
static GParamSpec*  (*fp_g_value_get_param)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
static gpointer*    (*fp_g_value_get_boxed)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
static gpointer*    (*fp_g_value_get_pointer)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
static GObject*     (*fp_g_value_get_object)(const GValue *value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
static GParamSpec*  (*fp_g_param_spec_int)(const gchar *name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        const gchar *nick, const gchar *blurb,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        gint minimum, gint maximum, gint default_value,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        GParamFlags flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
static void         (*fp_g_object_get)(gpointer object,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                                       const gchar* fpn, ...);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
static void         (*fp_g_object_set)(gpointer object,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                                       const gchar *first_property_name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                                       ...);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
/************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
 * GDK function pointers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
 ************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
static GdkPixmap *(*fp_gdk_pixmap_new)(GdkDrawable *drawable,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        gint width, gint height, gint depth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
static GdkGC *(*fp_gdk_gc_new)(GdkDrawable*);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
static void (*fp_gdk_rgb_gc_set_foreground)(GdkGC*, guint32);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
static void (*fp_gdk_draw_rectangle)(GdkDrawable*, GdkGC*, gboolean,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        gint, gint, gint, gint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
static GdkPixbuf *(*fp_gdk_pixbuf_new)(GdkColorspace colorspace,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        gboolean has_alpha, int bits_per_sample, int width, int height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
static GdkPixbuf *(*fp_gdk_pixbuf_get_from_drawable)(GdkPixbuf *dest,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        GdkDrawable *src, GdkColormap *cmap, int src_x, int src_y,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        int dest_x, int dest_y, int width, int height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
static void (*fp_gdk_drawable_get_size)(GdkDrawable *drawable,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        gint* width, gint* height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
/************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
 * Gtk function pointers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
 ************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
static gboolean (*fp_gtk_init_check)(int* argc, char** argv);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
/* Painting */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
static void (*fp_gtk_paint_hline)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        GtkStateType state_type, GdkRectangle* area, GtkWidget* widget,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        const gchar* detail, gint x1, gint x2, gint y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
static void (*fp_gtk_paint_vline)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        GtkStateType state_type, GdkRectangle* area, GtkWidget* widget,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        const gchar* detail, gint y1, gint y2, gint x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
static void (*fp_gtk_paint_shadow)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        gint x, gint y, gint width, gint height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
static void (*fp_gtk_paint_arrow)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        GtkArrowType arrow_type, gboolean fill, gint x, gint y,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        gint width, gint height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
static void (*fp_gtk_paint_diamond)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        gint x, gint y, gint width, gint height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
static void (*fp_gtk_paint_box)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        gint x, gint y, gint width, gint height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
static void (*fp_gtk_paint_flat_box)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        gint x, gint y, gint width, gint height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
static void (*fp_gtk_paint_check)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        gint x, gint y, gint width, gint height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
static void (*fp_gtk_paint_option)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        gint x, gint y, gint width, gint height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
static void (*fp_gtk_paint_box_gap)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        gint x, gint y, gint width, gint height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        GtkPositionType gap_side, gint gap_x, gint gap_width);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
static void (*fp_gtk_paint_extension)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        gint x, gint y, gint width, gint height, GtkPositionType gap_side);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
static void (*fp_gtk_paint_focus)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        GtkStateType state_type, GdkRectangle* area, GtkWidget* widget,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        const gchar* detail, gint x, gint y, gint width, gint height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
static void (*fp_gtk_paint_slider)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        gint x, gint y, gint width, gint height, GtkOrientation orientation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
static void (*fp_gtk_paint_handle)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        GtkStateType state_type, GtkShadowType shadow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        GdkRectangle* area, GtkWidget* widget, const gchar* detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        gint x, gint y, gint width, gint height, GtkOrientation orientation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
static void (*fp_gtk_paint_expander)(GtkStyle* style, GdkWindow* window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        GtkStateType state_type, GdkRectangle* area, GtkWidget* widget,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        const gchar* detail, gint x, gint y, GtkExpanderStyle expander_style);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
static void (*fp_gtk_style_apply_default_background)(GtkStyle* style,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        GdkWindow* window, gboolean set_bg, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        GdkRectangle* area, gint x, gint y, gint width, gint height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
/* Widget creation */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
static GtkWidget* (*fp_gtk_arrow_new)(GtkArrowType arrow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                                      GtkShadowType shadow_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
static GtkWidget* (*fp_gtk_button_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
static GtkWidget* (*fp_gtk_check_button_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
static GtkWidget* (*fp_gtk_check_menu_item_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
static GtkWidget* (*fp_gtk_color_selection_dialog_new)(const gchar* title);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
static GtkWidget* (*fp_gtk_combo_box_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
static GtkWidget* (*fp_gtk_combo_box_entry_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
static GtkWidget* (*fp_gtk_entry_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
static GtkWidget* (*fp_gtk_fixed_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
static GtkWidget* (*fp_gtk_handle_box_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
static GtkWidget* (*fp_gtk_hpaned_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
static GtkWidget* (*fp_gtk_vpaned_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
static GtkWidget* (*fp_gtk_hscale_new)(GtkAdjustment* adjustment);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
static GtkWidget* (*fp_gtk_vscale_new)(GtkAdjustment* adjustment);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
static GtkWidget* (*fp_gtk_hscrollbar_new)(GtkAdjustment* adjustment);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
static GtkWidget* (*fp_gtk_vscrollbar_new)(GtkAdjustment* adjustment);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
static GtkWidget* (*fp_gtk_hseparator_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
static GtkWidget* (*fp_gtk_vseparator_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
static GtkWidget* (*fp_gtk_image_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
static GtkWidget* (*fp_gtk_label_new)(const gchar* str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
static GtkWidget* (*fp_gtk_menu_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
static GtkWidget* (*fp_gtk_menu_bar_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
static GtkWidget* (*fp_gtk_menu_item_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
static GtkWidget* (*fp_gtk_notebook_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
static GtkWidget* (*fp_gtk_progress_bar_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
static GtkWidget* (*fp_gtk_progress_bar_set_orientation)(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        GtkProgressBar *pbar,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        GtkProgressBarOrientation orientation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
static GtkWidget* (*fp_gtk_radio_button_new)(GSList *group);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
static GtkWidget* (*fp_gtk_radio_menu_item_new)(GSList *group);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
static GtkWidget* (*fp_gtk_scrolled_window_new)(GtkAdjustment *hadjustment,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        GtkAdjustment *vadjustment);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
static GtkWidget* (*fp_gtk_separator_menu_item_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
static GtkWidget* (*fp_gtk_separator_tool_item_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
static GtkWidget* (*fp_gtk_text_view_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
static GtkWidget* (*fp_gtk_toggle_button_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
static GtkWidget* (*fp_gtk_toolbar_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
static GtkWidget* (*fp_gtk_tree_view_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
static GtkWidget* (*fp_gtk_viewport_new)(GtkAdjustment *hadjustment,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        GtkAdjustment *vadjustment);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
static GtkWidget* (*fp_gtk_window_new)(GtkWindowType type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
static GtkWidget* (*fp_gtk_dialog_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
static GtkWidget* (*fp_gtk_spin_button_new)(GtkAdjustment *adjustment,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        gdouble climb_rate, guint digits);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
static GtkWidget* (*fp_gtk_frame_new)(const gchar *label);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
/* Other widget operations */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
static GtkObject* (*fp_gtk_adjustment_new)(gdouble value,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        gdouble lower, gdouble upper, gdouble step_increment,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        gdouble page_increment, gdouble page_size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
static void (*fp_gtk_container_add)(GtkContainer *window, GtkWidget *widget);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
static void (*fp_gtk_menu_shell_append)(GtkMenuShell *menu_shell,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        GtkWidget *child);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
static void (*fp_gtk_menu_item_set_submenu)(GtkMenuItem *menu_item,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        GtkWidget *submenu);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
static void (*fp_gtk_widget_realize)(GtkWidget *widget);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
static GdkPixbuf* (*fp_gtk_widget_render_icon)(GtkWidget *widget,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        const gchar *stock_id, GtkIconSize size, const gchar *detail);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
static void (*fp_gtk_widget_set_name)(GtkWidget *widget, const gchar *name);
411
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
   334
static void (*fp_gtk_widget_set_parent)(GtkWidget *widget, GtkWidget *parent);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
static void (*fp_gtk_widget_set_direction)(GtkWidget *widget,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        GtkTextDirection direction);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
static void (*fp_gtk_widget_style_get)(GtkWidget *widget,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        const gchar *first_property_name, ...);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
static void (*fp_gtk_widget_class_install_style_property)(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        GtkWidgetClass* class, GParamSpec *pspec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
static GParamSpec* (*fp_gtk_widget_class_find_style_property)(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        GtkWidgetClass* class, const gchar* property_name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
static void (*fp_gtk_widget_style_get_property)(GtkWidget* widget,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        const gchar* property_name, GValue* value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
static char* (*fp_pango_font_description_to_string)(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        const PangoFontDescription* fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
static GtkSettings* (*fp_gtk_settings_get_default)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
static GtkSettings* (*fp_gtk_widget_get_settings)(GtkWidget *widget);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
static GType        (*fp_gtk_border_get_type)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
static void (*fp_gtk_arrow_set)(GtkWidget* arrow,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
                                GtkArrowType arrow_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
                                GtkShadowType shadow_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
static void (*fp_gtk_widget_size_request)(GtkWidget *widget,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                                          GtkRequisition *requisition);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
static GtkAdjustment* (*fp_gtk_range_get_adjustment)(GtkRange* range);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
/* Method bodies */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
const char *getStrFor(JNIEnv *env, jstring val)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    int length = (*env)->GetStringLength(env, val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    if (length > CONV_BUFFER_SIZE-1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        length = CONV_BUFFER_SIZE-1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
#ifdef INTERNAL_BUILD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        fprintf(stderr, "Note: Detail is too long: %d chars\n", length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
#endif /* INTERNAL_BUILD */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    (*env)->GetStringUTFRegion(env, val, 0, length, convertionBuffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    return convertionBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
/* This is a workaround for the bug:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
 * http://sourceware.org/bugzilla/show_bug.cgi?id=1814
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
 * (dlsym/dlopen clears dlerror state)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
 * This bug is specific to Linux, but there is no harm in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
 * applying this workaround on Solaris as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
static void* dl_symbol(const char* name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    void* result = dlsym(gtk2_libhandle, name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    if (!result)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        longjmp(j, NO_SYMBOL_EXCEPTION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
5444
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   388
static void* dl_symbol_gthread(const char* name)
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   389
{
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   390
    void* result = dlsym(gthread_libhandle, name);
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   391
    if (!result)
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   392
        longjmp(j, NO_SYMBOL_EXCEPTION);
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   393
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   394
    return result;
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   395
}
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   396
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
gboolean gtk2_check_version()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    if (gtk2_libhandle != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        /* We've already successfully opened the GTK libs, so return true. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        return TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        void *lib = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        gboolean result = FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        lib = dlopen(GTK2_LIB, RTLD_LAZY | RTLD_LOCAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        if (lib == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
            return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        fp_gtk_check_version = dlsym(lib, "gtk_check_version");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        /* Check for GTK 2.2+ */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        if (!fp_gtk_check_version(2, 2, 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            result = TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        dlclose(lib);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
5444
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   423
/**
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   424
 * Functions for sun_awt_X11_GtkFileDialogPeer.c
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   425
 */
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   426
void gtk2_file_chooser_load()
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   427
{
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   428
    fp_gtk_file_chooser_get_filename = dl_symbol(
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   429
            "gtk_file_chooser_get_filename");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   430
    fp_gtk_file_chooser_dialog_new = dl_symbol("gtk_file_chooser_dialog_new");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   431
    fp_gtk_file_chooser_set_current_folder = dl_symbol(
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   432
            "gtk_file_chooser_set_current_folder");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   433
    fp_gtk_file_chooser_set_filename = dl_symbol(
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   434
            "gtk_file_chooser_set_filename");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   435
    fp_gtk_file_filter_add_custom = dl_symbol("gtk_file_filter_add_custom");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   436
    fp_gtk_file_chooser_set_filter = dl_symbol("gtk_file_chooser_set_filter");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   437
    fp_gtk_file_chooser_get_type = dl_symbol("gtk_file_chooser_get_type");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   438
    fp_gtk_file_filter_new = dl_symbol("gtk_file_filter_new");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   439
    fp_gtk_file_chooser_set_do_overwrite_confirmation = dl_symbol(
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   440
            "gtk_file_chooser_set_do_overwrite_confirmation");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   441
    fp_gtk_file_chooser_set_select_multiple = dl_symbol(
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   442
            "gtk_file_chooser_set_select_multiple");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   443
    fp_gtk_file_chooser_get_current_folder = dl_symbol(
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   444
            "gtk_file_chooser_get_current_folder");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   445
    fp_gtk_file_chooser_get_filenames = dl_symbol(
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   446
            "gtk_file_chooser_get_filenames");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   447
    fp_gtk_g_slist_length = dl_symbol("g_slist_length");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   448
}
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   449
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
gboolean gtk2_load()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    gboolean result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    int (*handler)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
    int (*io_handler)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    char *gtk_modules_env;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    gtk2_libhandle = dlopen(GTK2_LIB, RTLD_LAZY | RTLD_LOCAL);
5444
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   459
    gthread_libhandle = dlopen(GTHREAD_LIB, RTLD_LAZY | RTLD_LOCAL);
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   460
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   461
    if (gtk2_libhandle == NULL || gthread_libhandle == NULL)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    if (setjmp(j) == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        fp_gtk_check_version = dl_symbol("gtk_check_version");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        /* Check for GTK 2.2+ */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        if (fp_gtk_check_version(2, 2, 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            longjmp(j, NO_SYMBOL_EXCEPTION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        /* GLib */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        fp_g_free = dl_symbol("g_free");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        fp_g_object_unref = dl_symbol("g_object_unref");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        fp_g_main_context_iteration =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            dl_symbol("g_main_context_iteration");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        fp_g_value_init = dl_symbol("g_value_init");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        fp_g_type_is_a = dl_symbol("g_type_is_a");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        fp_g_value_get_boolean = dl_symbol("g_value_get_boolean");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        fp_g_value_get_char = dl_symbol("g_value_get_char");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        fp_g_value_get_uchar = dl_symbol("g_value_get_uchar");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        fp_g_value_get_int = dl_symbol("g_value_get_int");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        fp_g_value_get_uint = dl_symbol("g_value_get_uint");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        fp_g_value_get_long = dl_symbol("g_value_get_long");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        fp_g_value_get_ulong = dl_symbol("g_value_get_ulong");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        fp_g_value_get_int64 = dl_symbol("g_value_get_int64");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        fp_g_value_get_uint64 = dl_symbol("g_value_get_uint64");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        fp_g_value_get_float = dl_symbol("g_value_get_float");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        fp_g_value_get_double = dl_symbol("g_value_get_double");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        fp_g_value_get_string = dl_symbol("g_value_get_string");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        fp_g_value_get_enum = dl_symbol("g_value_get_enum");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        fp_g_value_get_flags = dl_symbol("g_value_get_flags");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        fp_g_value_get_param = dl_symbol("g_value_get_param");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        fp_g_value_get_boxed = dl_symbol("g_value_get_boxed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        fp_g_value_get_pointer = dl_symbol("g_value_get_pointer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        fp_g_value_get_object = dl_symbol("g_value_get_object");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        fp_g_param_spec_int = dl_symbol("g_param_spec_int");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        fp_g_object_get = dl_symbol("g_object_get");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        fp_g_object_set = dl_symbol("g_object_set");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        /* GDK */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        fp_gdk_pixmap_new = dl_symbol("gdk_pixmap_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        fp_gdk_pixbuf_get_from_drawable =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            dl_symbol("gdk_pixbuf_get_from_drawable");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        fp_gdk_gc_new = dl_symbol("gdk_gc_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        fp_gdk_rgb_gc_set_foreground =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
            dl_symbol("gdk_rgb_gc_set_foreground");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        fp_gdk_draw_rectangle = dl_symbol("gdk_draw_rectangle");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        fp_gdk_drawable_get_size = dl_symbol("gdk_drawable_get_size");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        /* Pixbuf */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        fp_gdk_pixbuf_new = dl_symbol("gdk_pixbuf_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        fp_gdk_pixbuf_new_from_file =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                dl_symbol("gdk_pixbuf_new_from_file");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        fp_gdk_pixbuf_get_width = dl_symbol("gdk_pixbuf_get_width");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        fp_gdk_pixbuf_get_height = dl_symbol("gdk_pixbuf_get_height");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        fp_gdk_pixbuf_get_pixels = dl_symbol("gdk_pixbuf_get_pixels");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
        fp_gdk_pixbuf_get_rowstride =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                dl_symbol("gdk_pixbuf_get_rowstride");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        fp_gdk_pixbuf_get_has_alpha =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                dl_symbol("gdk_pixbuf_get_has_alpha");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        fp_gdk_pixbuf_get_bits_per_sample =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                dl_symbol("gdk_pixbuf_get_bits_per_sample");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        fp_gdk_pixbuf_get_n_channels =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                dl_symbol("gdk_pixbuf_get_n_channels");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        /* GTK painting */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        fp_gtk_init_check = dl_symbol("gtk_init_check");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        fp_gtk_paint_hline = dl_symbol("gtk_paint_hline");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        fp_gtk_paint_vline = dl_symbol("gtk_paint_vline");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        fp_gtk_paint_shadow = dl_symbol("gtk_paint_shadow");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
        fp_gtk_paint_arrow = dl_symbol("gtk_paint_arrow");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        fp_gtk_paint_diamond = dl_symbol("gtk_paint_diamond");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        fp_gtk_paint_box = dl_symbol("gtk_paint_box");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        fp_gtk_paint_flat_box = dl_symbol("gtk_paint_flat_box");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        fp_gtk_paint_check = dl_symbol("gtk_paint_check");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        fp_gtk_paint_option = dl_symbol("gtk_paint_option");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        fp_gtk_paint_box_gap = dl_symbol("gtk_paint_box_gap");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        fp_gtk_paint_extension = dl_symbol("gtk_paint_extension");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        fp_gtk_paint_focus = dl_symbol("gtk_paint_focus");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        fp_gtk_paint_slider = dl_symbol("gtk_paint_slider");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        fp_gtk_paint_handle = dl_symbol("gtk_paint_handle");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        fp_gtk_paint_expander = dl_symbol("gtk_paint_expander");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        fp_gtk_style_apply_default_background =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                dl_symbol("gtk_style_apply_default_background");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        /* GTK widgets */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        fp_gtk_arrow_new = dl_symbol("gtk_arrow_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        fp_gtk_button_new = dl_symbol("gtk_button_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        fp_gtk_spin_button_new = dl_symbol("gtk_spin_button_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        fp_gtk_check_button_new = dl_symbol("gtk_check_button_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        fp_gtk_check_menu_item_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                dl_symbol("gtk_check_menu_item_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        fp_gtk_color_selection_dialog_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                dl_symbol("gtk_color_selection_dialog_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        fp_gtk_entry_new = dl_symbol("gtk_entry_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        fp_gtk_fixed_new = dl_symbol("gtk_fixed_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        fp_gtk_handle_box_new = dl_symbol("gtk_handle_box_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        fp_gtk_image_new = dl_symbol("gtk_image_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        fp_gtk_hpaned_new = dl_symbol("gtk_hpaned_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        fp_gtk_vpaned_new = dl_symbol("gtk_vpaned_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        fp_gtk_hscale_new = dl_symbol("gtk_hscale_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        fp_gtk_vscale_new = dl_symbol("gtk_vscale_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        fp_gtk_hscrollbar_new = dl_symbol("gtk_hscrollbar_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        fp_gtk_vscrollbar_new = dl_symbol("gtk_vscrollbar_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        fp_gtk_hseparator_new = dl_symbol("gtk_hseparator_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        fp_gtk_vseparator_new = dl_symbol("gtk_vseparator_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        fp_gtk_label_new = dl_symbol("gtk_label_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        fp_gtk_menu_new = dl_symbol("gtk_menu_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        fp_gtk_menu_bar_new = dl_symbol("gtk_menu_bar_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        fp_gtk_menu_item_new = dl_symbol("gtk_menu_item_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        fp_gtk_menu_item_set_submenu =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                dl_symbol("gtk_menu_item_set_submenu");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        fp_gtk_notebook_new = dl_symbol("gtk_notebook_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
        fp_gtk_progress_bar_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
            dl_symbol("gtk_progress_bar_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        fp_gtk_progress_bar_set_orientation =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
            dl_symbol("gtk_progress_bar_set_orientation");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        fp_gtk_radio_button_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
            dl_symbol("gtk_radio_button_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        fp_gtk_radio_menu_item_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
            dl_symbol("gtk_radio_menu_item_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        fp_gtk_scrolled_window_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
            dl_symbol("gtk_scrolled_window_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        fp_gtk_separator_menu_item_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
            dl_symbol("gtk_separator_menu_item_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
        fp_gtk_text_view_new = dl_symbol("gtk_text_view_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        fp_gtk_toggle_button_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            dl_symbol("gtk_toggle_button_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        fp_gtk_toolbar_new = dl_symbol("gtk_toolbar_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        fp_gtk_tree_view_new = dl_symbol("gtk_tree_view_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        fp_gtk_viewport_new = dl_symbol("gtk_viewport_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        fp_gtk_window_new = dl_symbol("gtk_window_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        fp_gtk_dialog_new = dl_symbol("gtk_dialog_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        fp_gtk_frame_new = dl_symbol("gtk_frame_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        fp_gtk_adjustment_new = dl_symbol("gtk_adjustment_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        fp_gtk_container_add = dl_symbol("gtk_container_add");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        fp_gtk_menu_shell_append =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
            dl_symbol("gtk_menu_shell_append");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
        fp_gtk_widget_realize = dl_symbol("gtk_widget_realize");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        fp_gtk_widget_destroy = dl_symbol("gtk_widget_destroy");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        fp_gtk_widget_render_icon =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
            dl_symbol("gtk_widget_render_icon");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        fp_gtk_widget_set_name =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
            dl_symbol("gtk_widget_set_name");
411
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
   610
        fp_gtk_widget_set_parent =
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
   611
            dl_symbol("gtk_widget_set_parent");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
        fp_gtk_widget_set_direction =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
            dl_symbol("gtk_widget_set_direction");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        fp_gtk_widget_style_get =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            dl_symbol("gtk_widget_style_get");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        fp_gtk_widget_class_install_style_property =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            dl_symbol("gtk_widget_class_install_style_property");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        fp_gtk_widget_class_find_style_property =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            dl_symbol("gtk_widget_class_find_style_property");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        fp_gtk_widget_style_get_property =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
            dl_symbol("gtk_widget_style_get_property");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
        fp_pango_font_description_to_string =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            dl_symbol("pango_font_description_to_string");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        fp_gtk_settings_get_default =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            dl_symbol("gtk_settings_get_default");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        fp_gtk_widget_get_settings =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
            dl_symbol("gtk_widget_get_settings");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        fp_gtk_border_get_type =  dl_symbol("gtk_border_get_type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        fp_gtk_arrow_set = dl_symbol("gtk_arrow_set");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        fp_gtk_widget_size_request =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
            dl_symbol("gtk_widget_size_request");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
        fp_gtk_range_get_adjustment =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
            dl_symbol("gtk_range_get_adjustment");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
5444
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   635
        fp_gtk_widget_hide = dl_symbol("gtk_widget_hide");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   636
        fp_gtk_main_quit = dl_symbol("gtk_main_quit");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   637
        fp_g_signal_connect_data = dl_symbol("g_signal_connect_data");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   638
        fp_gtk_widget_show = dl_symbol("gtk_widget_show");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   639
        fp_gtk_main = dl_symbol("gtk_main");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   640
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   641
        /**
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   642
         * GLib thread system
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   643
         */
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   644
        fp_g_thread_get_initialized = dl_symbol_gthread(
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   645
                "g_thread_get_initialized");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   646
        fp_g_thread_init = dl_symbol_gthread("g_thread_init");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   647
        fp_gdk_threads_init = dl_symbol("gdk_threads_init");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   648
        fp_gdk_threads_enter = dl_symbol("gdk_threads_enter");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   649
        fp_gdk_threads_leave = dl_symbol("gdk_threads_leave");
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   650
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   651
        /**
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   652
         * Functions for sun_awt_X11_GtkFileDialogPeer.c
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   653
         */
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   654
        if (fp_gtk_check_version(2, 4, 0) == NULL) {
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   655
            // The current GtkFileChooser is available from GTK+ 2.4
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   656
            gtk2_file_chooser_load();
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   657
        }
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   658
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        /* Some functions may be missing in pre-2.4 GTK.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
           We handle them specially here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        fp_gtk_combo_box_new = dlsym(gtk2_libhandle, "gtk_combo_box_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        if (fp_gtk_combo_box_new == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
            fp_gtk_combo_box_new = dl_symbol("gtk_combo_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        fp_gtk_combo_box_entry_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
            dlsym(gtk2_libhandle, "gtk_combo_box_entry_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        if (fp_gtk_combo_box_entry_new == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
            fp_gtk_combo_box_entry_new = dl_symbol("gtk_combo_new");
2487
f1744cd208ba 6804221: Three tests for JTabbedPane produce VM crash on rhel3
peterz
parents: 715
diff changeset
   671
            new_combo = FALSE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
        fp_gtk_separator_tool_item_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
            dlsym(gtk2_libhandle, "gtk_separator_tool_item_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
        if (fp_gtk_separator_tool_item_new == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
            fp_gtk_separator_tool_item_new =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
                dl_symbol("gtk_vseparator_new");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    /* Now we have only one kind of exceptions: NO_SYMBOL_EXCEPTION
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * Otherwise we can check the return value of setjmp method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
        dlclose(gtk2_libhandle);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        gtk2_libhandle = NULL;
5444
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   688
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   689
        dlclose(gthread_libhandle);
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   690
        gthread_libhandle = NULL;
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   691
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * Strip the AT-SPI GTK_MODULEs if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    gtk_modules_env = getenv ("GTK_MODULES");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    if (gtk_modules_env && strstr (gtk_modules_env, "atk-bridge") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        gtk_modules_env && strstr (gtk_modules_env, "gail"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        /* the new env will be smaller than the old one */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        gchar *s, *new_env = malloc (sizeof(ENV_PREFIX)+strlen (gtk_modules_env));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        if (new_env != NULL )
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
            /* careful, strtok modifies its args */
4270
cfaee5c87755 6893704: Potential memory leak in gtk2_interface.c
peterz
parents: 2487
diff changeset
   709
            gchar *tmp_env = strdup (gtk_modules_env);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
            strcpy(new_env, ENV_PREFIX);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
            /* strip out 'atk-bridge' and 'gail' */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
            size_t PREFIX_LENGTH = strlen(ENV_PREFIX);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
            while (s = strtok(tmp_env, ":"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
                if ((!strstr (s, "atk-bridge")) && (!strstr (s, "gail")))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
                {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
                    if (strlen (new_env) > PREFIX_LENGTH) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                        new_env = strcat (new_env, ":");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                    new_env = strcat(new_env, s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
                if (tmp_env)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
                {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
                    free (tmp_env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
                    tmp_env = NULL; /* next call to strtok arg1==NULL */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
            putenv (new_env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
            free (new_env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * GTK should be initialized with gtk_init_check() before use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * gtk_init_check installs its own error handlers. It is critical that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     * we preserve error handler set from AWT. Otherwise we'll crash on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     * BadMatch errors which we would normally ignore. The IO error handler
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     * is preserved here, too, just for consistency.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    handler = XSetErrorHandler(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    io_handler = XSetIOErrorHandler(NULL);
5444
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   744
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   745
    if (fp_gtk_check_version(2, 2, 0) == NULL) {
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   746
        // Init the thread system to use GLib in a thread-safe mode
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   747
        if (!fp_g_thread_get_initialized()) {
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   748
            fp_g_thread_init(NULL);
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   749
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   750
            //According the GTK documentation, gdk_threads_init() should be
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   751
            //called before gtk_init() or gtk_init_check()
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   752
            fp_gdk_threads_init();
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   753
        }
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   754
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    result = (*fp_gtk_init_check)(NULL, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    XSetErrorHandler(handler);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
    XSetIOErrorHandler(io_handler);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
    /* Initialize widget array. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    for (i = 0; i < _GTK_WIDGET_TYPE_SIZE; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        gtk2_widgets[i] = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
int gtk2_unload()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    char *gtk2_error;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    if (!gtk2_libhandle)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        return TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    /* Release painting objects */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    if (gtk2_white_pixmap != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        (*fp_g_object_unref)(gtk2_white_pixmap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
        (*fp_g_object_unref)(gtk2_black_pixmap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        (*fp_g_object_unref)(gtk2_white_pixbuf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
        (*fp_g_object_unref)(gtk2_black_pixbuf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        gtk2_white_pixmap = gtk2_black_pixmap =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
            gtk2_white_pixbuf = gtk2_black_pixbuf = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
    gtk2_pixbuf_width = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
    gtk2_pixbuf_height = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
    if (gtk2_window != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
        /* Destroying toplevel widget will destroy all contained widgets */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        (*fp_gtk_widget_destroy)(gtk2_window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        /* Unset some static data so they get reinitialized on next load */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
        gtk2_window = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    dlerror();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
    dlclose(gtk2_libhandle);
5444
f7c5aeb82a14 6913179: The java.awt.FileDialog should use native GTK file chooser on linux distros
anthony
parents: 4270
diff changeset
   799
    dlclose(gthread_libhandle);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
    if ((gtk2_error = dlerror()) != NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        return FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
    return TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
/* Dispatch all pending events from the GTK event loop.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
 * This is needed to catch theme change and update widgets' style.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
void flush_gtk_event_loop()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
    while( (*fp_g_main_context_iteration)(NULL, FALSE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
 * Initialize components of containment hierarchy. This creates a GtkFixed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
 * inside a GtkWindow. All widgets get realized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
static void init_containers()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
    if (gtk2_window == NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        gtk2_window = (*fp_gtk_window_new)(GTK_WINDOW_TOPLEVEL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        gtk2_fixed = (GtkFixed *)(*fp_gtk_fixed_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        (*fp_gtk_container_add)((GtkContainer*)gtk2_window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
                                (GtkWidget *)gtk2_fixed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        (*fp_gtk_widget_realize)(gtk2_window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        (*fp_gtk_widget_realize)((GtkWidget *)gtk2_fixed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
 * Ensure everything is ready for drawing an element of the specified width
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
 * and height.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
 * We should somehow handle translucent images. GTK can draw to X Drawables
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
 * only, which don't support alpha. When we retrieve the image back from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
 * the server, translucency information is lost. There're several ways to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
 * work around this:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
 * 1) Subclass GdkPixmap and cache translucent objects on client side. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
 * requires us to implement parts of X server drawing logic on client side.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
 * Many X requests can potentially be "translucent"; e.g. XDrawLine with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
 * fill=tile and a translucent tile is a "translucent" operation, whereas
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
 * XDrawLine with fill=solid is an "opaque" one. Moreover themes can (and some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
 * do) intermix transparent and opaque operations which makes caching even
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
 * more problematic.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
 * 2) Use Xorg 32bit ARGB visual when available. GDK has no native support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
 * for it (as of version 2.6). Also even in JDS 3 Xorg does not support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
 * these visuals by default, which makes optimizing for them pointless.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
 * We can consider doing this at a later point when ARGB visuals become more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
 * popular.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
 * 3') GTK has plans to use Cairo as its graphical backend (presumably in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
 * 2.8), and Cairo supports alpha. With it we could also get rid of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
 * unnecessary round trip to server and do all the drawing on client side.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
 * 4) For now we draw to two different pixmaps and restore alpha channel by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
 * comparing results. This can be optimized by using subclassed pixmap and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
 * doing the second drawing only if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
void gtk2_init_painting(gint width, gint height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
    GdkGC *gc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
    init_containers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
    if (gtk2_pixbuf_width < width || gtk2_pixbuf_height < height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        if (gtk2_white_pixmap != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
            /* free old stuff */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
            (*fp_g_object_unref)(gtk2_white_pixmap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
            (*fp_g_object_unref)(gtk2_black_pixmap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
            (*fp_g_object_unref)(gtk2_white_pixbuf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
            (*fp_g_object_unref)(gtk2_black_pixbuf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
        gtk2_white_pixmap = (*fp_gdk_pixmap_new)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
                                (gtk2_window->window, width, height, -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
        gtk2_black_pixmap = (*fp_gdk_pixmap_new)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
                                (gtk2_window->window, width, height, -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
        gtk2_white_pixbuf = (*fp_gdk_pixbuf_new)(GDK_COLORSPACE_RGB, TRUE, 8,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
                                                 width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        gtk2_black_pixbuf = (*fp_gdk_pixbuf_new)(GDK_COLORSPACE_RGB, TRUE, 8,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
                                                 width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
        gtk2_pixbuf_width = width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
        gtk2_pixbuf_height = height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
    /* clear the pixmaps */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
    gc = (*fp_gdk_gc_new)(gtk2_white_pixmap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
    (*fp_gdk_rgb_gc_set_foreground)(gc, 0xffffff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
    (*fp_gdk_draw_rectangle)(gtk2_white_pixmap, gc, TRUE, 0, 0, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
    (*fp_g_object_unref)(gc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
    gc = (*fp_gdk_gc_new)(gtk2_black_pixmap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
    (*fp_gdk_rgb_gc_set_foreground)(gc, 0x000000);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
    (*fp_gdk_draw_rectangle)(gtk2_black_pixmap, gc, TRUE, 0, 0, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
    (*fp_g_object_unref)(gc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
 * Restore image from white and black pixmaps and copy it into destination
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
 * buffer. This method compares two pixbufs taken from white and black
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
 * pixmaps and decodes color and alpha components. Pixbufs are RGB without
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
 * alpha, destination buffer is ABGR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
 * The return value is the transparency type of the resulting image, either
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
 * one of java_awt_Transparency_OPAQUE, java_awt_Transparency_BITMASK, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
 * java_awt_Transparency_TRANSLUCENT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
gint gtk2_copy_image(gint *dst, gint width, gint height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
    gint i, j, r, g, b;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
    guchar *white, *black;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
    gint stride, padding;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
    gboolean is_opaque = TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    gboolean is_bitmask = TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    (*fp_gdk_pixbuf_get_from_drawable)(gtk2_white_pixbuf, gtk2_white_pixmap,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
            NULL, 0, 0, 0, 0, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
    (*fp_gdk_pixbuf_get_from_drawable)(gtk2_black_pixbuf, gtk2_black_pixmap,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
            NULL, 0, 0, 0, 0, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
    white = (*fp_gdk_pixbuf_get_pixels)(gtk2_white_pixbuf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
    black = (*fp_gdk_pixbuf_get_pixels)(gtk2_black_pixbuf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
    stride = (*fp_gdk_pixbuf_get_rowstride)(gtk2_black_pixbuf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
    padding = stride - width * 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    for (i = 0; i < height; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
        for (j = 0; j < width; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
            int r1 = *white++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
            int r2 = *black++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
            int alpha = 0xff + r2 - r1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
            switch (alpha) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
                case 0:       /* transparent pixel */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
                    r = g = b = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
                    black += 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
                    white += 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
                    is_opaque = FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
                case 0xff:    /* opaque pixel */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
                    r = r2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
                    g = *black++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
                    b = *black++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
                    black++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
                    white += 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
                default:      /* translucent pixel */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
                    r = 0xff * r2 / alpha;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
                    g = 0xff * *black++ / alpha;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
                    b = 0xff * *black++ / alpha;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
                    black++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
                    white += 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
                    is_opaque = FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
                    is_bitmask = FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
            *dst++ = (alpha << 24 | r << 16 | g << 8 | b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        white += padding;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
        black += padding;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
    return is_opaque ? java_awt_Transparency_OPAQUE :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
                       (is_bitmask ? java_awt_Transparency_BITMASK :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
                                     java_awt_Transparency_TRANSLUCENT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
static void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
gtk2_set_direction(GtkWidget *widget, GtkTextDirection dir)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     * Some engines (inexplicably) look at the direction of the widget's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     * parent, so we need to set the direction of both the widget and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     * parent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
    (*fp_gtk_widget_set_direction)(widget, dir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
    if (widget->parent != NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
        (*fp_gtk_widget_set_direction)(widget->parent, dir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
 * Initializes the widget to correct state for some engines.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
 * This is a pure empirical method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
static void init_toggle_widget(WidgetType widget_type, gint synth_state)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
    gboolean is_active = ((synth_state & SELECTED) != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
    if (widget_type == RADIO_BUTTON ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        widget_type == CHECK_BOX ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
        widget_type == TOGGLE_BUTTON) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        ((GtkToggleButton*)gtk2_widget)->active = is_active;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
    if ((synth_state & FOCUSED) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
        ((GtkObject*)gtk2_widget)->flags |= GTK_HAS_FOCUS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
        ((GtkObject*)gtk2_widget)->flags &= ~GTK_HAS_FOCUS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
    if ((synth_state & MOUSE_OVER) != 0 && (synth_state & PRESSED) == 0 ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
           (synth_state & FOCUSED) != 0 && (synth_state & PRESSED) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
        gtk2_widget->state = GTK_STATE_PRELIGHT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
    } else if ((synth_state & DISABLED) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
        gtk2_widget->state = GTK_STATE_INSENSITIVE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
        gtk2_widget->state = is_active ? GTK_STATE_ACTIVE : GTK_STATE_NORMAL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
/* GTK state_type filter */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
static GtkStateType get_gtk_state_type(WidgetType widget_type, gint synth_state)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
    GtkStateType result = GTK_STATE_NORMAL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
    if ((synth_state & DISABLED) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
        result = GTK_STATE_INSENSITIVE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
    } else if ((synth_state & PRESSED) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        result = GTK_STATE_ACTIVE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
    } else if ((synth_state & MOUSE_OVER) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
        result = GTK_STATE_PRELIGHT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
/* GTK shadow_type filter */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
static GtkShadowType get_gtk_shadow_type(WidgetType widget_type, gint synth_state)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
    GtkShadowType result = GTK_SHADOW_OUT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
    if ((synth_state & SELECTED) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
        result = GTK_SHADOW_IN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
static GtkWidget* gtk2_get_arrow(GtkArrowType arrow_type, GtkShadowType shadow_type)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
    GtkWidget *arrow = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
    if (NULL == gtk2_widgets[_GTK_ARROW_TYPE])
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
        gtk2_widgets[_GTK_ARROW_TYPE] = (*fp_gtk_arrow_new)(arrow_type, shadow_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
        (*fp_gtk_container_add)((GtkContainer *)gtk2_fixed, gtk2_widgets[_GTK_ARROW_TYPE]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
        (*fp_gtk_widget_realize)(gtk2_widgets[_GTK_ARROW_TYPE]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
    arrow = gtk2_widgets[_GTK_ARROW_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
    (*fp_gtk_arrow_set)(arrow, arrow_type, shadow_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
    return arrow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
static GtkAdjustment* create_adjustment()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
    return (GtkAdjustment *)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
            (*fp_gtk_adjustment_new)(50.0, 0.0, 100.0, 10.0, 20.0, 20.0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
 * Returns a pointer to the cached native widget for the specified widget
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
 * type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
static GtkWidget *gtk2_get_widget(WidgetType widget_type)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
    gboolean init_result = FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
    GtkWidget *result = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
    switch (widget_type)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
        case BUTTON:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
        case TABLE_HEADER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
            if (init_result = (NULL == gtk2_widgets[_GTK_BUTTON_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
                gtk2_widgets[_GTK_BUTTON_TYPE] = (*fp_gtk_button_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
            result = gtk2_widgets[_GTK_BUTTON_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
        case CHECK_BOX:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
            if (init_result = (NULL == gtk2_widgets[_GTK_CHECK_BUTTON_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
                gtk2_widgets[_GTK_CHECK_BUTTON_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
                    (*fp_gtk_check_button_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
            result = gtk2_widgets[_GTK_CHECK_BUTTON_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
        case CHECK_BOX_MENU_ITEM:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
            if (init_result = (NULL == gtk2_widgets[_GTK_CHECK_MENU_ITEM_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
                gtk2_widgets[_GTK_CHECK_MENU_ITEM_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
                    (*fp_gtk_check_menu_item_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
            result = gtk2_widgets[_GTK_CHECK_MENU_ITEM_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
        /************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
         *    Creation a dedicated color chooser is dangerous because
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
         * it deadlocks the EDT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
         ************************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
/*        case COLOR_CHOOSER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
            if (init_result =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
                    (NULL == gtk2_widgets[_GTK_COLOR_SELECTION_DIALOG_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
                gtk2_widgets[_GTK_COLOR_SELECTION_DIALOG_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
                    (*fp_gtk_color_selection_dialog_new)(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
            result = gtk2_widgets[_GTK_COLOR_SELECTION_DIALOG_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
            break;*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
        case COMBO_BOX:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
            if (init_result = (NULL == gtk2_widgets[_GTK_COMBO_BOX_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
                gtk2_widgets[_GTK_COMBO_BOX_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
                    (*fp_gtk_combo_box_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
            result = gtk2_widgets[_GTK_COMBO_BOX_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
        case COMBO_BOX_ARROW_BUTTON:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
            if (init_result =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
                    (NULL == gtk2_widgets[_GTK_COMBO_BOX_ARROW_BUTTON_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
                gtk2_widgets[_GTK_COMBO_BOX_ARROW_BUTTON_TYPE] =
411
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
  1123
                     (*fp_gtk_toggle_button_new)();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
            result = gtk2_widgets[_GTK_COMBO_BOX_ARROW_BUTTON_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
        case COMBO_BOX_TEXT_FIELD:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
            if (init_result =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
                    (NULL == gtk2_widgets[_GTK_COMBO_BOX_TEXT_FIELD_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
                result = gtk2_widgets[_GTK_COMBO_BOX_TEXT_FIELD_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
                     (*fp_gtk_entry_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
                GtkSettings* settings = fp_gtk_widget_get_settings(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
                fp_g_object_set(settings, "gtk-cursor-blink", FALSE, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
            result = gtk2_widgets[_GTK_COMBO_BOX_TEXT_FIELD_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
        case DESKTOP_ICON:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
        case INTERNAL_FRAME_TITLE_PANE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
        case LABEL:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
            if (init_result = (NULL == gtk2_widgets[_GTK_LABEL_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
                gtk2_widgets[_GTK_LABEL_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
                    (*fp_gtk_label_new)(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
            result = gtk2_widgets[_GTK_LABEL_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
        case DESKTOP_PANE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
        case PANEL:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
        case ROOT_PANE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
            if (init_result = (NULL == gtk2_widgets[_GTK_CONTAINER_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
                /* There is no constructor for a container type.  I've
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
                 * choosen GtkFixed container since it has a default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
                 * constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
                gtk2_widgets[_GTK_CONTAINER_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
                    (*fp_gtk_fixed_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
            result = gtk2_widgets[_GTK_CONTAINER_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
        case EDITOR_PANE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
        case TEXT_AREA:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
        case TEXT_PANE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
            if (init_result = (NULL == gtk2_widgets[_GTK_TEXT_VIEW_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
                gtk2_widgets[_GTK_TEXT_VIEW_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
                    (*fp_gtk_text_view_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
            result = gtk2_widgets[_GTK_TEXT_VIEW_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
        case FORMATTED_TEXT_FIELD:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
        case PASSWORD_FIELD:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
        case TEXT_FIELD:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
            if (init_result = (NULL == gtk2_widgets[_GTK_ENTRY_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
                gtk2_widgets[_GTK_ENTRY_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
                    (*fp_gtk_entry_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
                GtkSettings* settings =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
                    fp_gtk_widget_get_settings(gtk2_widgets[_GTK_ENTRY_TYPE]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
                fp_g_object_set(settings, "gtk-cursor-blink", FALSE, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
            result = gtk2_widgets[_GTK_ENTRY_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
        case HANDLE_BOX:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
            if (init_result = (NULL == gtk2_widgets[_GTK_HANDLE_BOX_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
                gtk2_widgets[_GTK_HANDLE_BOX_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
                    (*fp_gtk_handle_box_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
            result = gtk2_widgets[_GTK_HANDLE_BOX_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
        case HSCROLL_BAR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
        case HSCROLL_BAR_BUTTON_LEFT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
        case HSCROLL_BAR_BUTTON_RIGHT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
        case HSCROLL_BAR_TRACK:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
        case HSCROLL_BAR_THUMB:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
            if (init_result = (NULL == gtk2_widgets[_GTK_HSCROLLBAR_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
                gtk2_widgets[_GTK_HSCROLLBAR_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
                    (*fp_gtk_hscrollbar_new)(create_adjustment());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
            result = gtk2_widgets[_GTK_HSCROLLBAR_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
        case HSEPARATOR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
            if (init_result = (NULL == gtk2_widgets[_GTK_HSEPARATOR_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
                gtk2_widgets[_GTK_HSEPARATOR_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
                    (*fp_gtk_hseparator_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
            result = gtk2_widgets[_GTK_HSEPARATOR_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
        case HSLIDER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
        case HSLIDER_THUMB:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
        case HSLIDER_TRACK:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
            if (init_result = (NULL == gtk2_widgets[_GTK_HSCALE_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
                gtk2_widgets[_GTK_HSCALE_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
                    (*fp_gtk_hscale_new)(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
            result = gtk2_widgets[_GTK_HSCALE_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
        case HSPLIT_PANE_DIVIDER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
        case SPLIT_PANE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
            if (init_result = (NULL == gtk2_widgets[_GTK_HPANED_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
                gtk2_widgets[_GTK_HPANED_TYPE] = (*fp_gtk_hpaned_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
            result = gtk2_widgets[_GTK_HPANED_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
        case IMAGE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
            if (init_result = (NULL == gtk2_widgets[_GTK_IMAGE_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
                gtk2_widgets[_GTK_IMAGE_TYPE] = (*fp_gtk_image_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
            result = gtk2_widgets[_GTK_IMAGE_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
        case INTERNAL_FRAME:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
            if (init_result = (NULL == gtk2_widgets[_GTK_WINDOW_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
                gtk2_widgets[_GTK_WINDOW_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
                    (*fp_gtk_window_new)(GTK_WINDOW_TOPLEVEL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
            result = gtk2_widgets[_GTK_WINDOW_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
        case TOOL_TIP:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
            if (init_result = (NULL == gtk2_widgets[_GTK_TOOLTIP_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
                result = (*fp_gtk_window_new)(GTK_WINDOW_TOPLEVEL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
                (*fp_gtk_widget_set_name)(result, "gtk-tooltips");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
                gtk2_widgets[_GTK_TOOLTIP_TYPE] = result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
            result = gtk2_widgets[_GTK_TOOLTIP_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
        case LIST:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
        case TABLE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
        case TREE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
        case TREE_CELL:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
            if (init_result = (NULL == gtk2_widgets[_GTK_TREE_VIEW_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
                gtk2_widgets[_GTK_TREE_VIEW_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
                    (*fp_gtk_tree_view_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
            result = gtk2_widgets[_GTK_TREE_VIEW_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
        case TITLED_BORDER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
            if (init_result = (NULL == gtk2_widgets[_GTK_FRAME_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
                gtk2_widgets[_GTK_FRAME_TYPE] = fp_gtk_frame_new(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
            result = gtk2_widgets[_GTK_FRAME_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
        case POPUP_MENU:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
            if (init_result = (NULL == gtk2_widgets[_GTK_MENU_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
                gtk2_widgets[_GTK_MENU_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
                    (*fp_gtk_menu_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
            result = gtk2_widgets[_GTK_MENU_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
        case MENU:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
        case MENU_ITEM:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
        case MENU_ITEM_ACCELERATOR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
            if (init_result = (NULL == gtk2_widgets[_GTK_MENU_ITEM_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
                gtk2_widgets[_GTK_MENU_ITEM_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
                    (*fp_gtk_menu_item_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
            result = gtk2_widgets[_GTK_MENU_ITEM_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
        case MENU_BAR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
            if (init_result = (NULL == gtk2_widgets[_GTK_MENU_BAR_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
                gtk2_widgets[_GTK_MENU_BAR_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
                    (*fp_gtk_menu_bar_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
            result = gtk2_widgets[_GTK_MENU_BAR_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
        case COLOR_CHOOSER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
        case OPTION_PANE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
            if (init_result = (NULL == gtk2_widgets[_GTK_DIALOG_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
                gtk2_widgets[_GTK_DIALOG_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
                    (*fp_gtk_dialog_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
            result = gtk2_widgets[_GTK_DIALOG_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
        case POPUP_MENU_SEPARATOR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
            if (init_result =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
                    (NULL == gtk2_widgets[_GTK_SEPARATOR_MENU_ITEM_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
                gtk2_widgets[_GTK_SEPARATOR_MENU_ITEM_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
                    (*fp_gtk_separator_menu_item_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
            result = gtk2_widgets[_GTK_SEPARATOR_MENU_ITEM_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
        case HPROGRESS_BAR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
            if (init_result = (NULL == gtk2_widgets[_GTK_HPROGRESS_BAR_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
                gtk2_widgets[_GTK_HPROGRESS_BAR_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
                    (*fp_gtk_progress_bar_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
            result = gtk2_widgets[_GTK_HPROGRESS_BAR_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
        case VPROGRESS_BAR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
            if (init_result = (NULL == gtk2_widgets[_GTK_VPROGRESS_BAR_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
                gtk2_widgets[_GTK_VPROGRESS_BAR_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
                    (*fp_gtk_progress_bar_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
                 * Vertical JProgressBars always go bottom-to-top,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
                 * regardless of the ComponentOrientation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
                (*fp_gtk_progress_bar_set_orientation)(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
                    (GtkProgressBar *)gtk2_widgets[_GTK_VPROGRESS_BAR_TYPE],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
                    GTK_PROGRESS_BOTTOM_TO_TOP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
            result = gtk2_widgets[_GTK_VPROGRESS_BAR_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
        case RADIO_BUTTON:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
            if (init_result = (NULL == gtk2_widgets[_GTK_RADIO_BUTTON_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
                gtk2_widgets[_GTK_RADIO_BUTTON_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
                    (*fp_gtk_radio_button_new)(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
            result = gtk2_widgets[_GTK_RADIO_BUTTON_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
        case RADIO_BUTTON_MENU_ITEM:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
            if (init_result =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
                    (NULL == gtk2_widgets[_GTK_RADIO_MENU_ITEM_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
                gtk2_widgets[_GTK_RADIO_MENU_ITEM_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
                    (*fp_gtk_radio_menu_item_new)(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
            result = gtk2_widgets[_GTK_RADIO_MENU_ITEM_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
        case SCROLL_PANE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
            if (init_result =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
                    (NULL == gtk2_widgets[_GTK_SCROLLED_WINDOW_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
                gtk2_widgets[_GTK_SCROLLED_WINDOW_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
                    (*fp_gtk_scrolled_window_new)(NULL, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
            result = gtk2_widgets[_GTK_SCROLLED_WINDOW_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
        case SPINNER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
        case SPINNER_ARROW_BUTTON:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
        case SPINNER_TEXT_FIELD:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
            if (init_result = (NULL == gtk2_widgets[_GTK_SPIN_BUTTON_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
                result = gtk2_widgets[_GTK_SPIN_BUTTON_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
                    (*fp_gtk_spin_button_new)(NULL, 0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
                GtkSettings* settings = fp_gtk_widget_get_settings(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
                fp_g_object_set(settings, "gtk-cursor-blink", FALSE, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
            result = gtk2_widgets[_GTK_SPIN_BUTTON_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
        case TABBED_PANE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
        case TABBED_PANE_TAB_AREA:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
        case TABBED_PANE_CONTENT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
        case TABBED_PANE_TAB:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
            if (init_result = (NULL == gtk2_widgets[_GTK_NOTEBOOK_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
                gtk2_widgets[_GTK_NOTEBOOK_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
                    (*fp_gtk_notebook_new)(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
            result = gtk2_widgets[_GTK_NOTEBOOK_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
        case TOGGLE_BUTTON:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
            if (init_result = (NULL == gtk2_widgets[_GTK_TOGGLE_BUTTON_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
                gtk2_widgets[_GTK_TOGGLE_BUTTON_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
                    (*fp_gtk_toggle_button_new)(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
            result = gtk2_widgets[_GTK_TOGGLE_BUTTON_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
        case TOOL_BAR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
        case TOOL_BAR_DRAG_WINDOW:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
            if (init_result = (NULL == gtk2_widgets[_GTK_TOOLBAR_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
                gtk2_widgets[_GTK_TOOLBAR_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
                    (*fp_gtk_toolbar_new)(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
            result = gtk2_widgets[_GTK_TOOLBAR_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
        case TOOL_BAR_SEPARATOR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
            if (init_result =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
                    (NULL == gtk2_widgets[_GTK_SEPARATOR_TOOL_ITEM_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
                gtk2_widgets[_GTK_SEPARATOR_TOOL_ITEM_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
                    (*fp_gtk_separator_tool_item_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
            result = gtk2_widgets[_GTK_SEPARATOR_TOOL_ITEM_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
        case VIEWPORT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
            if (init_result = (NULL == gtk2_widgets[_GTK_VIEWPORT_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
                GtkAdjustment *adjustment = create_adjustment();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
                gtk2_widgets[_GTK_VIEWPORT_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
                    (*fp_gtk_viewport_new)(adjustment, adjustment);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
            result = gtk2_widgets[_GTK_VIEWPORT_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
        case VSCROLL_BAR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
        case VSCROLL_BAR_BUTTON_UP:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
        case VSCROLL_BAR_BUTTON_DOWN:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
        case VSCROLL_BAR_TRACK:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
        case VSCROLL_BAR_THUMB:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
            if (init_result = (NULL == gtk2_widgets[_GTK_VSCROLLBAR_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
                gtk2_widgets[_GTK_VSCROLLBAR_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
                    (*fp_gtk_vscrollbar_new)(create_adjustment());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
            result = gtk2_widgets[_GTK_VSCROLLBAR_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
        case VSEPARATOR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
            if (init_result = (NULL == gtk2_widgets[_GTK_VSEPARATOR_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
                gtk2_widgets[_GTK_VSEPARATOR_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
                    (*fp_gtk_vseparator_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
            result = gtk2_widgets[_GTK_VSEPARATOR_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
        case VSLIDER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
        case VSLIDER_THUMB:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
        case VSLIDER_TRACK:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
            if (init_result = (NULL == gtk2_widgets[_GTK_VSCALE_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
                gtk2_widgets[_GTK_VSCALE_TYPE] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
                    (*fp_gtk_vscale_new)(NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
            result = gtk2_widgets[_GTK_VSCALE_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
             * Vertical JSliders start at the bottom, while vertical
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
             * GtkVScale widgets start at the top (by default), so to fix
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
             * this we set the "inverted" flag to get the Swing behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
            ((GtkRange*)result)->inverted = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
        case VSPLIT_PANE_DIVIDER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
            if (init_result = (NULL == gtk2_widgets[_GTK_VPANED_TYPE]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
                gtk2_widgets[_GTK_VPANED_TYPE] = (*fp_gtk_vpaned_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
            result = gtk2_widgets[_GTK_VPANED_TYPE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
            result = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
    if (result != NULL && init_result)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
        if (widget_type == RADIO_BUTTON_MENU_ITEM ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
                widget_type == CHECK_BOX_MENU_ITEM ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
                widget_type == MENU_ITEM ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
                widget_type == MENU ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
                widget_type == POPUP_MENU_SEPARATOR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
            GtkWidget *menu = gtk2_get_widget(POPUP_MENU);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
            (*fp_gtk_menu_shell_append)((GtkMenuShell *)menu, result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
        else if (widget_type == POPUP_MENU)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
            GtkWidget *menu_bar = gtk2_get_widget(MENU_BAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
            GtkWidget *root_menu = (*fp_gtk_menu_item_new)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
            (*fp_gtk_menu_item_set_submenu)((GtkMenuItem*)root_menu, result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
            (*fp_gtk_menu_shell_append)((GtkMenuShell *)menu_bar, root_menu);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
        else if (widget_type == COMBO_BOX_ARROW_BUTTON ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
                 widget_type == COMBO_BOX_TEXT_FIELD)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
            /*
411
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
  1497
            * We add a regular GtkButton/GtkEntry to a GtkComboBoxEntry
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
  1498
            * in order to trick engines into thinking it's a real combobox
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
  1499
            * arrow button/text field.
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
  1500
            */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
            GtkWidget *combo = (*fp_gtk_combo_box_entry_new)();
411
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
  1502
2487
f1744cd208ba 6804221: Three tests for JTabbedPane produce VM crash on rhel3
peterz
parents: 715
diff changeset
  1503
            if (new_combo && widget_type == COMBO_BOX_ARROW_BUTTON) {
411
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
  1504
                (*fp_gtk_widget_set_parent)(result, combo);
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
  1505
                ((GtkBin*)combo)->child = result;
2487
f1744cd208ba 6804221: Three tests for JTabbedPane produce VM crash on rhel3
peterz
parents: 715
diff changeset
  1506
            } else {
f1744cd208ba 6804221: Three tests for JTabbedPane produce VM crash on rhel3
peterz
parents: 715
diff changeset
  1507
                (*fp_gtk_container_add)((GtkContainer *)combo, result);
411
f903e1d5a11f 6624717: Corrupted combo box, GTK L&F, Ubuntu 7.10
stayer
parents: 2
diff changeset
  1508
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
            (*fp_gtk_container_add)((GtkContainer *)gtk2_fixed, combo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
        else if (widget_type != TOOL_TIP &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
                 widget_type != INTERNAL_FRAME &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
                 widget_type != OPTION_PANE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
            (*fp_gtk_container_add)((GtkContainer *)gtk2_fixed, result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
        (*fp_gtk_widget_realize)(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
void gtk2_paint_arrow(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
        GtkShadowType shadow_type, const gchar *detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
        gint x, gint y, gint width, gint height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
        GtkArrowType arrow_type, gboolean fill)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
    static int w, h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
    static GtkRequisition size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
    if (widget_type == COMBO_BOX_ARROW_BUTTON || widget_type == TABLE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
        gtk2_widget = gtk2_get_arrow(arrow_type, shadow_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
    else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
        gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
    switch (widget_type)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
        case SPINNER_ARROW_BUTTON:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
            x = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
            y = ((arrow_type == GTK_ARROW_UP) ? 2 : 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
            height -= 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
            width -= 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
            w = width / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
            w -= w % 2 - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
            h = (w + 1) / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
        case HSCROLL_BAR_BUTTON_LEFT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
        case HSCROLL_BAR_BUTTON_RIGHT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
        case VSCROLL_BAR_BUTTON_UP:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
        case VSCROLL_BAR_BUTTON_DOWN:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
            w = width / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
            h = height / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
        case COMBO_BOX_ARROW_BUTTON:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
        case TABLE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
            x = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
            (*fp_gtk_widget_size_request)(gtk2_widget, &size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
            w = size.width - ((GtkMisc*)gtk2_widget)->xpad * 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
            h = size.height - ((GtkMisc*)gtk2_widget)->ypad * 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
            w = h = MIN(MIN(w, h), MIN(width,height)) * 0.7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
            w = width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
            h = height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
    x += (width - w) / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
    y += (height - h) / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
    (*fp_gtk_paint_arrow)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
            shadow_type, NULL, gtk2_widget, detail, arrow_type, fill,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
            x, y, w, h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
    (*fp_gtk_paint_arrow)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
            shadow_type, NULL, gtk2_widget, detail, arrow_type, fill,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
            x, y, w, h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
void gtk2_paint_box(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
                    GtkShadowType shadow_type, const gchar *detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
                    gint x, gint y, gint width, gint height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
                    gint synth_state, GtkTextDirection dir)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
     * The clearlooks engine sometimes looks at the widget's state field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
     * instead of just the state_type variable that we pass in, so to account
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
     * for those cases we set the widget's state field accordingly.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
     * flags field is similarly important for things like focus/default state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
    gtk2_widget->state = state_type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
    if (widget_type == HSLIDER_TRACK) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
         * For horizontal JSliders with right-to-left orientation, we need
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
         * to set the "inverted" flag to match the native GTK behavior where
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
         * the foreground highlight is on the right side of the slider thumb.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
         * This is needed especially for the ubuntulooks engine, which looks
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
         * exclusively at the "inverted" flag to determine on which side of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
         * the thumb to paint the highlight...
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
        ((GtkRange*)gtk2_widget)->inverted = (dir == GTK_TEXT_DIR_RTL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
         * Note however that other engines like clearlooks will look at both
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
         * the "inverted" field and the text direction to determine how
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
         * the foreground highlight is painted:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
         *     !inverted && ltr --> paint highlight on left side
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
         *     !inverted && rtl --> paint highlight on right side
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
         *      inverted && ltr --> paint highlight on right side
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
         *      inverted && rtl --> paint highlight on left side
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
         * So the only way to reliably get the desired results for horizontal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
         * JSlider (i.e., highlight on left side for LTR ComponentOrientation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
         * and highlight on right side for RTL ComponentOrientation) is to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
         * always override text direction as LTR, and then set the "inverted"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
         * flag accordingly (as we have done above).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
        dir = GTK_TEXT_DIR_LTR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
     * Some engines (e.g. clearlooks) will paint the shadow of certain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
     * widgets (e.g. COMBO_BOX_ARROW_BUTTON) differently depending on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
     * the text direction.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
    gtk2_set_direction(gtk2_widget, dir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
    switch (widget_type) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
    case BUTTON:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
        if (synth_state & DEFAULT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
            ((GtkObject*)gtk2_widget)->flags |= GTK_HAS_DEFAULT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
            ((GtkObject*)gtk2_widget)->flags &= ~GTK_HAS_DEFAULT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
    case TOGGLE_BUTTON:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
        init_toggle_widget(widget_type, synth_state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
    case HSCROLL_BAR_BUTTON_LEFT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
         * The clearlooks engine will draw a "left" button when:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
         *   x == w->allocation.x
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
         * The ubuntulooks engine will draw a "left" button when:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
         *   [x,y,width,height]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
         *     intersects
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
         *   [w->alloc.x,w->alloc.y,width,height]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
         * The values that are set below should ensure that a "left"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
         * button is rendered for both of these (and other) engines.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
        gtk2_widget->allocation.x = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
        gtk2_widget->allocation.y = y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
        gtk2_widget->allocation.width = width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
        gtk2_widget->allocation.height = height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
    case HSCROLL_BAR_BUTTON_RIGHT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
         * The clearlooks engine will draw a "right" button when:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
         *   x + width == w->allocation.x + w->allocation.width
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
         * The ubuntulooks engine will draw a "right" button when:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
         *   [x,y,width,height]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
         *     does not intersect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
         *   [w->alloc.x,w->alloc.y,width,height]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
         *     but does intersect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
         *   [w->alloc.x+width,w->alloc.y,width,height]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
         * The values that are set below should ensure that a "right"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
         * button is rendered for both of these (and other) engines.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
        gtk2_widget->allocation.x = x+width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
        gtk2_widget->allocation.y = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
        gtk2_widget->allocation.width = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
        gtk2_widget->allocation.height = height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
    case VSCROLL_BAR_BUTTON_UP:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
         * The clearlooks engine will draw an "up" button when:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
         *   y == w->allocation.y
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
         * The ubuntulooks engine will draw an "up" button when:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
         *   [x,y,width,height]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
         *     intersects
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
         *   [w->alloc.x,w->alloc.y,width,height]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
         * The values that are set below should ensure that an "up"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
         * button is rendered for both of these (and other) engines.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
        gtk2_widget->allocation.x = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
        gtk2_widget->allocation.y = y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
        gtk2_widget->allocation.width = width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
        gtk2_widget->allocation.height = height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
    case VSCROLL_BAR_BUTTON_DOWN:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
         * The clearlooks engine will draw a "down" button when:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
         *   y + height == w->allocation.y + w->allocation.height
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
         * The ubuntulooks engine will draw a "down" button when:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
         *   [x,y,width,height]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
         *     does not intersect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
         *   [w->alloc.x,w->alloc.y,width,height]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
         *     but does intersect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
         *   [w->alloc.x,w->alloc.y+height,width,height]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
         * The values that are set below should ensure that a "down"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
         * button is rendered for both of these (and other) engines.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
        gtk2_widget->allocation.x = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
        gtk2_widget->allocation.y = y+height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
        gtk2_widget->allocation.width = width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
        gtk2_widget->allocation.height = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
    default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
    (*fp_gtk_paint_box)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
            shadow_type, NULL, gtk2_widget, detail, x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
    (*fp_gtk_paint_box)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
            shadow_type, NULL, gtk2_widget, detail, x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
     * Reset the text direction to the default value so that we don't
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
     * accidentally affect other operations and widgets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
    gtk2_set_direction(gtk2_widget, GTK_TEXT_DIR_LTR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
void gtk2_paint_box_gap(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
        GtkShadowType shadow_type, const gchar *detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
        gint x, gint y, gint width, gint height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
        GtkPositionType gap_side, gint gap_x, gint gap_width)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
    /* Clearlooks needs a real clip area to paint the gap properly */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
    GdkRectangle area = { x, y, width, height };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
    (*fp_gtk_paint_box_gap)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
            shadow_type, &area, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
            x, y, width, height, gap_side, gap_x, gap_width);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
    (*fp_gtk_paint_box_gap)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
            shadow_type, &area, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
            x, y, width, height, gap_side, gap_x, gap_width);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
void gtk2_paint_check(WidgetType widget_type, gint synth_state,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
        const gchar *detail, gint x, gint y, gint width, gint height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
    GtkStateType state_type = get_gtk_state_type(widget_type, synth_state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
    GtkShadowType shadow_type = get_gtk_shadow_type(widget_type, synth_state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
    init_toggle_widget(widget_type, synth_state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
    (*fp_gtk_paint_check)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
            shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
            x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
    (*fp_gtk_paint_check)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
            shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
            x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
void gtk2_paint_diamond(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
        GtkShadowType shadow_type, const gchar *detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
        gint x, gint y, gint width, gint height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
    (*fp_gtk_paint_diamond)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
            shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
            x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
    (*fp_gtk_paint_diamond)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
            shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
            x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
void gtk2_paint_expander(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
        const gchar *detail, gint x, gint y, gint width, gint height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
        GtkExpanderStyle expander_style)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
    (*fp_gtk_paint_expander)(gtk2_widget->style, gtk2_white_pixmap,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
            state_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
            x + width / 2, y + height / 2, expander_style);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
    (*fp_gtk_paint_expander)(gtk2_widget->style, gtk2_black_pixmap,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
            state_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
            x + width / 2, y + height / 2, expander_style);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
void gtk2_paint_extension(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
        GtkShadowType shadow_type, const gchar *detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
        gint x, gint y, gint width, gint height, GtkPositionType gap_side)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
    (*fp_gtk_paint_extension)(gtk2_widget->style, gtk2_white_pixmap,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
            state_type, shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
            x, y, width, height, gap_side);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
    (*fp_gtk_paint_extension)(gtk2_widget->style, gtk2_black_pixmap,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
            state_type, shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
            x, y, width, height, gap_side);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
void gtk2_paint_flat_box(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
        GtkShadowType shadow_type, const gchar *detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
        gint x, gint y, gint width, gint height, gboolean has_focus)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
    if (has_focus)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
        ((GtkObject*)gtk2_widget)->flags |= GTK_HAS_FOCUS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
    else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
        ((GtkObject*)gtk2_widget)->flags &= ~GTK_HAS_FOCUS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
    (*fp_gtk_paint_flat_box)(gtk2_widget->style, gtk2_white_pixmap,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
            state_type, shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
            x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
    (*fp_gtk_paint_flat_box)(gtk2_widget->style, gtk2_black_pixmap,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
            state_type, shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
            x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
void gtk2_paint_focus(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
        const char *detail, gint x, gint y, gint width, gint height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
    (*fp_gtk_paint_focus)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
            NULL, gtk2_widget, detail, x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
    (*fp_gtk_paint_focus)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
            NULL, gtk2_widget, detail, x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
void gtk2_paint_handle(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
        GtkShadowType shadow_type, const gchar *detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
        gint x, gint y, gint width, gint height, GtkOrientation orientation)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
    (*fp_gtk_paint_handle)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
            shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
            x, y, width, height, orientation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
    (*fp_gtk_paint_handle)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
            shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
            x, y, width, height, orientation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
void gtk2_paint_hline(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
        const gchar *detail, gint x, gint y, gint width, gint height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
    (*fp_gtk_paint_hline)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
            NULL, gtk2_widget, detail, x, x + width, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
    (*fp_gtk_paint_hline)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
            NULL, gtk2_widget, detail, x, x + width, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
void gtk2_paint_option(WidgetType widget_type, gint synth_state,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
        const gchar *detail, gint x, gint y, gint width, gint height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
    GtkStateType state_type = get_gtk_state_type(widget_type, synth_state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
    GtkShadowType shadow_type = get_gtk_shadow_type(widget_type, synth_state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
    init_toggle_widget(widget_type, synth_state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
    (*fp_gtk_paint_option)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
            shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
            x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
    (*fp_gtk_paint_option)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
            shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
            x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
void gtk2_paint_shadow(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
                       GtkShadowType shadow_type, const gchar *detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
                       gint x, gint y, gint width, gint height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
                       gint synth_state, GtkTextDirection dir)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
     * The clearlooks engine sometimes looks at the widget's state field
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
     * instead of just the state_type variable that we pass in, so to account
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
     * for those cases we set the widget's state field accordingly.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
     * flags field is similarly important for things like focus state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
    gtk2_widget->state = state_type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
     * Some engines (e.g. clearlooks) will paint the shadow of certain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
     * widgets (e.g. COMBO_BOX_TEXT_FIELD) differently depending on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
     * the text direction.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
    gtk2_set_direction(gtk2_widget, dir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
    switch (widget_type) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
    case COMBO_BOX_TEXT_FIELD:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
    case FORMATTED_TEXT_FIELD:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
    case PASSWORD_FIELD:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
    case SPINNER_TEXT_FIELD:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
    case TEXT_FIELD:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
        if (synth_state & FOCUSED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
            ((GtkObject*)gtk2_widget)->flags |= GTK_HAS_FOCUS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
            ((GtkObject*)gtk2_widget)->flags &= ~GTK_HAS_FOCUS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
    default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
    (*fp_gtk_paint_shadow)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
            shadow_type, NULL, gtk2_widget, detail, x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
    (*fp_gtk_paint_shadow)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1917
            shadow_type, NULL, gtk2_widget, detail, x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1918
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
     * Reset the text direction to the default value so that we don't
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
     * accidentally affect other operations and widgets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
    gtk2_set_direction(gtk2_widget, GTK_TEXT_DIR_LTR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
void gtk2_paint_slider(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
        GtkShadowType shadow_type, const gchar *detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
        gint x, gint y, gint width, gint height, GtkOrientation orientation)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1931
    (*fp_gtk_paint_slider)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
            shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
            x, y, width, height, orientation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
    (*fp_gtk_paint_slider)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
            shadow_type, NULL, gtk2_widget, detail,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
            x, y, width, height, orientation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
void gtk2_paint_vline(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
        const gchar *detail, gint x, gint y, gint width, gint height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
    (*fp_gtk_paint_vline)(gtk2_widget->style, gtk2_white_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
            NULL, gtk2_widget, detail, y, y + height, x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
    (*fp_gtk_paint_vline)(gtk2_widget->style, gtk2_black_pixmap, state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
            NULL, gtk2_widget, detail, y, y + height, x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
void gtk_paint_background(WidgetType widget_type, GtkStateType state_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1950
        gint x, gint y, gint width, gint height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
    (*fp_gtk_style_apply_default_background)(gtk2_widget->style,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1954
            gtk2_white_pixmap, TRUE, state_type, NULL, x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1955
    (*fp_gtk_style_apply_default_background)(gtk2_widget->style,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
            gtk2_black_pixmap, TRUE, state_type, NULL, x, y, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1958
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
GdkPixbuf *gtk2_get_stock_icon(gint widget_type, const gchar *stock_id,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
        GtkIconSize size, GtkTextDirection direction, const char *detail)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
    init_containers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
    gtk2_widget = gtk2_get_widget((widget_type < 0) ? IMAGE : widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
    gtk2_widget->state = GTK_STATE_NORMAL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
    (*fp_gtk_widget_set_direction)(gtk2_widget, direction);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
    return (*fp_gtk_widget_render_icon)(gtk2_widget, stock_id, size, detail);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
/*************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
gint gtk2_get_xthickness(JNIEnv *env, WidgetType widget_type)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
    init_containers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
    GtkStyle* style = gtk2_widget->style;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
    return style->xthickness;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
gint gtk2_get_ythickness(JNIEnv *env, WidgetType widget_type)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
    init_containers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
    GtkStyle* style = gtk2_widget->style;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
    return style->ythickness;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
/*************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
guint8 recode_color(guint16 channel)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1991
    return (guint8)(channel>>8);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
gint gtk2_get_color_for_state(JNIEnv *env, WidgetType widget_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
                              GtkStateType state_type, ColorType color_type)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
    gint result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
    GdkColor *color = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
    init_containers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
    GtkStyle* style = gtk2_widget->style;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
    switch (color_type)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
        case FOREGROUND:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
            color = &(style->fg[state_type]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
        case BACKGROUND:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
            color = &(style->bg[state_type]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2013
        case TEXT_FOREGROUND:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
            color = &(style->text[state_type]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
        case TEXT_BACKGROUND:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2017
            color = &(style->base[state_type]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
        case LIGHT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
            color = &(style->light[state_type]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
        case DARK:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
            color = &(style->dark[state_type]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
        case MID:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
            color = &(style->mid[state_type]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
        case FOCUS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
        case BLACK:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
            color = &(style->black);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
        case WHITE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
            color = &(style->white);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2036
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
    if (color)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
        result = recode_color(color->red)   << 16 |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
                 recode_color(color->green) << 8  |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
                 recode_color(color->blue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2042
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2043
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
/*************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
jobject create_Boolean(JNIEnv *env, jboolean boolean_value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
jobject create_Integer(JNIEnv *env, jint int_value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
jobject create_Long(JNIEnv *env, jlong long_value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
jobject create_Float(JNIEnv *env, jfloat float_value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
jobject create_Double(JNIEnv *env, jdouble double_value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
jobject create_Character(JNIEnv *env, jchar char_value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2052
jobject create_Insets(JNIEnv *env, GtkBorder *border);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2053
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2054
jobject gtk2_get_class_value(JNIEnv *env, WidgetType widget_type, jstring jkey)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
    init_containers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2058
    const char* key = getStrFor(env, jkey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2059
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
    GValue value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
    value.g_type = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
    GParamSpec* param = (*fp_gtk_widget_class_find_style_property)(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
                                    ((GTypeInstance*)gtk2_widget)->g_class, key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
    if( param )
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
        (*fp_g_value_init)( &value, param->value_type );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2069
        (*fp_gtk_widget_style_get_property)(gtk2_widget, key, &value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
        if( (*fp_g_type_is_a)( param->value_type, G_TYPE_BOOLEAN ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2073
            gboolean val = (*fp_g_value_get_boolean)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
            return create_Boolean(env, (jboolean)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2076
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_CHAR ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2077
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
            gchar val = (*fp_g_value_get_char)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
            return create_Character(env, (jchar)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_UCHAR ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2082
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
            guchar val = (*fp_g_value_get_uchar)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
            return create_Character(env, (jchar)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2085
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2086
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_INT ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
            gint val = (*fp_g_value_get_int)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
            return create_Integer(env, (jint)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2091
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_UINT ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2092
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2093
            guint val = (*fp_g_value_get_uint)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2094
            return create_Integer(env, (jint)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2095
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2096
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_LONG ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2097
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2098
            glong val = (*fp_g_value_get_long)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2099
            return create_Long(env, (jlong)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2100
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2101
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_ULONG ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2102
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2103
            gulong val = (*fp_g_value_get_ulong)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2104
            return create_Long(env, (jlong)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2106
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_INT64 ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2107
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2108
            gint64 val = (*fp_g_value_get_int64)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
            return create_Long(env, (jlong)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2111
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_UINT64 ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2112
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2113
            guint64 val = (*fp_g_value_get_uint64)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2114
            return create_Long(env, (jlong)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2116
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_FLOAT ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2118
            gfloat val = (*fp_g_value_get_float)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2119
            return create_Float(env, (jfloat)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2120
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2121
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_DOUBLE ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2122
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2123
            gdouble val = (*fp_g_value_get_double)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2124
            return create_Double(env, (jdouble)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2125
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2126
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_ENUM ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2127
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2128
            gint val = (*fp_g_value_get_enum)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2129
            return create_Integer(env, (jint)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2130
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2131
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_FLAGS ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2132
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2133
            guint val = (*fp_g_value_get_flags)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2134
            return create_Integer(env, (jint)val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2135
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2136
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_STRING ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2137
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2138
            const gchar* val = (*fp_g_value_get_string)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2139
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2140
            /* We suppose that all values come in C locale and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2141
             * utf-8 representation of a string is the same as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2142
             * the string itself. If this isn't so we should
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
             * use g_convert.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2145
            return (*env)->NewStringUTF(env, val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2146
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
        else if( (*fp_g_type_is_a)( param->value_type, GTK_TYPE_BORDER ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2149
            GtkBorder *border = (GtkBorder*)(*fp_g_value_get_boxed)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2150
            return border ? create_Insets(env, border) : NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2153
        /*      TODO: Other types are not supported yet.*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2154
/*        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_PARAM ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2155
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2156
            GParamSpec* val = (*fp_g_value_get_param)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2157
            printf( "Param: %p\n", val );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2159
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_BOXED ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2160
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2161
            gpointer* val = (*fp_g_value_get_boxed)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2162
            printf( "Boxed: %p\n", val );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2163
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2164
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_POINTER ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2165
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
            gpointer* val = (*fp_g_value_get_pointer)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2167
            printf( "Pointer: %p\n", val );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2168
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2169
        else if( (*fp_g_type_is_a)( param->value_type, G_TYPE_OBJECT ))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2170
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2171
            GObject* val = (GObject*)(*fp_g_value_get_object)(&value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2172
            printf( "Object: %p\n", val );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
        }*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2175
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2176
    return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2177
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2178
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
void gtk2_set_range_value(WidgetType widget_type, jdouble value,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2180
                          jdouble min, jdouble max, jdouble visible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2181
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2182
    GtkAdjustment *adj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2183
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2184
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2185
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2186
    adj = (*fp_gtk_range_get_adjustment)((GtkRange *)gtk2_widget);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2187
    adj->value = (gdouble)value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2188
    adj->lower = (gdouble)min;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2189
    adj->upper = (gdouble)max;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2190
    adj->page_size = (gdouble)visible;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2191
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2192
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2193
/*************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2194
jobject create_Object(JNIEnv *env, jmethodID *cid,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2195
                             const char* class_name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2196
                             const char* signature,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2197
                             jvalue* value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2198
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2199
    jclass  class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2200
    jobject result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2201
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2202
    class = (*env)->FindClass(env, class_name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2203
    if( class == NULL )
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2204
        return NULL; /* can't find/load the class, exception thrown */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2205
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2206
    if( *cid == NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2207
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2208
        *cid = (*env)->GetMethodID(env, class, "<init>", signature);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2209
        if( *cid == NULL )
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2210
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2211
            (*env)->DeleteLocalRef(env, class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2212
            return NULL; /* can't find/get the method, exception thrown */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2213
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2214
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2215
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2216
    result = (*env)->NewObjectA(env, class, *cid, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2217
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2218
    (*env)->DeleteLocalRef(env, class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2219
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2220
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2221
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2222
jobject create_Boolean(JNIEnv *env, jboolean boolean_value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2223
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2224
    static jmethodID cid = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2225
    jvalue value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2226
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2227
    value.z = boolean_value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2228
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2229
    return create_Object(env, &cid, "java/lang/Boolean", "(Z)V", &value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2230
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2231
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2232
jobject create_Integer(JNIEnv *env, jint int_value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2233
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2234
    static jmethodID cid = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2235
    jvalue value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2236
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2237
    value.i = int_value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2238
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2239
    return create_Object(env, &cid, "java/lang/Integer", "(I)V", &value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2240
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2241
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2242
jobject create_Long(JNIEnv *env, jlong long_value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2243
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2244
    static jmethodID cid = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2245
    jvalue value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2246
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2247
    value.j = long_value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2248
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2249
    return create_Object(env, &cid, "java/lang/Long", "(J)V", &value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2250
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2251
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2252
jobject create_Float(JNIEnv *env, jfloat float_value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2253
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2254
    static jmethodID cid = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2255
    jvalue value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2256
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2257
    value.f = float_value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2258
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2259
    return create_Object(env, &cid, "java/lang/Float", "(F)V", &value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2260
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2261
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2262
jobject create_Double(JNIEnv *env, jdouble double_value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2263
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2264
    static jmethodID cid = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2265
    jvalue value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2266
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2267
    value.d = double_value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2268
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2269
    return create_Object(env, &cid, "java/lang/Double", "(D)V", &value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2270
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2271
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2272
jobject create_Character(JNIEnv *env, jchar char_value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2273
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2274
    static jmethodID cid = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2275
    jvalue value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2276
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2277
    value.c = char_value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2278
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2279
    return create_Object(env, &cid, "java/lang/Character", "(C)V", &value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2280
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2281
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2282
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2283
jobject create_Insets(JNIEnv *env, GtkBorder *border)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2284
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2285
    static jmethodID cid = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2286
    jvalue values[4];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2287
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2288
    values[0].i = border->top;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2289
    values[1].i = border->left;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2290
    values[2].i = border->bottom;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2291
    values[3].i = border->right;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2292
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2293
    return create_Object(env, &cid, "java/awt/Insets", "(IIII)V", values);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2294
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2295
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2296
/*********************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2297
jstring gtk2_get_pango_font_name(JNIEnv *env, WidgetType widget_type)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2298
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2299
    init_containers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2300
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2301
    gtk2_widget = gtk2_get_widget(widget_type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2302
    jstring  result = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2303
    GtkStyle* style = gtk2_widget->style;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2304
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2305
    if (style && style->font_desc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2306
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2307
        gchar* val = (*fp_pango_font_description_to_string)(style->font_desc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2308
        result = (*env)->NewStringUTF(env, val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2309
        (*fp_g_free)( val );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2310
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2311
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2312
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2313
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2314
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2315
/***********************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2316
jobject get_string_property(JNIEnv *env, GtkSettings* settings, const gchar* key)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2317
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2318
    jobject result = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2319
    gchar*  strval = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2320
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2321
    (*fp_g_object_get)(settings, key, &strval, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2322
    result = (*env)->NewStringUTF(env, strval);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2323
    (*fp_g_free)(strval);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2324
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2325
    return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2326
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2327
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2328
jobject get_integer_property(JNIEnv *env, GtkSettings* settings, const gchar* key)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2329
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2330
    gint    intval = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2331
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2332
    (*fp_g_object_get)(settings, key, &intval, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2333
    return create_Integer(env, intval);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2334
}*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2335
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2336
jobject gtk2_get_setting(JNIEnv *env, Setting property)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2337
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2338
    GtkSettings* settings = (*fp_gtk_settings_get_default)();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2339
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2340
    switch (property)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2341
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2342
        case GTK_FONT_NAME:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2343
            return get_string_property(env, settings, "gtk-font-name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2344
        case GTK_ICON_SIZES:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2345
            return get_string_property(env, settings, "gtk-icon-sizes");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2347
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2348
    return NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2349
}