/* Copyright (C) 2000 Free Software Foundation This file is part of libgcj. This software is copyrighted work licensed under the terms of the Libgcj License. Please consult the file "LIBGCJ_LICENSE" for details. */ #include #include #include #include #include #include #include #include void gnu::gcj::xlib::XUnmapEvent::setUnmappedWindow(gnu::gcj::xlib::Window* unmappedWindow) { ::XUnmapEvent* evt = (::XUnmapEvent*) event->structure; evt->window = unmappedWindow->getXID(); } void gnu::gcj::xlib::XUnmapEvent::setFromConfigure(jboolean fromConfigure) { ::XUnmapEvent* evt = (::XUnmapEvent*) event->structure; evt->from_configure = fromConfigure ? True : False; }