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"
|
2001-09-27 09:43:31 +00:00
|
|
|
#include "lyxrc.h" // lyxrc.show_banner
|
2001-10-03 15:49:32 +00:00
|
|
|
#include "version.h" // lyx_version
|
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-12 15:01:32 +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;
|
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-05-26 17:33:14 +00:00
|
|
|
// FIXME !
|
|
|
|
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
|
|
|
// FIXME
|
|
|
|
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" {
|
2001-09-09 22:02:19 +00:00
|
|
|
// Just a bunch of C wrappers around static members of WorkArea
|
|
|
|
static
|
2002-06-12 15:01:32 +00:00
|
|
|
void C_WorkArea_scroll_cb(FL_OBJECT * ob, long)
|
2002-03-21 17:27:08 +00:00
|
|
|
{
|
2002-06-12 15:01:32 +00:00
|
|
|
WorkArea * area = static_cast<WorkArea*>(ob->u_vdata);
|
|
|
|
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
|
2000-02-11 13:52:44 +00:00
|
|
|
int C_WorkArea_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
|
|
|
{
|
2000-02-11 13:52:44 +00:00
|
|
|
return WorkArea::work_area_handler(ob, event,
|
|
|
|
0, 0, key, xev);
|
2002-03-21 17:27:08 +00:00
|
|
|
}
|
2002-01-13 17:28:42 +00:00
|
|
|
|
|
|
|
static
|
|
|
|
int C_WorkAreaEventCB(FL_FORM * form, void * xev) {
|
2002-03-18 22:38:25 +00:00
|
|
|
WorkArea * wa = static_cast<WorkArea*>(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-12 02:54:19 +00:00
|
|
|
WorkArea::WorkArea(int x, int y, int w, int h)
|
2001-09-27 09:43:31 +00:00
|
|
|
: splash_(0), splash_text_(0), workareapixmap(0), painter_(*this)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
|
|
|
fl_freeze_all_forms();
|
|
|
|
|
|
|
|
//
|
|
|
|
FL_OBJECT * obj;
|
|
|
|
|
|
|
|
// a box
|
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);
|
|
|
|
|
2001-09-27 09:43:31 +00:00
|
|
|
// Add a splash screen to the centre of the work area
|
|
|
|
string const splash_file = (lyxrc.show_banner) ?
|
|
|
|
LibFileSearch("images", "banner", "xpm") : string();
|
|
|
|
|
|
|
|
if (!splash_file.empty()) {
|
|
|
|
int const splash_w = 425;
|
|
|
|
int const splash_h = 290;
|
2002-06-12 02:54:19 +00:00
|
|
|
int const splash_x = x + (w - 15 - splash_w) / 2;
|
|
|
|
int const splash_y = y + (h - splash_h) / 2;
|
2001-09-27 09:43:31 +00:00
|
|
|
splash_ = obj =
|
|
|
|
fl_add_pixmapbutton(FL_NORMAL_BUTTON,
|
2002-03-21 17:27:08 +00:00
|
|
|
splash_x, splash_y,
|
2001-09-27 09:43:31 +00:00
|
|
|
splash_w, splash_h, "");
|
|
|
|
fl_set_pixmapbutton_file(obj, splash_file.c_str());
|
|
|
|
fl_set_pixmapbutton_focus_outline(obj, 3);
|
|
|
|
fl_set_object_boxtype(obj, FL_NO_BOX);
|
|
|
|
|
2001-10-03 09:06:28 +00:00
|
|
|
int const text_x = splash_x + 260;
|
|
|
|
int const text_y = splash_y + 255;
|
2001-09-27 09:43:31 +00:00
|
|
|
splash_text_ = obj =
|
2001-10-03 09:06:28 +00:00
|
|
|
fl_add_text(FL_NORMAL_TEXT, text_x, text_y, 160, 16,
|
2001-10-03 15:49:32 +00:00
|
|
|
lyx_version);
|
2001-09-27 09:43:31 +00:00
|
|
|
fl_set_object_lsize(obj, FL_NORMAL_SIZE);
|
|
|
|
fl_mapcolor(FL_FREE_COL2, 0x2b, 0x47, 0x82);
|
|
|
|
fl_mapcolor(FL_FREE_COL3, 0xe1, 0xd2, 0x9b);
|
|
|
|
fl_set_object_color(obj, FL_FREE_COL2, FL_FREE_COL2);
|
|
|
|
fl_set_object_lcol(obj, FL_FREE_COL3);
|
2001-10-03 09:06:28 +00:00
|
|
|
fl_set_object_lalign(obj, FL_ALIGN_LEFT|FL_ALIGN_INSIDE);
|
2001-09-27 09:43:31 +00:00
|
|
|
fl_set_object_lstyle(obj, FL_BOLD_STYLE);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
fl_set_object_callback(obj, C_WorkArea_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);
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
|
|
|
/// The free object
|
|
|
|
|
2002-06-12 02:54:19 +00:00
|
|
|
int const bw = int(abs(fl_get_border_width()));
|
2002-06-12 15:01:32 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
// Create the workarea pixmap
|
2002-06-12 02:54:19 +00:00
|
|
|
createPixmap(w - 15 - 2 * bw, h - 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.
|
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
|
|
|
|
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,
|
|
|
|
w - 15 - 2 * bw, // scrollbarwidth
|
|
|
|
h - 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);
|
|
|
|
|
2002-01-13 17:28:42 +00:00
|
|
|
/// X selection hook - xforms gets it wrong
|
|
|
|
fl_current_form->u_vdata = this;
|
2002-03-21 17:27:08 +00:00
|
|
|
fl_register_raw_callback(fl_current_form, FL_ALL_EVENT, C_WorkAreaEventCB);
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WorkArea::resize(int xpos, int ypos, int width, int height)
|
|
|
|
{
|
|
|
|
fl_freeze_all_forms();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-12-18 03:30:35 +00:00
|
|
|
int const bw = int(abs(fl_get_border_width()));
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
// a box
|
|
|
|
fl_set_object_geometry(backgroundbox, xpos, ypos, width - 15, height);
|
2001-09-27 09:43:31 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
//
|
|
|
|
// 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);
|
|
|
|
|
2001-09-27 09:43:31 +00:00
|
|
|
fl_unfreeze_all_forms();
|
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
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
void WorkArea::createPixmap(int width, int height)
|
|
|
|
{
|
2001-10-02 16:00:54 +00:00
|
|
|
// Three calls to createPixmap are needed to draw the initial view
|
|
|
|
// of LyX. Any more and the splash is destroyed.
|
|
|
|
static int counter = 0;
|
|
|
|
if (++counter == 4) {
|
|
|
|
destroy_object(splash_);
|
|
|
|
splash_ = 0;
|
|
|
|
destroy_object(splash_text_);
|
|
|
|
splash_text_ = 0;
|
|
|
|
}
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
static int cur_width = -1;
|
|
|
|
static int cur_height = -1;
|
|
|
|
|
|
|
|
if (cur_width == width && cur_height == height && workareapixmap)
|
|
|
|
return;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
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
|
|
|
|
2001-11-09 13:44:48 +00:00
|
|
|
if (lyxerr.debugging(Debug::WORKAREA))
|
2000-03-06 02:42:40 +00:00
|
|
|
lyxerr << "Creating pixmap ("
|
|
|
|
<< width << 'x' << height << ")" << endl;
|
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());
|
2001-11-09 13:44:48 +00:00
|
|
|
if (lyxerr.debugging(Debug::WORKAREA))
|
2000-03-06 02:42:40 +00:00
|
|
|
lyxerr << "\tpixmap=" << workareapixmap << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WorkArea::greyOut() const
|
|
|
|
{
|
2001-10-02 16:00:54 +00:00
|
|
|
if (!splash_) {
|
|
|
|
fl_winset(FL_ObjWin(work_area));
|
|
|
|
fl_rectangle(1, work_area->x, work_area->y,
|
|
|
|
work_area->w, work_area->h, FL_GRAY63);
|
2001-09-27 09:43:31 +00:00
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WorkArea::setFocus() const
|
|
|
|
{
|
|
|
|
fl_set_focus_object(work_area->form, work_area);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
void WorkArea::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;
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
void WorkArea::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
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
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;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
XEvent * ev = static_cast<XEvent*>(xev);
|
|
|
|
WorkArea * area = static_cast<WorkArea*>(ob->u_vdata);
|
|
|
|
|
|
|
|
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-06-12 00:51:45 +00:00
|
|
|
area->createPixmap(area->workWidth(), area->workHeight());
|
2000-08-14 15:31:16 +00:00
|
|
|
area->workAreaExpose();
|
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
|
|
|
|
) {
|
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
|
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
|
|
|
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::KEY] << "WorkArea: Key is `" << stm << "' ["
|
2000-08-14 15:31:16 +00:00
|
|
|
<< key << "]" << endl;
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::KEY] << "WorkArea: 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-05-26 17:33:14 +00:00
|
|
|
area->workAreaKeyPress(ret_key, 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_FOCUS:
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: FOCUS" << endl;
|
2000-08-14 15:31:16 +00:00
|
|
|
area->workAreaFocus();
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
case FL_UNFOCUS:
|
2001-11-09 13:44:48 +00:00
|
|
|
lyxerr[Debug::WORKAREA] << "Workarea event: UNFOCUS" << endl;
|
2000-08-14 15:31:16 +00:00
|
|
|
area->workAreaUnfocus();
|
2000-02-10 17:53:36 +00:00
|
|
|
break;
|
|
|
|
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
|
|
|
|
|
|
|
int WorkArea::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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WorkArea::haveSelection(bool yes) const
|
|
|
|
{
|
|
|
|
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
|
|
|
|
|
|
|
string const WorkArea::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-02-28 14:06:24 +00:00
|
|
|
" Target: 0x" << hex << ev.xany.window << endl;
|
2000-05-20 01:38:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return clipboard_selection;
|
|
|
|
}
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-05-20 01:38:25 +00:00
|
|
|
void WorkArea::putClipboard(string const & s) const
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|