2000-02-10 17:53:36 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <cmath>
|
2000-11-02 04:48:34 +00:00
|
|
|
#include <cctype>
|
2000-02-10 17:53:36 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "WorkArea.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "support/lstrings.h"
|
2000-08-14 15:31:16 +00:00
|
|
|
#include "LyXView.h"
|
2000-08-30 03:40:51 +00:00
|
|
|
|
2000-12-05 17:12:47 +00:00
|
|
|
#if FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5)
|
2000-08-15 09:41:24 +00:00
|
|
|
#include "lyxlookup.h"
|
2000-08-30 03:40:51 +00:00
|
|
|
#endif
|
2000-02-10 17:53:36 +00:00
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
FL_OBJECT * figinset_canvas;
|
|
|
|
|
2000-08-14 15:31:16 +00:00
|
|
|
// needed to make the c++ compiler find the correct version of abs.
|
2000-03-16 04:29:22 +00:00
|
|
|
// This is at least true for g++.
|
2000-08-22 18:28:11 +00:00
|
|
|
//using std::abs;
|
2000-03-16 04:29:22 +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);
|
|
|
|
}
|
|
|
|
|
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" {
|
|
|
|
// Just a bunch of C wrappers around static members of WorkArea
|
|
|
|
void C_WorkArea_scroll_cb(FL_OBJECT * ob, long buf)
|
|
|
|
{
|
|
|
|
WorkArea::scroll_cb(ob, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
int C_WorkArea_work_area_handler(FL_OBJECT * ob, int event,
|
|
|
|
FL_Coord, FL_Coord,
|
|
|
|
int key, void * xev)
|
|
|
|
{
|
|
|
|
return WorkArea::work_area_handler(ob, event,
|
|
|
|
0, 0, key, xev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-14 19:22:41 +00:00
|
|
|
WorkArea::WorkArea(int xpos, int ypos, int width, int height)
|
|
|
|
: workareapixmap(0), painter_(*this)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
|
|
|
fl_freeze_all_forms();
|
|
|
|
|
|
|
|
figinset_canvas = 0;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
2000-08-14 15:31:16 +00:00
|
|
|
if (lyxerr.debugging(Debug::GUI))
|
2000-03-06 02:42:40 +00:00
|
|
|
lyxerr << "Creating work area: +"
|
|
|
|
<< xpos << '+' << ypos << ' '
|
|
|
|
<< width << 'x' << height << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
//
|
|
|
|
FL_OBJECT * obj;
|
2000-11-21 15:46:13 +00:00
|
|
|
int const bw = int(std::abs(float(fl_get_border_width())));
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
// We really want to get rid of figinset_canvas.
|
|
|
|
::figinset_canvas = figinset_canvas = obj =
|
|
|
|
fl_add_canvas(FL_NORMAL_CANVAS,
|
|
|
|
xpos + 1, ypos + 1, 1, 1, "");
|
|
|
|
fl_set_object_boxtype(obj, FL_NO_BOX);
|
|
|
|
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
|
|
|
fl_set_object_gravity(obj, NorthWestGravity, NorthWestGravity);
|
|
|
|
|
|
|
|
// a box
|
2000-08-14 15:31:16 +00:00
|
|
|
if (lyxerr.debugging(Debug::GUI))
|
2000-03-06 02:42:40 +00:00
|
|
|
lyxerr << "\tbackground box: +"
|
|
|
|
<< xpos << '+' << ypos << ' '
|
|
|
|
<< width - 15 << 'x' << height << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
backgroundbox = obj = fl_add_box(FL_BORDER_BOX,
|
|
|
|
xpos, ypos,
|
|
|
|
width - 15,
|
|
|
|
height,"");
|
|
|
|
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
|
|
|
fl_set_object_gravity(obj, NorthWestGravity, SouthEastGravity);
|
|
|
|
|
|
|
|
//
|
|
|
|
// THE SCROLLBAR
|
|
|
|
//
|
|
|
|
|
2000-04-26 13:57:28 +00:00
|
|
|
scrollbar = obj = fl_add_scrollbar(FL_VERT_SCROLLBAR,
|
|
|
|
xpos + width - 15,
|
|
|
|
ypos, 17, height, "");
|
|
|
|
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;
|
|
|
|
fl_set_object_callback(obj, C_WorkArea_scroll_cb, 0);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
/// The free object
|
|
|
|
|
|
|
|
// Create the workarea pixmap
|
|
|
|
createPixmap(width - 15 - 2 * bw, height - 2 * bw);
|
2000-02-17 19:59:08 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
// We add this object as late as possible to avoit problems
|
|
|
|
// with drawing.
|
2000-08-14 15:31:16 +00:00
|
|
|
if (lyxerr.debugging(Debug::GUI))
|
2000-03-06 02:42:40 +00:00
|
|
|
lyxerr << "\tfree object: +"
|
|
|
|
<< xpos + bw << '+' << ypos + bw << ' '
|
|
|
|
<< width - 15 - 2 * bw << 'x'
|
|
|
|
<< height - 2 * bw << endl;
|
|
|
|
|
2000-10-30 21:53:29 +00:00
|
|
|
work_area = obj = fl_add_free(FL_ALL_FREE,
|
2000-02-10 17:53:36 +00:00
|
|
|
xpos + bw, ypos + bw,
|
|
|
|
width - 15 - 2 * bw, // scrollbarwidth
|
|
|
|
height - 2 * bw, "",
|
2000-02-11 13:52:44 +00:00
|
|
|
C_WorkArea_work_area_handler);
|
2000-08-14 15:31:16 +00:00
|
|
|
obj->wantkey = FL_KEY_ALL;
|
2000-02-10 17:53:36 +00:00
|
|
|
obj->u_vdata = this; /* This is how we pass the WorkArea
|
2000-09-14 17:53:12 +00:00
|
|
|
to the work_area_handler. */
|
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);
|
|
|
|
|
|
|
|
fl_unfreeze_all_forms();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
WorkArea::~WorkArea()
|
|
|
|
{
|
|
|
|
if (workareapixmap)
|
2000-10-11 21:06:43 +00:00
|
|
|
XFreePixmap(fl_get_display(), workareapixmap);
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-07 01:14:37 +00:00
|
|
|
bool WorkArea::belowMouse() const
|
|
|
|
{
|
2000-04-08 17:02:02 +00:00
|
|
|
FL_Coord x, y;
|
|
|
|
unsigned int button;
|
|
|
|
fl_get_mouse(&x, &y, &button);
|
|
|
|
FL_Coord ulx = work_area->form->x + work_area->x;
|
|
|
|
FL_Coord uly = work_area->form->y + work_area->y;
|
|
|
|
FL_Coord w = work_area->w;
|
|
|
|
FL_Coord h = work_area->h;
|
|
|
|
if (x > ulx && y > uly && x < ulx + h && y < uly + w)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
//lyxerr << "Mouse: (" << x << ", " << y <<") button = " << button << endl;
|
|
|
|
//lyxerr << "Workarea: (" << work_area->x + work_area->form->x << ", " << work_area->y + work_area->form->y << ", " << work_area->w << ", " << work_area->h << ")" << endl;
|
|
|
|
//lyxerr << "Below mouse: " << work_area->belowmouse << endl;
|
|
|
|
//return work_area->belowmouse;
|
2000-03-07 01:14:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
void WorkArea::resize(int xpos, int ypos, int width, int height)
|
|
|
|
{
|
|
|
|
fl_freeze_all_forms();
|
|
|
|
|
2000-11-21 15:46:13 +00:00
|
|
|
int const bw = int(std::abs(float(fl_get_border_width())));
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
// a box
|
|
|
|
fl_set_object_geometry(backgroundbox, xpos, ypos, width - 15, height);
|
|
|
|
|
|
|
|
//
|
|
|
|
// THE SCROLLBAR
|
|
|
|
//
|
2000-04-26 13:57:28 +00:00
|
|
|
fl_set_object_geometry(scrollbar, xpos + width - 15,
|
|
|
|
ypos, 17, height);
|
2000-04-27 09:10:51 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
// Create the workarea pixmap
|
|
|
|
createPixmap(width - 15 - 2 * bw, height - 2 * bw);
|
|
|
|
|
|
|
|
// the free object
|
|
|
|
fl_set_object_geometry(work_area, xpos + bw, ypos + bw,
|
|
|
|
width - 15 - 2 * bw,
|
|
|
|
height - 2 * bw);
|
|
|
|
|
|
|
|
fl_unfreeze_all_forms();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WorkArea::createPixmap(int width, int height)
|
|
|
|
{
|
|
|
|
static int cur_width = -1;
|
|
|
|
static int cur_height = -1;
|
|
|
|
|
|
|
|
if (cur_width == width && cur_height == height && workareapixmap)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cur_width = width;
|
|
|
|
cur_height = height;
|
|
|
|
|
|
|
|
if (workareapixmap)
|
2000-10-11 21:06:43 +00:00
|
|
|
XFreePixmap(fl_get_display(), workareapixmap);
|
2000-03-06 02:42:40 +00:00
|
|
|
|
2000-08-14 15:31:16 +00:00
|
|
|
if (lyxerr.debugging(Debug::GUI))
|
2000-03-06 02:42:40 +00:00
|
|
|
lyxerr << "Creating pixmap ("
|
|
|
|
<< width << 'x' << height << ")" << endl;
|
2000-02-10 17:53:36 +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,
|
|
|
|
height,
|
|
|
|
fl_get_visual_depth());
|
2000-08-14 15:31:16 +00:00
|
|
|
if (lyxerr.debugging(Debug::GUI))
|
2000-03-06 02:42:40 +00:00
|
|
|
lyxerr << "\tpixmap=" << workareapixmap << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WorkArea::greyOut() const
|
|
|
|
{
|
|
|
|
fl_winset(FL_ObjWin(work_area));
|
|
|
|
fl_rectangle(1, work_area->x, work_area->y,
|
|
|
|
work_area->w, work_area->h, FL_GRAY63);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WorkArea::setFocus() const
|
|
|
|
{
|
|
|
|
fl_set_focus_object(work_area->form, work_area);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WorkArea::setScrollbar(double pos, double length_fraction) const
|
|
|
|
{
|
2000-04-26 13:57:28 +00:00
|
|
|
fl_set_scrollbar_value(scrollbar, pos);
|
|
|
|
fl_set_scrollbar_size(scrollbar, scrollbar->h * length_fraction);
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WorkArea::setScrollbarBounds(double l1, double l2) const
|
|
|
|
{
|
2000-04-26 13:57:28 +00:00
|
|
|
fl_set_scrollbar_bounds(scrollbar, l1, l2);
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-26 13:57:28 +00:00
|
|
|
void WorkArea::setScrollbarIncrements(double inc) const
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
2000-04-26 13:57:28 +00:00
|
|
|
fl_set_scrollbar_increment(scrollbar, work_area->h - inc, inc);
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Callback for scrollbar slider
|
|
|
|
void WorkArea::scroll_cb(FL_OBJECT * ob, long)
|
|
|
|
{
|
|
|
|
WorkArea * area = static_cast<WorkArea*>(ob->u_vdata);
|
2000-04-26 13:57:28 +00:00
|
|
|
// If we really want the accellerating scroll we can do that
|
|
|
|
// from here. IMHO that is a waste of effort since we already
|
|
|
|
// have other ways to move fast around in the document. (Lgb)
|
2000-12-29 12:48:02 +00:00
|
|
|
area->scrollCB(fl_get_scrollbar_value(ob));
|
2000-02-10 17:53:36 +00:00
|
|
|
waitForX();
|
|
|
|
}
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
bool Lgb_bug_find_hack = false;
|
|
|
|
|
|
|
|
int WorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
2000-03-06 02:42:40 +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;
|
|
|
|
static long scrollbar_value_old = -1;
|
|
|
|
|
|
|
|
XEvent * ev = static_cast<XEvent*>(xev);
|
|
|
|
WorkArea * area = static_cast<WorkArea*>(ob->u_vdata);
|
|
|
|
|
|
|
|
if (!area) return 1;
|
|
|
|
|
2000-06-21 12:41:18 +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;
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: DRAW" << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
area->createPixmap(area->workWidth(), area->height());
|
|
|
|
Lgb_bug_find_hack = true;
|
2000-08-14 15:31:16 +00:00
|
|
|
area->workAreaExpose();
|
2000-02-10 17:53:36 +00:00
|
|
|
Lgb_bug_find_hack = false;
|
|
|
|
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
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: PUSH" << endl;
|
|
|
|
area->workAreaButtonPress(ev->xbutton.x - ob->x,
|
|
|
|
ev->xbutton.y - ob->y,
|
|
|
|
ev->xbutton.button);
|
|
|
|
//area->workAreaKeyPress(XK_Pointer_Button1, ev->xbutton.state);
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
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
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: RELEASE" << endl;
|
|
|
|
area->workAreaButtonRelease(ev->xbutton.x - ob->x,
|
|
|
|
ev->xbutton.y - ob->y,
|
|
|
|
ev->xbutton.button);
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
2000-10-31 13:53:26 +00:00
|
|
|
#if FL_REVISION < 89
|
|
|
|
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
|
|
|
|
) {
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: MOUSE" << endl;
|
|
|
|
area->workAreaMotionNotify(ev->xmotion.x - ob->x,
|
|
|
|
ev->xmotion.y - ob->y,
|
|
|
|
ev->xbutton.state);
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-10-31 13:53:26 +00:00
|
|
|
#if FL_REVISION < 89
|
|
|
|
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
|
|
|
{
|
2000-08-30 03:40:51 +00:00
|
|
|
lyxerr[Debug::KEY] << "Workarea event: KEYBOARD" << endl;
|
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);
|
2000-12-05 17:12:47 +00:00
|
|
|
#if FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5)
|
|
|
|
// 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);
|
|
|
|
#endif
|
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 : "");
|
2000-08-14 15:31:16 +00:00
|
|
|
|
|
|
|
lyxerr << "WorkArea: Key is `" << stm << "' ["
|
|
|
|
<< key << "]" << endl;
|
|
|
|
lyxerr << "WorkArea: Keysym is `" << stm2 << "' ["
|
|
|
|
<< keysym << "]" << endl;
|
|
|
|
}
|
|
|
|
|
2000-08-15 09:41:24 +00:00
|
|
|
#if FL_REVISION < 89
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2000-08-15 09:41:24 +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)
|
2000-08-14 15:31:16 +00:00
|
|
|
static Time last_time_pressed = 0;
|
|
|
|
static unsigned int last_key_pressed = 0;
|
|
|
|
static unsigned int last_state_pressed = 0;
|
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;
|
2000-08-14 15:31:16 +00:00
|
|
|
|
|
|
|
area->workAreaKeyPress(ret_key, ret_state);
|
|
|
|
}
|
|
|
|
break;
|
2000-10-31 13:53:26 +00:00
|
|
|
|
|
|
|
#if FL_REVISION >= 89
|
2000-10-30 21:53:29 +00:00
|
|
|
case FL_KEYRELEASE:
|
|
|
|
lyxerr << "Workarea event: KEYRELEASE" << endl;
|
|
|
|
break;
|
2000-10-31 13:53:26 +00:00
|
|
|
#endif
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
case FL_FOCUS:
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: FOCUS" << endl;
|
|
|
|
area->workAreaFocus();
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_UNFOCUS:
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: UNFOCUS" << endl;
|
|
|
|
area->workAreaUnfocus();
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_ENTER:
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: ENTER" << endl;
|
|
|
|
area->workAreaEnter();
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_LEAVE:
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: LEAVE" << endl;
|
|
|
|
area->workAreaLeave();
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_DBLCLICK:
|
|
|
|
if (!ev) break;
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: DBLCLICK" << endl;
|
|
|
|
area->workAreaDoubleClick(ev->xbutton.x - ob->x,
|
|
|
|
ev->xbutton.y - ob->y,
|
|
|
|
ev->xbutton.button);
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_TRPLCLICK:
|
|
|
|
if (!ev) break;
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: TRPLCLICK" << endl;
|
|
|
|
area->workAreaTripleClick(ev->xbutton.x - ob->x,
|
|
|
|
ev->xbutton.y - ob->y,
|
|
|
|
ev->xbutton.button);
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_OTHER:
|
|
|
|
if (!ev) break;
|
2000-08-14 15:31:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "Workarea event: OTHER" << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
extern "C"
|
2000-05-20 01:38:25 +00:00
|
|
|
int request_clipboard_cb(FL_OBJECT * /*ob*/, long /*type*/,
|
|
|
|
void const * data, long size)
|
|
|
|
{
|
|
|
|
clipboard_selection.erase();
|
2000-07-10 10:31:34 +00:00
|
|
|
|
|
|
|
if (size > 0)
|
|
|
|
clipboard_selection.reserve(size);
|
|
|
|
for (int i = 0; i < size; ++i)
|
2000-05-20 21:37:05 +00:00
|
|
|
clipboard_selection += static_cast<char const *>(data)[i];
|
2000-05-20 01:38:25 +00:00
|
|
|
clipboard_read = true;
|
|
|
|
return 0;
|
|
|
|
}
|
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
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
string const WorkArea::getClipboard() const
|
2000-05-20 01:38:25 +00:00
|
|
|
{
|
|
|
|
clipboard_read = false;
|
|
|
|
|
|
|
|
if (fl_request_clipboard(work_area, 0, request_clipboard_cb) == -1)
|
|
|
|
return string();
|
|
|
|
|
|
|
|
XEvent ev;
|
|
|
|
|
|
|
|
while (!clipboard_read) {
|
|
|
|
if (fl_check_forms() == FL_EVENT) {
|
|
|
|
lyxerr << "LyX: This shouldn't happen..." << endl;
|
|
|
|
fl_XNextEvent(&ev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return clipboard_selection;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WorkArea::putClipboard(string const & s) const
|
|
|
|
{
|
|
|
|
static string hold;
|
|
|
|
hold = s;
|
|
|
|
|
|
|
|
fl_stuff_clipboard(work_area, 0, hold.c_str(), hold.size(), 0);
|
|
|
|
}
|