2002-06-12 15:01:32 +00:00
|
|
|
/**
|
|
|
|
* \file XWorkArea.C
|
|
|
|
* Copyright 1995-2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2002-06-12 15:01:32 +00:00
|
|
|
* \author unknown
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
2001-12-10 20:06:59 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2002-05-29 16:21:03 +00:00
|
|
|
#include "XWorkArea.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
#include "debug.h"
|
2002-06-12 15:01:32 +00:00
|
|
|
#include "LyXView.h"
|
2002-06-18 15:44:30 +00:00
|
|
|
#include "XLyXKeySym.h"
|
2002-06-21 04:40:40 +00:00
|
|
|
#include "ColorHandler.h"
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2002-06-02 18:58:19 +00:00
|
|
|
#if FL_VERSION < 1 && (FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5))
|
2002-06-12 15:01:32 +00:00
|
|
|
#include "lyxlookup.h"
|
2000-08-30 03:40:51 +00:00
|
|
|
#endif
|
2000-02-10 17:53:36 +00:00
|
|
|
|
2001-12-10 20:06:59 +00:00
|
|
|
#include "support/filetools.h" // LibFileSearch
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "support/LAssert.h"
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
#include <cctype>
|
|
|
|
|
2002-01-13 17:28:42 +00:00
|
|
|
// xforms doesn't define this (but it should be in <forms.h>).
|
|
|
|
extern "C"
|
|
|
|
FL_APPEVENT_CB fl_set_preemptive_callback(Window, FL_APPEVENT_CB, void *);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
2001-12-18 03:30:35 +00:00
|
|
|
using std::abs;
|
2002-02-16 15:59:55 +00:00
|
|
|
using std::hex;
|
2002-07-25 18:15:33 +00:00
|
|
|
using std::dec;
|
2000-03-28 02:18:55 +00:00
|
|
|
|
2001-03-17 02:06:21 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
inline
|
2000-02-10 17:53:36 +00:00
|
|
|
void waitForX()
|
|
|
|
{
|
|
|
|
XSync(fl_get_display(), 0);
|
|
|
|
}
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
|
|
|
|
void setXtermCursor(Window win)
|
|
|
|
{
|
|
|
|
static Cursor cursor;
|
|
|
|
static bool cursor_undefined = true;
|
|
|
|
if (cursor_undefined) {
|
|
|
|
cursor = XCreateFontCursor(fl_get_display(), XC_xterm);
|
|
|
|
XFlush(fl_get_display());
|
|
|
|
cursor_undefined = false;
|
|
|
|
}
|
|
|
|
XDefineCursor(fl_get_display(), win, cursor);
|
|
|
|
XFlush(fl_get_display());
|
|
|
|
}
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
|
2002-05-26 17:33:14 +00:00
|
|
|
mouse_button::state x_button_state(unsigned int button)
|
|
|
|
{
|
|
|
|
mouse_button::state b = mouse_button::none;
|
|
|
|
switch (button) {
|
|
|
|
case Button1:
|
|
|
|
b = mouse_button::button1;
|
|
|
|
break;
|
|
|
|
case Button2:
|
|
|
|
b = mouse_button::button2;
|
|
|
|
break;
|
|
|
|
case Button3:
|
|
|
|
b = mouse_button::button3;
|
|
|
|
break;
|
|
|
|
case Button4:
|
|
|
|
b = mouse_button::button4;
|
|
|
|
break;
|
|
|
|
case Button5:
|
|
|
|
b = mouse_button::button5;
|
|
|
|
break;
|
|
|
|
default: // FIXME
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return b;
|
|
|
|
}
|
2002-05-29 16:21:03 +00:00
|
|
|
|
|
|
|
|
2002-05-26 17:33:14 +00:00
|
|
|
mouse_button::state x_motion_state(unsigned int state)
|
|
|
|
{
|
|
|
|
mouse_button::state b = mouse_button::none;
|
|
|
|
if (state & Button1MotionMask)
|
|
|
|
b |= mouse_button::button1;
|
|
|
|
if (state & Button2MotionMask)
|
|
|
|
b |= mouse_button::button2;
|
|
|
|
if (state & Button3MotionMask)
|
|
|
|
b |= mouse_button::button3;
|
|
|
|
if (state & Button4MotionMask)
|
|
|
|
b |= mouse_button::button4;
|
|
|
|
if (state & Button5MotionMask)
|
|
|
|
b |= mouse_button::button5;
|
|
|
|
return b;
|
|
|
|
}
|
2002-05-29 16:21:03 +00:00
|
|
|
|
2002-05-26 17:33:14 +00:00
|
|
|
|
|
|
|
key_modifier::state x_key_state(unsigned int state)
|
|
|
|
{
|
2002-05-29 16:21:03 +00:00
|
|
|
key_modifier::state k = key_modifier::none;
|
|
|
|
if (state & ControlMask)
|
2002-05-26 17:33:14 +00:00
|
|
|
k |= key_modifier::ctrl;
|
2002-05-29 16:21:03 +00:00
|
|
|
if (state & ShiftMask)
|
2002-05-26 17:33:14 +00:00
|
|
|
k |= key_modifier::shift;
|
2002-05-29 16:21:03 +00:00
|
|
|
if (state & Mod1Mask)
|
2002-05-26 17:33:14 +00:00
|
|
|
k |= key_modifier::alt;
|
2002-05-29 16:21:03 +00:00
|
|
|
return k;
|
2002-05-26 17:33:14 +00:00
|
|
|
}
|
2002-05-29 16:21:03 +00:00
|
|
|
|
|
|
|
|
2001-03-17 02:06:21 +00:00
|
|
|
} // anon namespace
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
2000-02-11 13:52:44 +00:00
|
|
|
extern "C" {
|
2002-06-18 15:44:30 +00:00
|
|
|
// Just a bunch of C wrappers around static members of XWorkArea
|
2001-09-09 22:02:19 +00:00
|
|
|
static
|
2002-06-18 15:44:30 +00:00
|
|
|
void C_XWorkArea_scroll_cb(FL_OBJECT * ob, long)
|
2002-03-21 17:27:08 +00:00
|
|
|
{
|
2002-06-18 15:44:30 +00:00
|
|
|
XWorkArea * area = static_cast<XWorkArea*>(ob->u_vdata);
|
2002-06-12 15:01:32 +00:00
|
|
|
area->scroll_cb();
|
2002-03-21 17:27:08 +00:00
|
|
|
}
|
|
|
|
|
2000-02-11 13:52:44 +00:00
|
|
|
|
2001-09-09 22:02:19 +00:00
|
|
|
static
|
2002-06-18 15:44:30 +00:00
|
|
|
int C_XWorkArea_work_area_handler(FL_OBJECT * ob, int event,
|
2002-03-21 17:27:08 +00:00
|
|
|
FL_Coord, FL_Coord,
|
2001-09-09 22:02:19 +00:00
|
|
|
int key, void * xev)
|
2002-03-21 17:27:08 +00:00
|
|
|
{
|
2002-06-18 15:44:30 +00:00
|
|
|
return XWorkArea::work_area_handler(ob, event,
|
2000-02-11 13:52:44 +00:00
|
|
|
0, 0, key, xev);
|
2002-03-21 17:27:08 +00:00
|
|
|
}
|
2002-01-13 17:28:42 +00:00
|
|
|
|
|
|
|
static
|
2002-06-18 15:44:30 +00:00
|
|
|
int C_XWorkAreaEventCB(FL_FORM * form, void * xev) {
|
|
|
|
XWorkArea * wa = static_cast<XWorkArea*>(form->u_vdata);
|
2002-03-21 21:51:34 +00:00
|
|
|
return wa->event_cb(static_cast<XEvent*>(xev));
|
2002-01-13 17:28:42 +00:00
|
|
|
}
|
2000-02-11 13:52:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
XWorkArea::XWorkArea(int x, int y, int w, int h)
|
2002-06-21 04:40:40 +00:00
|
|
|
: workareapixmap(0), painter_(*this)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
|
|
|
fl_freeze_all_forms();
|
|
|
|
|
|
|
|
FL_OBJECT * obj;
|
|
|
|
|
2001-11-09 13:44:48 +00:00
|
|
|
if (lyxerr.debugging(Debug::WORKAREA))
|
2000-03-06 02:42:40 +00:00
|
|
|
lyxerr << "\tbackground box: +"
|
2002-06-12 02:54:19 +00:00
|
|
|
<< x << '+' << y << ' '
|
|
|
|
<< w - 15 << 'x' << h << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
backgroundbox = obj = fl_add_box(FL_BORDER_BOX,
|
2002-06-12 02:54:19 +00:00
|
|
|
x, y,
|
|
|
|
w - 15,
|
2002-06-12 15:01:32 +00:00
|
|
|
h, "");
|
2000-02-10 17:53:36 +00:00
|
|
|
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
|
|
|
fl_set_object_gravity(obj, NorthWestGravity, SouthEastGravity);
|
|
|
|
|
2000-04-26 13:57:28 +00:00
|
|
|
scrollbar = obj = fl_add_scrollbar(FL_VERT_SCROLLBAR,
|
2002-06-12 02:54:19 +00:00
|
|
|
x + w - 15,
|
|
|
|
y, 17, h, "");
|
2000-04-26 13:57:28 +00:00
|
|
|
fl_set_object_boxtype(obj, FL_UP_BOX);
|
|
|
|
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
|
|
|
fl_set_object_gravity(obj, NorthEastGravity, SouthEastGravity);
|
|
|
|
obj->u_vdata = this;
|
2002-06-18 15:44:30 +00:00
|
|
|
fl_set_object_callback(obj, C_XWorkArea_scroll_cb, 0);
|
2002-06-12 15:01:32 +00:00
|
|
|
fl_set_scrollbar_bounds(scrollbar, 0.0, 0.0);
|
|
|
|
fl_set_scrollbar_value(scrollbar, 0.0);
|
|
|
|
fl_set_scrollbar_size(scrollbar, scrollbar->h);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-06-12 02:54:19 +00:00
|
|
|
int const bw = int(abs(fl_get_border_width()));
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
// Create the workarea pixmap
|
2002-07-11 15:09:45 +00:00
|
|
|
// FIXME remove redraw(w - 15 - 2 * bw, h - 2 * bw);
|
2000-02-17 19:59:08 +00:00
|
|
|
|
2001-11-09 13:44:48 +00:00
|
|
|
if (lyxerr.debugging(Debug::WORKAREA))
|
2000-03-06 02:42:40 +00:00
|
|
|
lyxerr << "\tfree object: +"
|
2002-06-12 02:54:19 +00:00
|
|
|
<< x + bw << '+' << y + bw << ' '
|
|
|
|
<< w - 15 - 2 * bw << 'x'
|
|
|
|
<< h - 2 * bw << endl;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-21 04:40:40 +00:00
|
|
|
// We add this object as late as possible to avoid problems
|
|
|
|
// with drawing.
|
|
|
|
// FIXME: like ??
|
2000-10-30 21:53:29 +00:00
|
|
|
work_area = obj = fl_add_free(FL_ALL_FREE,
|
2002-06-12 02:54:19 +00:00
|
|
|
x + bw, y + bw,
|
2002-06-21 04:40:40 +00:00
|
|
|
w - 15 - 2 * bw,
|
2002-06-12 02:54:19 +00:00
|
|
|
h - 2 * bw, "",
|
2002-06-18 15:44:30 +00:00
|
|
|
C_XWorkArea_work_area_handler);
|
2000-08-14 15:31:16 +00:00
|
|
|
obj->wantkey = FL_KEY_ALL;
|
2002-06-21 04:40:40 +00:00
|
|
|
obj->u_vdata = this;
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
fl_set_object_boxtype(obj,FL_DOWN_BOX);
|
|
|
|
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
|
|
|
fl_set_object_gravity(obj, NorthWestGravity, SouthEastGravity);
|
|
|
|
|
2002-01-13 17:28:42 +00:00
|
|
|
/// X selection hook - xforms gets it wrong
|
|
|
|
fl_current_form->u_vdata = this;
|
2002-06-18 15:44:30 +00:00
|
|
|
fl_register_raw_callback(fl_current_form, FL_ALL_EVENT, C_XWorkAreaEventCB);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
fl_unfreeze_all_forms();
|
2002-07-11 15:09:45 +00:00
|
|
|
|
|
|
|
XGCValues val;
|
|
|
|
|
|
|
|
val.function = GXcopy;
|
|
|
|
copy_gc = XCreateGC(fl_get_display(), RootWindow(fl_get_display(), 0),
|
|
|
|
GCFunction, &val);
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
XWorkArea::~XWorkArea()
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
2002-07-11 15:09:45 +00:00
|
|
|
XFreeGC(fl_get_display(), copy_gc);
|
2000-02-10 17:53:36 +00:00
|
|
|
if (workareapixmap)
|
2000-10-11 21:06:43 +00:00
|
|
|
XFreePixmap(fl_get_display(), workareapixmap);
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-02 16:00:54 +00:00
|
|
|
namespace {
|
|
|
|
void destroy_object(FL_OBJECT * obj)
|
|
|
|
{
|
|
|
|
if (!obj)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (obj->visible) {
|
|
|
|
fl_hide_object(obj);
|
|
|
|
}
|
|
|
|
fl_delete_object(obj);
|
|
|
|
fl_free_object(obj);
|
|
|
|
}
|
|
|
|
} // namespace anon
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-10-02 16:00:54 +00:00
|
|
|
|
2002-07-11 15:09:45 +00:00
|
|
|
void XWorkArea::redraw(int width, int height)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
|
|
|
static int cur_width = -1;
|
|
|
|
static int cur_height = -1;
|
|
|
|
|
2002-07-11 15:09:45 +00:00
|
|
|
if (cur_width == width && cur_height == height && workareapixmap) {
|
|
|
|
XCopyArea(fl_get_display(),
|
|
|
|
getPixmap(), getWin(), copy_gc,
|
|
|
|
0, 0, width, height, xpos(), ypos());
|
2000-02-10 17:53:36 +00:00
|
|
|
return;
|
2002-07-11 15:09:45 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
cur_width = width;
|
|
|
|
cur_height = height;
|
|
|
|
|
2002-07-11 15:09:45 +00:00
|
|
|
if (lyxerr.debugging(Debug::WORKAREA)) {
|
|
|
|
lyxerr << "(Re)creating pixmap ("
|
2000-03-06 02:42:40 +00:00
|
|
|
<< width << 'x' << height << ")" << endl;
|
2002-07-11 15:09:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (workareapixmap) {
|
|
|
|
XFreePixmap(fl_get_display(), workareapixmap);
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
workareapixmap = XCreatePixmap(fl_get_display(),
|
|
|
|
RootWindow(fl_get_display(), 0),
|
2000-02-10 17:53:36 +00:00
|
|
|
width,
|
2002-03-21 17:27:08 +00:00
|
|
|
height,
|
2000-02-10 17:53:36 +00:00
|
|
|
fl_get_visual_depth());
|
2002-07-28 22:50:13 +00:00
|
|
|
|
2002-07-11 15:09:45 +00:00
|
|
|
workAreaResize();
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
void XWorkArea::setScrollbarParams(int height, int pos, int line_height)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
2002-06-12 15:01:32 +00:00
|
|
|
// we need to cache this for scroll_cb
|
|
|
|
doc_height_ = height;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
if (height == 0) {
|
|
|
|
fl_set_scrollbar_value(scrollbar, 0.0);
|
|
|
|
fl_set_scrollbar_size(scrollbar, scrollbar->h);
|
|
|
|
return;
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
long const work_height = workHeight();
|
|
|
|
|
|
|
|
lyxerr[Debug::GUI] << "scroll: height now " << height << endl;
|
|
|
|
lyxerr[Debug::GUI] << "scroll: work_height " << work_height << endl;
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
/* If the text is smaller than the working area, the scrollbar
|
|
|
|
* maximum must be the working area height. No scrolling will
|
|
|
|
* be possible */
|
|
|
|
if (height <= work_height) {
|
|
|
|
lyxerr[Debug::GUI] << "scroll: doc smaller than workarea !" << endl;
|
|
|
|
fl_set_scrollbar_bounds(scrollbar, 0.0, 0.0);
|
|
|
|
fl_set_scrollbar_value(scrollbar, pos);
|
|
|
|
fl_set_scrollbar_size(scrollbar, scrollbar->h);
|
|
|
|
return;
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
fl_set_scrollbar_bounds(scrollbar, 0.0, height - work_height);
|
|
|
|
fl_set_scrollbar_increment(scrollbar, work_area->h - line_height, line_height);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
fl_set_scrollbar_value(scrollbar, pos);
|
|
|
|
|
|
|
|
double const slider_size =
|
|
|
|
(height == 0) ? 1.0 : 1.0 / double(height);
|
|
|
|
|
|
|
|
fl_set_scrollbar_size(scrollbar, scrollbar->h * slider_size);
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
// callback for scrollbar slider
|
2002-06-18 15:44:30 +00:00
|
|
|
void XWorkArea::scroll_cb()
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
2002-06-12 15:01:32 +00:00
|
|
|
double const val = fl_get_scrollbar_value(scrollbar);
|
|
|
|
lyxerr[Debug::GUI] << "scroll: val: " << val << endl;
|
|
|
|
lyxerr[Debug::GUI] << "scroll: height: " << scrollbar->h << endl;
|
|
|
|
lyxerr[Debug::GUI] << "scroll: docheight: " << doc_height_ << endl;
|
|
|
|
scrollDocView(int(val));
|
2000-02-10 17:53:36 +00:00
|
|
|
waitForX();
|
|
|
|
}
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
int XWorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
2002-08-15 16:02:22 +00:00
|
|
|
FL_Coord, FL_Coord,
|
2000-08-14 15:31:16 +00:00
|
|
|
int key, void * xev)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
|
|
|
static int x_old = -1;
|
|
|
|
static int y_old = -1;
|
2002-07-30 12:29:25 +00:00
|
|
|
static double scrollbar_value_old = -1.0;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
XEvent * ev = static_cast<XEvent*>(xev);
|
2002-06-18 15:44:30 +00:00
|
|
|
XWorkArea * area = static_cast<XWorkArea*>(ob->u_vdata);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
if (!area) return 1;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
switch (event) {
|
2000-02-10 17:53:36 +00:00
|
|
|
case FL_DRAW:
|
|
|
|
if (!area->work_area ||
|
|
|
|
!area->work_area->form->visible)
|
|
|
|
return 1;
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: DRAW" << endl;
|
2002-07-11 15:09:45 +00:00
|
|
|
area->redraw(area->workWidth(), area->workHeight());
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_PUSH:
|
2000-12-06 22:24:17 +00:00
|
|
|
if (!ev || ev->xbutton.button == 0) break;
|
2000-02-10 17:53:36 +00:00
|
|
|
// Should really have used xbutton.state
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: PUSH" << endl;
|
2000-08-14 15:31:16 +00:00
|
|
|
area->workAreaButtonPress(ev->xbutton.x - ob->x,
|
|
|
|
ev->xbutton.y - ob->y,
|
2002-05-26 17:33:14 +00:00
|
|
|
x_button_state(ev->xbutton.button));
|
2002-03-21 17:27:08 +00:00
|
|
|
break;
|
2000-02-10 17:53:36 +00:00
|
|
|
case FL_RELEASE:
|
2000-12-06 22:24:17 +00:00
|
|
|
if (!ev || ev->xbutton.button == 0) break;
|
2000-02-10 17:53:36 +00:00
|
|
|
// Should really have used xbutton.state
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: RELEASE" << endl;
|
2000-08-14 15:31:16 +00:00
|
|
|
area->workAreaButtonRelease(ev->xbutton.x - ob->x,
|
|
|
|
ev->xbutton.y - ob->y,
|
2002-05-26 17:33:14 +00:00
|
|
|
x_button_state(ev->xbutton.button));
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
2002-06-02 18:58:19 +00:00
|
|
|
#if FL_VERSION < 1 && FL_REVISION < 89
|
2000-10-31 13:53:26 +00:00
|
|
|
case FL_MOUSE:
|
|
|
|
#else
|
2000-10-30 21:53:29 +00:00
|
|
|
case FL_DRAG:
|
2000-10-31 13:53:26 +00:00
|
|
|
#endif
|
2000-02-10 17:53:36 +00:00
|
|
|
if (!ev || ! area->scrollbar) break;
|
|
|
|
if (ev->xmotion.x != x_old ||
|
|
|
|
ev->xmotion.y != y_old ||
|
2000-04-26 13:57:28 +00:00
|
|
|
fl_get_scrollbar_value(area->scrollbar) != scrollbar_value_old
|
|
|
|
) {
|
2002-07-25 11:39:38 +00:00
|
|
|
x_old = ev->xmotion.x;
|
|
|
|
y_old = ev->xmotion.y;
|
|
|
|
scrollbar_value_old = fl_get_scrollbar_value(area->scrollbar);
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: MOUSE" << endl;
|
2000-08-14 15:31:16 +00:00
|
|
|
area->workAreaMotionNotify(ev->xmotion.x - ob->x,
|
|
|
|
ev->xmotion.y - ob->y,
|
2002-05-26 17:33:14 +00:00
|
|
|
x_motion_state(ev->xbutton.state));
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
break;
|
2002-06-02 18:58:19 +00:00
|
|
|
#if FL_VERSION < 1 && FL_REVISION < 89
|
2000-10-31 13:53:26 +00:00
|
|
|
case FL_KEYBOARD:
|
|
|
|
#else
|
2000-10-30 21:53:29 +00:00
|
|
|
case FL_KEYPRESS:
|
2000-10-31 13:53:26 +00:00
|
|
|
#endif
|
2000-08-14 15:31:16 +00:00
|
|
|
{
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: KEYBOARD" << endl;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-08-14 15:31:16 +00:00
|
|
|
KeySym keysym = 0;
|
2000-08-15 09:41:24 +00:00
|
|
|
char dummy[1];
|
2000-08-14 15:31:16 +00:00
|
|
|
XKeyEvent * xke = reinterpret_cast<XKeyEvent *>(ev);
|
2002-06-02 18:58:19 +00:00
|
|
|
#if FL_VERSION < 1 && (FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5))
|
2000-12-05 17:12:47 +00:00
|
|
|
// XForms < 0.89.5 does not have compose support
|
2000-08-15 09:41:24 +00:00
|
|
|
// so we are using our own compose support
|
|
|
|
LyXLookupString(ev, dummy, 1, &keysym);
|
|
|
|
#else
|
|
|
|
XLookupString(xke, dummy, 1, &keysym, 0);
|
2002-05-01 22:17:09 +00:00
|
|
|
// int num_keys = XLookupString(xke, dummy, 10, &keysym, &xcs);
|
|
|
|
// lyxerr << "We have " << num_keys << " keys in the returned buffer" << endl;
|
|
|
|
// lyxerr << "Our dummy string is " << dummy << endl;
|
2000-08-15 09:41:24 +00:00
|
|
|
#endif
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2000-08-14 15:31:16 +00:00
|
|
|
if (lyxerr.debugging(Debug::KEY)) {
|
|
|
|
char const * tmp = XKeysymToString(key);
|
|
|
|
char const * tmp2 = XKeysymToString(keysym);
|
2000-12-17 06:09:35 +00:00
|
|
|
string const stm = (tmp ? tmp : "");
|
|
|
|
string const stm2 = (tmp2 ? tmp2 : "");
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
lyxerr[Debug::KEY] << "XWorkArea: Key is `" << stm << "' ["
|
2000-08-14 15:31:16 +00:00
|
|
|
<< key << "]" << endl;
|
2002-06-18 15:44:30 +00:00
|
|
|
lyxerr[Debug::KEY] << "XWorkArea: Keysym is `" << stm2 << "' ["
|
2000-08-14 15:31:16 +00:00
|
|
|
<< keysym << "]" << endl;
|
|
|
|
}
|
|
|
|
|
2002-06-02 18:58:19 +00:00
|
|
|
#if FL_VERSION < 1 && (FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5))
|
2000-08-15 09:41:24 +00:00
|
|
|
if (keysym == NoSymbol) {
|
|
|
|
lyxerr[Debug::KEY]
|
|
|
|
<< "Empty kdb action (probably composing)"
|
|
|
|
<< endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
KeySym ret_key = keysym;
|
|
|
|
#else
|
2000-09-14 17:53:12 +00:00
|
|
|
// Note that we need this handling because of a bug
|
|
|
|
// in XForms 0.89, if this bug is resolved in the way I hope
|
|
|
|
// we can just use the keysym directly with out looking
|
|
|
|
// at key at all. (Lgb)
|
|
|
|
KeySym ret_key = 0;
|
|
|
|
if (!key) {
|
|
|
|
// We migth have to add more keysyms here also,
|
|
|
|
// we will do that as the issues arise. (Lgb)
|
2000-12-19 00:22:04 +00:00
|
|
|
if (keysym == XK_space) {
|
2000-09-14 17:53:12 +00:00
|
|
|
ret_key = keysym;
|
2000-12-19 00:22:04 +00:00
|
|
|
lyxerr[Debug::KEY] << "Using keysym [A]"
|
|
|
|
<< endl;
|
|
|
|
} else
|
2000-09-14 17:53:12 +00:00
|
|
|
break;
|
|
|
|
} else {
|
2000-11-02 04:48:34 +00:00
|
|
|
// It seems that this was a bit optimistic...
|
|
|
|
// With this hacking things seems to be better (Lgb)
|
2000-12-19 00:22:04 +00:00
|
|
|
//if (!iscntrl(key)) {
|
|
|
|
// ret_key = key;
|
|
|
|
// lyxerr[Debug::KEY]
|
|
|
|
// << "Using key [B]\n"
|
|
|
|
// << "Uchar["
|
|
|
|
// << static_cast<unsigned char>(key)
|
|
|
|
// << endl;
|
|
|
|
//} else {
|
2000-11-02 04:48:34 +00:00
|
|
|
ret_key = (keysym ? keysym : key);
|
2000-12-19 00:22:04 +00:00
|
|
|
lyxerr[Debug::KEY] << "Using keysym [B]"
|
|
|
|
<< endl;
|
|
|
|
//}
|
2000-09-14 17:53:12 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-08-06 19:12:46 +00:00
|
|
|
#endif
|
2000-12-17 06:09:35 +00:00
|
|
|
unsigned int const ret_state = xke->state;
|
2000-09-14 17:53:12 +00:00
|
|
|
|
|
|
|
// If you have a better way to handle "wild-output" of
|
|
|
|
// characters after the key has been released than the one
|
|
|
|
// below, please contact me. (Lgb)
|
2001-06-04 23:57:32 +00:00
|
|
|
static Time last_time_pressed;
|
|
|
|
static unsigned int last_key_pressed;
|
|
|
|
static unsigned int last_state_pressed;
|
2000-09-14 17:53:12 +00:00
|
|
|
lyxerr[Debug::KEY] << "Workarea Diff: "
|
|
|
|
<< xke->time - last_time_pressed
|
|
|
|
<< endl;
|
2001-01-17 16:23:43 +00:00
|
|
|
if (xke->time - last_time_pressed < 25 // should perhaps be tunable
|
2000-12-17 06:09:35 +00:00
|
|
|
&& ret_state == last_state_pressed
|
2000-08-14 15:31:16 +00:00
|
|
|
&& xke->keycode == last_key_pressed) {
|
|
|
|
lyxerr[Debug::KEY]
|
|
|
|
<< "Workarea: Purging X events." << endl;
|
2000-08-15 09:41:24 +00:00
|
|
|
//lyxerr << "Workarea Events: "
|
|
|
|
// << XEventsQueued(fl_get_display(), QueuedAlready)
|
|
|
|
// << endl;
|
|
|
|
if (XEventsQueued(fl_get_display(), QueuedAlready) > 0)
|
|
|
|
XSync(fl_get_display(), 1);
|
2000-08-14 15:31:16 +00:00
|
|
|
// This purge make f.ex. scrolling stop immidiatly when
|
|
|
|
// releasing the PageDown button. The question is if
|
|
|
|
// this purging of XEvents can cause any harm...
|
|
|
|
// after some testing I can see no problems, but
|
|
|
|
// I'd like other reports too.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
last_time_pressed = xke->time;
|
|
|
|
last_key_pressed = xke->keycode;
|
2000-12-17 06:09:35 +00:00
|
|
|
last_state_pressed = ret_state;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
XLyXKeySym * xlk = new XLyXKeySym;
|
|
|
|
xlk->initFromKeySym(ret_key);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
area->workAreaKeyPress(LyXKeySymPtr(xlk),
|
|
|
|
x_key_state(ret_state));
|
2000-08-14 15:31:16 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-10-31 13:53:26 +00:00
|
|
|
|
2002-06-02 18:58:19 +00:00
|
|
|
#if FL_VERSION > 0 || FL_REVISION >= 89
|
2000-10-30 21:53:29 +00:00
|
|
|
case FL_KEYRELEASE:
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: KEYRELEASE" << endl;
|
2000-10-30 21:53:29 +00:00
|
|
|
break;
|
2000-10-31 13:53:26 +00:00
|
|
|
#endif
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
case FL_ENTER:
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: ENTER" << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_LEAVE:
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: LEAVE" << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_DBLCLICK:
|
|
|
|
if (!ev) break;
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: DBLCLICK" << endl;
|
2000-08-14 15:31:16 +00:00
|
|
|
area->workAreaDoubleClick(ev->xbutton.x - ob->x,
|
|
|
|
ev->xbutton.y - ob->y,
|
2002-05-26 17:33:14 +00:00
|
|
|
x_button_state(ev->xbutton.button));
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_TRPLCLICK:
|
|
|
|
if (!ev) break;
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: TRPLCLICK" << endl;
|
2000-08-14 15:31:16 +00:00
|
|
|
area->workAreaTripleClick(ev->xbutton.x - ob->x,
|
|
|
|
ev->xbutton.y - ob->y,
|
2002-05-26 17:33:14 +00:00
|
|
|
x_button_state(ev->xbutton.button));
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_OTHER:
|
|
|
|
if (!ev) break;
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: OTHER" << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2000-05-20 01:38:25 +00:00
|
|
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
namespace {
|
2000-05-20 01:38:25 +00:00
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
string clipboard_selection;
|
|
|
|
bool clipboard_read = false;
|
|
|
|
|
2001-09-09 22:02:19 +00:00
|
|
|
extern "C" {
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-09-09 22:02:19 +00:00
|
|
|
static
|
|
|
|
int request_clipboard_cb(FL_OBJECT * /*ob*/, long /*type*/,
|
2002-03-21 17:27:08 +00:00
|
|
|
void const * data, long size)
|
2001-09-09 22:02:19 +00:00
|
|
|
{
|
|
|
|
clipboard_selection.erase();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-09-09 22:02:19 +00:00
|
|
|
if (size > 0)
|
|
|
|
clipboard_selection.reserve(size);
|
|
|
|
for (int i = 0; i < size; ++i)
|
|
|
|
clipboard_selection +=
|
|
|
|
static_cast<char const *>(data)[i];
|
|
|
|
clipboard_read = true;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-05-20 01:38:25 +00:00
|
|
|
}
|
2000-09-14 17:53:12 +00:00
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
} // namespace anon
|
2000-05-20 01:38:25 +00:00
|
|
|
|
2002-03-18 22:38:25 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
int XWorkArea::event_cb(XEvent * xev)
|
2002-01-13 17:28:42 +00:00
|
|
|
{
|
2002-03-18 22:38:25 +00:00
|
|
|
int ret = 0;
|
2002-02-07 16:43:54 +00:00
|
|
|
switch (xev->type) {
|
|
|
|
case SelectionRequest:
|
|
|
|
lyxerr[Debug::GUI] << "X requested selection." << endl;
|
2002-05-29 16:21:03 +00:00
|
|
|
selectionRequested();
|
2002-02-07 16:43:54 +00:00
|
|
|
break;
|
|
|
|
case SelectionClear:
|
|
|
|
lyxerr[Debug::GUI] << "Lost selection." << endl;
|
2002-05-29 16:21:03 +00:00
|
|
|
selectionLost();
|
2002-03-21 17:27:08 +00:00
|
|
|
break;
|
2002-02-07 16:43:54 +00:00
|
|
|
}
|
2002-03-18 22:38:25 +00:00
|
|
|
return ret;
|
2002-01-13 17:28:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
void XWorkArea::haveSelection(bool yes) const
|
2002-01-13 17:28:42 +00:00
|
|
|
{
|
|
|
|
if (!yes) {
|
|
|
|
XSetSelectionOwner(fl_get_display(), XA_PRIMARY, None, CurrentTime);
|
|
|
|
return;
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-01-13 17:28:42 +00:00
|
|
|
XSetSelectionOwner(fl_get_display(), XA_PRIMARY, FL_ObjWin(work_area), CurrentTime);
|
|
|
|
}
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
string const XWorkArea::getClipboard() const
|
2000-05-20 01:38:25 +00:00
|
|
|
{
|
|
|
|
clipboard_read = false;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-05-20 01:38:25 +00:00
|
|
|
if (fl_request_clipboard(work_area, 0, request_clipboard_cb) == -1)
|
|
|
|
return string();
|
|
|
|
|
|
|
|
XEvent ev;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-05-20 01:38:25 +00:00
|
|
|
while (!clipboard_read) {
|
|
|
|
if (fl_check_forms() == FL_EVENT) {
|
|
|
|
fl_XNextEvent(&ev);
|
2002-03-21 17:27:08 +00:00
|
|
|
lyxerr << "Received unhandled X11 event" << endl;
|
2002-02-16 15:59:55 +00:00
|
|
|
lyxerr << "Type: 0x" << hex << ev.xany.type <<
|
2002-07-25 14:44:25 +00:00
|
|
|
" Target: 0x" << hex << ev.xany.window << dec << endl;
|
2000-05-20 01:38:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return clipboard_selection;
|
|
|
|
}
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
void XWorkArea::putClipboard(string const & s) const
|
2000-05-20 01:38:25 +00:00
|
|
|
{
|
|
|
|
static string hold;
|
|
|
|
hold = s;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-07-12 11:11:10 +00:00
|
|
|
fl_stuff_clipboard(work_area, 0, hold.data(), hold.size(), 0);
|
2000-05-20 01:38:25 +00:00
|
|
|
}
|