aboutsummaryrefslogtreecommitdiff
path: root/libjava/gnu/awt/gtk/natGtkWindowPeer.cc
blob: d3f05c951c08ca5383e52cff5d65593b540cdd14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// This file was created by `gcjh -stubs'. -*- c++ -*-
//
// This file is intended to give you a head start on implementing native
// methods using CNI.
// Be aware: running `gcjh -stubs ' once more for this class may
// overwrite any edits you have made to this file.

#include <gnu/awt/gtk/GtkWindowPeer.h>
#include <gcj/cni.h>

#include <gtk/gtk.h>

void
gnu::awt::gtk::GtkWindowPeer::toBack ()
{
  GDK_THREADS_ENTER ();
  gdk_window_lower (GTK_WIDGET (ptr)->window);
  GDK_THREADS_LEAVE ();
}

void
gnu::awt::gtk::GtkWindowPeer::toFront ()
{
  GDK_THREADS_ENTER ();
  gdk_window_raise (GTK_WIDGET (ptr)->window);
  GDK_THREADS_LEAVE ();
}

void
gnu::awt::gtk::GtkWindowPeer::create ()
{
  if (ptr == NULL)
    {
      GDK_THREADS_ENTER ();
      ptr = (gnu::gcj::RawData *) gtk_window_new(GTK_WINDOW_POPUP);
      GDK_THREADS_LEAVE ();
    }
    
  gnu::awt::gtk::GtkContainerPeer::create();
}