b3208f56cb
* exception.cc (java_eh_info): Make value type jthrowable. (_Jv_type_matcher): Remove now unneeded cast. (_Jv_Throw): Make argument type jthrowable. Munge name for SJLJ_EXCEPTIONS here ... * gcj/cni.h: ... not here. (JvThrow): Remove. * gcj/javaprims.h (_Jv_Throw, _Jv_Sjlj_Throw): Update declarations. * defineclass.cc, interpret.cc, jni.cc, posix-threads.cc, prims.cc, resolve.cc, gnu/gcj/runtime/natFirstThread.cc, gnu/gcj/xlib/natDrawable.cc, gnu/gcj/xlib/natFont.cc, gnu/gcj/xlib/natWMSizeHints.cc, gnu/gcj/xlib/natWindowAttributes.cc, gnu/gcj/xlib/natXImage.cc, java/io/natFile.cc, java/io/natFileDescriptorEcos.cc, java/io/natFileDescriptorPosix.cc, java/io/natFileDescriptorWin32.cc, java/io/natFileWin32.cc, java/lang/natClass.cc, java/lang/natClassLoader.cc, java/lang/natDouble.cc, java/lang/natObject.cc, java/lang/natPosixProcess.cc, java/lang/natRuntime.cc, java/lang/natString.cc, java/lang/natSystem.cc, java/lang/natThread.cc, java/lang/reflect/natArray.cc, java/lang/reflect/natConstructor.cc, java/lang/reflect/natField.cc, java/lang/reflect/natMethod.cc, java/util/zip/natDeflater.cc, java/util/zip/natInflater.cc: Use throw, not JvThrow or _Jv_Throw. From-SVN: r40838
76 lines
1.9 KiB
C++
76 lines
1.9 KiB
C++
/* 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 <X11/Xlib.h>
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <gcj/cni.h>
|
|
#include <gnu/gcj/RawData.h>
|
|
#include <java/lang/OutOfMemoryError.h>
|
|
|
|
#include <gnu/gcj/xlib/Window.h>
|
|
#include <gnu/gcj/xlib/Display.h>
|
|
#include <gnu/gcj/xlib/WMSizeHints.h>
|
|
|
|
void gnu::gcj::xlib::WMSizeHints::init(WMSizeHints* copyFrom)
|
|
{
|
|
XSizeHints* hints = XAllocSizeHints();
|
|
if (hints == 0)
|
|
{
|
|
jstring errorMessage = JvNewStringLatin1("XAllocSizeHints failed");
|
|
throw new java::lang::OutOfMemoryError(errorMessage);
|
|
}
|
|
|
|
if (copyFrom != 0)
|
|
{
|
|
XSizeHints* from = (XSizeHints*) copyFrom->structure;
|
|
(*hints) = (*from);
|
|
}
|
|
else
|
|
{
|
|
// Is this necessary?
|
|
hints->flags = 0;
|
|
}
|
|
structure = reinterpret_cast<gnu::gcj::RawData*>(hints);
|
|
}
|
|
|
|
void gnu::gcj::xlib::WMSizeHints::finalize()
|
|
{
|
|
delete structure;
|
|
}
|
|
|
|
void gnu::gcj::xlib::WMSizeHints::applyNormalHints(gnu::gcj::xlib::Window* window)
|
|
{
|
|
Display* display = window->display;
|
|
::Display* dpy = (::Display*) display->display;
|
|
::Window win = window->getXID();
|
|
XSizeHints* hints = (XSizeHints*) structure;
|
|
|
|
XSetWMNormalHints(dpy, win, hints);
|
|
/* FIXME, alternative?
|
|
// X11 source reports XSetWMNormalHints() as an old routine. (?)
|
|
XSetWMSizeHints(dpy, win, hints, display->getAtom("WM_NORMAL_HINTS"));
|
|
*/
|
|
}
|
|
|
|
void gnu::gcj::xlib::WMSizeHints::setMinSize(jint width, jint height)
|
|
{
|
|
XSizeHints* hints = (XSizeHints*) structure;
|
|
hints->min_width = width;
|
|
hints->min_height = height;
|
|
hints->flags = hints->flags | PMinSize;
|
|
}
|
|
|
|
void gnu::gcj::xlib::WMSizeHints::setMaxSize(jint width, jint height)
|
|
{
|
|
XSizeHints* hints = (XSizeHints*) structure;
|
|
hints->max_width = width;
|
|
hints->max_height = height;
|
|
hints->flags = hints->flags | PMaxSize;
|
|
}
|