source: trunk/gcc/libjava/gnu/gcj/xlib/natXUnmapEvent.cc

Last change on this file was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 872 bytes
Line 
1/* Copyright (C) 2000 Free Software Foundation
2
3 This file is part of libgcj.
4
5This software is copyrighted work licensed under the terms of the
6Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7details. */
8
9#include <X11/Xlib.h>
10
11#include <gcj/cni.h>
12#include <gnu/gcj/RawData.h>
13
14#include <gnu/gcj/xlib/Display.h>
15#include <gnu/gcj/xlib/Window.h>
16#include <gnu/gcj/xlib/XAnyEvent.h>
17#include <gnu/gcj/xlib/XEvent.h>
18#include <gnu/gcj/xlib/XUnmapEvent.h>
19
20void gnu::gcj::xlib::XUnmapEvent::setUnmappedWindow(gnu::gcj::xlib::Window*
21 unmappedWindow)
22{
23 ::XUnmapEvent* evt = (::XUnmapEvent*) event->structure;
24 evt->window = unmappedWindow->getXID();
25}
26
27void gnu::gcj::xlib::XUnmapEvent::setFromConfigure(jboolean fromConfigure)
28{
29 ::XUnmapEvent* evt = (::XUnmapEvent*) event->structure;
30 evt->from_configure = fromConfigure ? True : False;
31}
32
Note: See TracBrowser for help on using the repository browser.