1998-10-19 20:46:58 +00:00
|
|
|
//
|
2005-02-24 21:55:12 +00:00
|
|
|
// "$Id$"
|
1998-10-19 20:46:58 +00:00
|
|
|
//
|
|
|
|
|
// Menu window code for the Fast Light Tool Kit (FLTK).
|
|
|
|
|
//
|
2010-11-28 21:06:39 +00:00
|
|
|
// Copyright 1998-2010 by Bill Spitzak and others.
|
1998-10-19 20:46:58 +00:00
|
|
|
//
|
2011-07-19 04:49:30 +00:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
|
//
|
|
|
|
|
// http://www.fltk.org/COPYING.php
|
1998-10-19 20:46:58 +00:00
|
|
|
//
|
2005-04-16 00:13:17 +00:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
|
//
|
|
|
|
|
// http://www.fltk.org/str.php
|
1998-10-19 20:46:58 +00:00
|
|
|
//
|
1998-10-06 18:21:25 +00:00
|
|
|
|
|
|
|
|
// This is the window type used by Fl_Menu to make the pop-ups.
|
|
|
|
|
// It draws in the overlay planes if possible.
|
|
|
|
|
|
|
|
|
|
// Also here is the implementation of the mouse & keyboard grab,
|
|
|
|
|
// which are used so that clicks outside the program's windows
|
|
|
|
|
// can be used to dismiss the menus.
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
|
#include <FL/x.H>
|
|
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
|
#include <FL/Fl_Menu_Window.H>
|
|
|
|
|
|
|
|
|
|
// WIN32 note: HAVE_OVERLAY is false
|
|
|
|
|
#if HAVE_OVERLAY
|
|
|
|
|
extern XVisualInfo *fl_find_overlay_visual();
|
|
|
|
|
extern XVisualInfo *fl_overlay_visual;
|
|
|
|
|
extern Colormap fl_overlay_colormap;
|
|
|
|
|
extern unsigned long fl_transparent_pixel;
|
|
|
|
|
static GC gc; // the GC used by all X windows
|
|
|
|
|
extern uchar fl_overlay; // changes how fl_color(x) works
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
void Fl_Menu_Window::show() {
|
|
|
|
|
#if HAVE_OVERLAY
|
|
|
|
|
if (!shown() && overlay() && fl_find_overlay_visual()) {
|
|
|
|
|
XInstallColormap(fl_display, fl_overlay_colormap);
|
|
|
|
|
fl_background_pixel = int(fl_transparent_pixel);
|
|
|
|
|
Fl_X::make_xid(this, fl_overlay_visual, fl_overlay_colormap);
|
|
|
|
|
fl_background_pixel = -1;
|
|
|
|
|
} else
|
|
|
|
|
#endif
|
|
|
|
|
Fl_Single_Window::show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Fl_Menu_Window::flush() {
|
|
|
|
|
#if HAVE_OVERLAY
|
|
|
|
|
if (!fl_overlay_visual || !overlay()) {Fl_Single_Window::flush(); return;}
|
2000-11-20 19:02:20 +00:00
|
|
|
Fl_X *myi = Fl_X::i(this);
|
|
|
|
|
fl_window = myi->xid;
|
2008-09-25 18:26:33 +00:00
|
|
|
if (!gc) {
|
|
|
|
|
gc = XCreateGC(fl_display, myi->xid, 0, 0);
|
2011-01-06 10:24:58 +00:00
|
|
|
# if defined(FLTK_USE_CAIRO)
|
Cairo increment 2: Finer cairo granularity, less deps, new fltk_cairo lib
+ added new USE_CAIRO config preprocessor def.
to differentiate from HAVE_CAIRO so that we can use the cairo lib
without forcing the full fltk lib to be linked against it.
In that case, cairo autolink context functionality which needs fltk lib
instrumentation is disabled.
+ added new --enable-cairoext, which correspond to previous --enable-cairo.
now, --enable-cairo only adds HAVE_CAIRO def. and keeps fltk lib
from referencing cairo.
In both cases (--enable-cairo & --enable-cairoext), a new fltk_cairo lib is
created. This lib, similarly to local versions of png,jpeg and zlib,
is not generated if cairo is not enabled.
+ added cairo to fltk-config : now new --use-cairo flag is available
+ modified all unix like makefiles to now generate minimum cairo deps and also
new libfltk_cairo lib.
+ added new cairo subdir to permit conditional fltk_cairo lib generation.
+ vc2005 project minimum update to compile without be broken, but still needs
to create a similar fltk_cairo independent lib. For now, it works as before
with a dedicated cairo env. similar to --enable-cairoext context in unix.
+ regression tested ok with cairo disabled on win32, mac osx, mingw.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6462 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2008-10-19 01:42:35 +00:00
|
|
|
if(Fl::autolink_context()) Fl::cairo_make_current(gc); // capture gc changes automatically to update the cairo context adequately
|
2008-09-25 18:26:33 +00:00
|
|
|
# endif
|
|
|
|
|
}
|
1998-10-06 18:21:25 +00:00
|
|
|
fl_gc = gc;
|
|
|
|
|
fl_overlay = 1;
|
2000-11-20 19:02:20 +00:00
|
|
|
fl_clip_region(myi->region); myi->region = 0; current_ = this;
|
1998-10-06 18:21:25 +00:00
|
|
|
draw();
|
|
|
|
|
fl_overlay = 0;
|
|
|
|
|
#else
|
|
|
|
|
Fl_Single_Window::flush();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2008-09-15 00:27:28 +00:00
|
|
|
/** Erases the window, does nothing if HAVE_OVERLAY is not defined config.h */
|
1998-10-06 18:21:25 +00:00
|
|
|
void Fl_Menu_Window::erase() {
|
|
|
|
|
#if HAVE_OVERLAY
|
|
|
|
|
if (!gc || !shown()) return;
|
|
|
|
|
//XSetForeground(fl_display, gc, 0);
|
|
|
|
|
//XFillRectangle(fl_display, fl_xid(this), gc, 0, 0, w(), h());
|
|
|
|
|
XClearWindow(fl_display, fl_xid(this));
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Fix the colormap flashing on Maximum Impact Graphics by erasing the
|
|
|
|
|
// menu before unmapping it:
|
|
|
|
|
void Fl_Menu_Window::hide() {
|
|
|
|
|
erase();
|
|
|
|
|
Fl_Single_Window::hide();
|
|
|
|
|
}
|
|
|
|
|
|
2008-09-15 00:27:28 +00:00
|
|
|
/** Destroys the window and all of its children.*/
|
1998-10-06 18:21:25 +00:00
|
|
|
Fl_Menu_Window::~Fl_Menu_Window() {
|
|
|
|
|
hide();
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-24 04:37:22 +00:00
|
|
|
|
|
|
|
|
Fl_Menu_Window::Fl_Menu_Window(int W, int H, const char *l)
|
|
|
|
|
: Fl_Single_Window(W,H,l)
|
|
|
|
|
{
|
|
|
|
|
image(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fl_Menu_Window::Fl_Menu_Window(int X, int Y, int W, int H, const char *l)
|
|
|
|
|
: Fl_Single_Window(X,Y,W,H,l) {
|
|
|
|
|
image(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-10-19 20:46:58 +00:00
|
|
|
//
|
2005-02-24 21:55:12 +00:00
|
|
|
// End of "$Id$".
|
1998-10-19 20:46:58 +00:00
|
|
|
//
|