mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
Clean up of XWorkArea.C, no change in functionality.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5779 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8e87719c27
commit
89dd2a60b0
@ -1,3 +1,16 @@
|
|||||||
|
2002-12-04 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
|
* XWorkArea.h (backgroundbox): Removed. No need to name it explicitly.
|
||||||
|
|
||||||
|
* XWorkArea.C (work_area_handler): move static vars inside loop,
|
||||||
|
rename vars as discussed with Lars. Document changes in the text.
|
||||||
|
Don't declare functions as static; use namespace anon.
|
||||||
|
(setXtermCursor): removed; not used.
|
||||||
|
(destroy_object): removed; not used.
|
||||||
|
Remove unneeded header files ColorHandler.h, LyXView.h, filetools.h,
|
||||||
|
lstrings.h, LAssert.h, cmath, cctype.
|
||||||
|
Various other trivial clean-ups.
|
||||||
|
|
||||||
2002-12-03 Juergen Spitzmueller <j.spitzmueller@gmx.de>
|
2002-12-03 Juergen Spitzmueller <j.spitzmueller@gmx.de>
|
||||||
|
|
||||||
* xforms_helpers.C: (updateWidgetsFromLength)
|
* xforms_helpers.C: (updateWidgetsFromLength)
|
||||||
|
@ -17,9 +17,7 @@
|
|||||||
|
|
||||||
#include "XWorkArea.h"
|
#include "XWorkArea.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "LyXView.h"
|
|
||||||
#include "XLyXKeySym.h"
|
#include "XLyXKeySym.h"
|
||||||
#include "ColorHandler.h"
|
|
||||||
#include "funcrequest.h"
|
#include "funcrequest.h"
|
||||||
#include "Timeout.h"
|
#include "Timeout.h"
|
||||||
|
|
||||||
@ -27,17 +25,6 @@
|
|||||||
#include "lyxlookup.h"
|
#include "lyxlookup.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "support/filetools.h" // LibFileSearch
|
|
||||||
#include "support/lstrings.h"
|
|
||||||
#include "support/LAssert.h"
|
|
||||||
|
|
||||||
#include <cmath>
|
|
||||||
#include <cctype>
|
|
||||||
|
|
||||||
// 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 *);
|
|
||||||
|
|
||||||
using std::endl;
|
using std::endl;
|
||||||
using std::abs;
|
using std::abs;
|
||||||
using std::hex;
|
using std::hex;
|
||||||
@ -46,23 +33,9 @@ using std::dec;
|
|||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
inline
|
inline
|
||||||
void waitForX()
|
void waitForX(bool discard)
|
||||||
{
|
{
|
||||||
XSync(fl_get_display(), 0);
|
XSync(fl_get_display(), discard);
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
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());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -85,8 +58,6 @@ mouse_button::state x_button_state(unsigned int button)
|
|||||||
case FL_MBUTTON5:
|
case FL_MBUTTON5:
|
||||||
b = mouse_button::button5;
|
b = mouse_button::button5;
|
||||||
break;
|
break;
|
||||||
default: // FIXME
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
return b;
|
return b;
|
||||||
}
|
}
|
||||||
@ -105,62 +76,56 @@ key_modifier::state x_key_state(unsigned int state)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
} // anon namespace
|
|
||||||
|
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
// Just a bunch of C wrappers around static members of XWorkArea
|
|
||||||
static
|
void C_scroll_cb(FL_OBJECT * ob, long)
|
||||||
void C_XWorkArea_scroll_cb(FL_OBJECT * ob, long)
|
{
|
||||||
{
|
XWorkArea * area = static_cast<XWorkArea *>(ob->u_vdata);
|
||||||
XWorkArea * area = static_cast<XWorkArea*>(ob->u_vdata);
|
|
||||||
area->scroll_cb();
|
area->scroll_cb();
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static
|
|
||||||
int C_XWorkArea_work_area_handler(FL_OBJECT * ob, int event,
|
|
||||||
FL_Coord, FL_Coord,
|
|
||||||
int key, void * xev)
|
|
||||||
{
|
|
||||||
return XWorkArea::work_area_handler(ob, event,
|
|
||||||
0, 0, key, xev);
|
|
||||||
}
|
|
||||||
|
|
||||||
static
|
|
||||||
int C_XWorkAreaEventCB(FL_FORM * form, void * xev) {
|
|
||||||
XWorkArea * wa = static_cast<XWorkArea*>(form->u_vdata);
|
|
||||||
return wa->event_cb(static_cast<XEvent*>(xev));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int C_work_area_handler(FL_OBJECT * ob, int event, FL_Coord, FL_Coord,
|
||||||
|
int key, void * xev)
|
||||||
|
{
|
||||||
|
return XWorkArea::work_area_handler(ob, event, 0, 0, key, xev);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int C_event_cb(FL_FORM * form, void * xev)
|
||||||
|
{
|
||||||
|
XWorkArea * area = static_cast<XWorkArea *>(form->u_vdata);
|
||||||
|
return area->event_cb(static_cast<XEvent *>(xev));
|
||||||
|
}
|
||||||
|
|
||||||
|
} // extern "C"
|
||||||
|
} // namespace anon
|
||||||
|
|
||||||
|
|
||||||
XWorkArea::XWorkArea(int x, int y, int w, int h)
|
XWorkArea::XWorkArea(int x, int y, int w, int h)
|
||||||
: workareapixmap(0), painter_(*this)
|
: workareapixmap(0), painter_(*this)
|
||||||
{
|
{
|
||||||
|
if (lyxerr.debugging(Debug::WORKAREA)) {
|
||||||
|
lyxerr << "\tbackground box: +"
|
||||||
|
<< x << '+' << y << ' '
|
||||||
|
<< w - 15 << 'x' << h << endl;
|
||||||
|
}
|
||||||
|
|
||||||
fl_freeze_all_forms();
|
fl_freeze_all_forms();
|
||||||
|
|
||||||
FL_OBJECT * obj;
|
FL_OBJECT * obj;
|
||||||
|
|
||||||
if (lyxerr.debugging(Debug::WORKAREA))
|
obj = fl_add_box(FL_BORDER_BOX, x, y, w - 15, h, "");
|
||||||
lyxerr << "\tbackground box: +"
|
|
||||||
<< x << '+' << y << ' '
|
|
||||||
<< w - 15 << 'x' << h << endl;
|
|
||||||
backgroundbox = obj = fl_add_box(FL_BORDER_BOX,
|
|
||||||
x, y,
|
|
||||||
w - 15,
|
|
||||||
h, "");
|
|
||||||
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
||||||
fl_set_object_gravity(obj, NorthWestGravity, SouthEastGravity);
|
fl_set_object_gravity(obj, NorthWestGravity, SouthEastGravity);
|
||||||
|
|
||||||
scrollbar = obj = fl_add_scrollbar(FL_VERT_SCROLLBAR,
|
scrollbar = obj = fl_add_scrollbar(FL_VERT_SCROLLBAR,
|
||||||
x + w - 15,
|
x + w - 15, y, 17, h, "");
|
||||||
y, 17, h, "");
|
|
||||||
fl_set_object_boxtype(obj, FL_UP_BOX);
|
fl_set_object_boxtype(obj, FL_UP_BOX);
|
||||||
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
||||||
fl_set_object_gravity(obj, NorthEastGravity, SouthEastGravity);
|
fl_set_object_gravity(obj, NorthEastGravity, SouthEastGravity);
|
||||||
obj->u_vdata = this;
|
obj->u_vdata = this;
|
||||||
fl_set_object_callback(obj, C_XWorkArea_scroll_cb, 0);
|
fl_set_object_callback(obj, C_scroll_cb, 0);
|
||||||
fl_set_scrollbar_bounds(scrollbar, 0.0, 0.0);
|
fl_set_scrollbar_bounds(scrollbar, 0.0, 0.0);
|
||||||
fl_set_scrollbar_value(scrollbar, 0.0);
|
fl_set_scrollbar_value(scrollbar, 0.0);
|
||||||
fl_set_scrollbar_size(scrollbar, scrollbar->h);
|
fl_set_scrollbar_size(scrollbar, scrollbar->h);
|
||||||
@ -183,7 +148,7 @@ XWorkArea::XWorkArea(int x, int y, int w, int h)
|
|||||||
x + bw, y + bw,
|
x + bw, y + bw,
|
||||||
w - 15 - 2 * bw,
|
w - 15 - 2 * bw,
|
||||||
h - 2 * bw, "",
|
h - 2 * bw, "",
|
||||||
C_XWorkArea_work_area_handler);
|
C_work_area_handler);
|
||||||
obj->wantkey = FL_KEY_ALL;
|
obj->wantkey = FL_KEY_ALL;
|
||||||
obj->u_vdata = this;
|
obj->u_vdata = this;
|
||||||
|
|
||||||
@ -193,7 +158,7 @@ XWorkArea::XWorkArea(int x, int y, int w, int h)
|
|||||||
|
|
||||||
/// X selection hook - xforms gets it wrong
|
/// X selection hook - xforms gets it wrong
|
||||||
fl_current_form->u_vdata = this;
|
fl_current_form->u_vdata = this;
|
||||||
fl_register_raw_callback(fl_current_form, FL_ALL_EVENT, C_XWorkAreaEventCB);
|
fl_register_raw_callback(fl_current_form, FL_ALL_EVENT, C_event_cb);
|
||||||
|
|
||||||
fl_unfreeze_all_forms();
|
fl_unfreeze_all_forms();
|
||||||
|
|
||||||
@ -213,21 +178,6 @@ XWorkArea::~XWorkArea()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
|
|
||||||
void XWorkArea::redraw(int width, int height)
|
void XWorkArea::redraw(int width, int height)
|
||||||
{
|
{
|
||||||
static int cur_width = -1;
|
static int cur_width = -1;
|
||||||
@ -275,14 +225,17 @@ void XWorkArea::setScrollbarParams(int height, int pos, int line_height)
|
|||||||
|
|
||||||
long const work_height = workHeight();
|
long const work_height = workHeight();
|
||||||
|
|
||||||
lyxerr[Debug::GUI] << "scroll: height now " << height << endl;
|
if (lyxerr.debugging(Debug::GUI)) {
|
||||||
lyxerr[Debug::GUI] << "scroll: work_height " << work_height << endl;
|
lyxerr << "scroll: height now " << height << '\n'
|
||||||
|
<< "scroll: work_height " << work_height << endl;
|
||||||
|
}
|
||||||
|
|
||||||
/* If the text is smaller than the working area, the scrollbar
|
/* If the text is smaller than the working area, the scrollbar
|
||||||
* maximum must be the working area height. No scrolling will
|
* maximum must be the working area height. No scrolling will
|
||||||
* be possible */
|
* be possible */
|
||||||
if (height <= work_height) {
|
if (height <= work_height) {
|
||||||
lyxerr[Debug::GUI] << "scroll: doc smaller than workarea !" << endl;
|
lyxerr[Debug::GUI] << "scroll: doc smaller than workarea !"
|
||||||
|
<< endl;
|
||||||
fl_set_scrollbar_bounds(scrollbar, 0.0, 0.0);
|
fl_set_scrollbar_bounds(scrollbar, 0.0, 0.0);
|
||||||
fl_set_scrollbar_value(scrollbar, pos);
|
fl_set_scrollbar_value(scrollbar, pos);
|
||||||
fl_set_scrollbar_size(scrollbar, scrollbar->h);
|
fl_set_scrollbar_size(scrollbar, scrollbar->h);
|
||||||
@ -305,11 +258,15 @@ void XWorkArea::setScrollbarParams(int height, int pos, int line_height)
|
|||||||
void XWorkArea::scroll_cb()
|
void XWorkArea::scroll_cb()
|
||||||
{
|
{
|
||||||
double const val = fl_get_scrollbar_value(scrollbar);
|
double const val = fl_get_scrollbar_value(scrollbar);
|
||||||
lyxerr[Debug::GUI] << "scroll: val: " << val << endl;
|
|
||||||
lyxerr[Debug::GUI] << "scroll: height: " << scrollbar->h << endl;
|
if (lyxerr.debugging(Debug::GUI)) {
|
||||||
lyxerr[Debug::GUI] << "scroll: docheight: " << doc_height_ << endl;
|
lyxerr << "scroll: val: " << val << '\n'
|
||||||
|
<< "scroll: height: " << scrollbar->h << '\n'
|
||||||
|
<< "scroll: docheight: " << doc_height_ << endl;
|
||||||
|
}
|
||||||
|
|
||||||
scrollDocView(int(val));
|
scrollDocView(int(val));
|
||||||
waitForX();
|
waitForX(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -317,12 +274,6 @@ int XWorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
|||||||
FL_Coord, FL_Coord,
|
FL_Coord, FL_Coord,
|
||||||
int key, void * xev)
|
int key, void * xev)
|
||||||
{
|
{
|
||||||
static int x_old = -1;
|
|
||||||
static int y_old = -1;
|
|
||||||
static double scrollbar_value_old = -1.0;
|
|
||||||
static int const motion_interval = 200;
|
|
||||||
static Timeout timdel(motion_interval);
|
|
||||||
|
|
||||||
XEvent * ev = static_cast<XEvent*>(xev);
|
XEvent * ev = static_cast<XEvent*>(xev);
|
||||||
XWorkArea * area = static_cast<XWorkArea*>(ob->u_vdata);
|
XWorkArea * area = static_cast<XWorkArea*>(ob->u_vdata);
|
||||||
|
|
||||||
@ -330,8 +281,7 @@ int XWorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
|||||||
|
|
||||||
switch (event) {
|
switch (event) {
|
||||||
case FL_DRAW:
|
case FL_DRAW:
|
||||||
if (!area->work_area ||
|
if (!area->work_area || !area->work_area->form->visible)
|
||||||
!area->work_area->form->visible)
|
|
||||||
return 1;
|
return 1;
|
||||||
lyxerr[Debug::WORKAREA] << "Workarea event: DRAW" << endl;
|
lyxerr[Debug::WORKAREA] << "Workarea event: DRAW" << endl;
|
||||||
area->redraw(area->workWidth(), area->workHeight());
|
area->redraw(area->workWidth(), area->workHeight());
|
||||||
@ -362,30 +312,50 @@ int XWorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
|||||||
case FL_DRAG:
|
case FL_DRAG:
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
if (!ev || !area->scrollbar)
|
||||||
|
break;
|
||||||
|
|
||||||
|
int const drag_x = ev->xmotion.x;
|
||||||
int const drag_y = ev->xmotion.y;
|
int const drag_y = ev->xmotion.y;
|
||||||
|
int const area_x = ob->x;
|
||||||
int const area_y = ob->y;
|
int const area_y = ob->y;
|
||||||
|
int const area_w = ob->w;
|
||||||
int const area_h = ob->h;
|
int const area_h = ob->h;
|
||||||
|
|
||||||
// Check if the mouse is above or below the workarea
|
// Check if the mouse is above or below the workarea
|
||||||
if (drag_y >= area_y + area_h || drag_y <= area_y) {
|
if (drag_y <= area_y || drag_y >= area_y + area_h) {
|
||||||
// we are outside, then we must not give too many
|
// The mouse button is depressed and we are outside the
|
||||||
// motion events.
|
// workarea. That means we are simultaneously selecting
|
||||||
if (timdel.running())
|
// text and scrolling the view.
|
||||||
|
// Use a Timeout to react to a drag events only every
|
||||||
|
// 200ms. All intervening events are discarded,
|
||||||
|
// allowing the user to control position easily.
|
||||||
|
static int const discard_interval = 200;
|
||||||
|
static Timeout timeout(discard_interval);
|
||||||
|
|
||||||
|
if (timeout.running())
|
||||||
break;
|
break;
|
||||||
else
|
// The timeout is not running, so process the
|
||||||
timdel.start();
|
// event, first starting the timeout to discard future
|
||||||
|
// events.
|
||||||
|
timeout.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ev || !area->scrollbar)
|
static int x_old = -1;
|
||||||
break;
|
static int y_old = -1;
|
||||||
if (ev->xmotion.x != x_old ||
|
static double scrollbar_value_old = -1.0;
|
||||||
ev->xmotion.y != y_old ||
|
|
||||||
fl_get_scrollbar_value(area->scrollbar) != scrollbar_value_old
|
double const scrollbar_value =
|
||||||
) {
|
fl_get_scrollbar_value(area->scrollbar);
|
||||||
x_old = ev->xmotion.x;
|
|
||||||
y_old = ev->xmotion.y;
|
if (drag_x != x_old || drag_y != y_old ||
|
||||||
scrollbar_value_old = fl_get_scrollbar_value(area->scrollbar);
|
scrollbar_value != scrollbar_value_old) {
|
||||||
lyxerr[Debug::WORKAREA] << "Workarea event: MOUSE" << endl;
|
x_old = drag_x;
|
||||||
|
y_old = drag_y;
|
||||||
|
scrollbar_value_old = scrollbar_value;
|
||||||
|
|
||||||
|
lyxerr[Debug::WORKAREA] << "Workarea event: DRAG"
|
||||||
|
<< endl;
|
||||||
|
|
||||||
// It transpires that ev->xbutton.button == 0 when
|
// It transpires that ev->xbutton.button == 0 when
|
||||||
// the mouse is dragged, so it cannot be used to
|
// the mouse is dragged, so it cannot be used to
|
||||||
@ -404,7 +374,6 @@ int XWorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
|||||||
ev->xbutton.y - ob->y,
|
ev->xbutton.y - ob->y,
|
||||||
x_button_state(key));
|
x_button_state(key));
|
||||||
area->dispatch(cmd);
|
area->dispatch(cmd);
|
||||||
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -415,7 +384,7 @@ int XWorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
|||||||
case FL_KEYPRESS:
|
case FL_KEYPRESS:
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
lyxerr[Debug::WORKAREA] << "Workarea event: KEYBOARD" << endl;
|
lyxerr[Debug::WORKAREA] << "Workarea event: KEYPRESS" << endl;
|
||||||
|
|
||||||
KeySym keysym = 0;
|
KeySym keysym = 0;
|
||||||
char dummy[1];
|
char dummy[1];
|
||||||
@ -426,20 +395,17 @@ int XWorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
|||||||
LyXLookupString(ev, dummy, 1, &keysym);
|
LyXLookupString(ev, dummy, 1, &keysym);
|
||||||
#else
|
#else
|
||||||
XLookupString(xke, dummy, 1, &keysym, 0);
|
XLookupString(xke, dummy, 1, &keysym, 0);
|
||||||
// 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;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (lyxerr.debugging(Debug::KEY)) {
|
if (lyxerr.debugging(Debug::KEY)) {
|
||||||
char const * tmp = XKeysymToString(key);
|
char const * const tmp = XKeysymToString(key);
|
||||||
char const * tmp2 = XKeysymToString(keysym);
|
char const * const tmp2 = XKeysymToString(keysym);
|
||||||
string const stm = (tmp ? tmp : "");
|
string const stm = (tmp ? tmp : string());
|
||||||
string const stm2 = (tmp2 ? tmp2 : "");
|
string const stm2 = (tmp2 ? tmp2 : string());
|
||||||
|
|
||||||
lyxerr[Debug::KEY] << "XWorkArea: Key is `" << stm
|
lyxerr << "XWorkArea: Key is `" << stm
|
||||||
<< "' [" << key << ']' << endl;
|
<< "' [" << key << "]\n"
|
||||||
lyxerr[Debug::KEY] << "XWorkArea: Keysym is `" << stm2
|
<< "XWorkArea: Keysym is `" << stm2
|
||||||
<< "' [" << keysym << ']' << endl;
|
<< "' [" << keysym << ']' << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -454,11 +420,11 @@ int XWorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
|||||||
#else
|
#else
|
||||||
// Note that we need this handling because of a bug
|
// Note that we need this handling because of a bug
|
||||||
// in XForms 0.89, if this bug is resolved in the way I hope
|
// in XForms 0.89, if this bug is resolved in the way I hope
|
||||||
// we can just use the keysym directly with out looking
|
// we can just use the keysym directly without looking
|
||||||
// at key at all. (Lgb)
|
// at key at all. (Lgb)
|
||||||
KeySym ret_key = 0;
|
KeySym ret_key = 0;
|
||||||
if (!key) {
|
if (!key) {
|
||||||
// We migth have to add more keysyms here also,
|
// We might have to add more keysyms here also,
|
||||||
// we will do that as the issues arise. (Lgb)
|
// we will do that as the issues arise. (Lgb)
|
||||||
if (keysym == XK_space) {
|
if (keysym == XK_space) {
|
||||||
ret_key = keysym;
|
ret_key = keysym;
|
||||||
@ -504,8 +470,8 @@ int XWorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
|||||||
// << XEventsQueued(fl_get_display(), QueuedAlready)
|
// << XEventsQueued(fl_get_display(), QueuedAlready)
|
||||||
// << endl;
|
// << endl;
|
||||||
if (XEventsQueued(fl_get_display(), QueuedAlready) > 0)
|
if (XEventsQueued(fl_get_display(), QueuedAlready) > 0)
|
||||||
XSync(fl_get_display(), 1);
|
waitForX(true);
|
||||||
// This purge make f.ex. scrolling stop immidiatly when
|
// This purge make f.ex. scrolling stop immediately when
|
||||||
// releasing the PageDown button. The question is if
|
// releasing the PageDown button. The question is if
|
||||||
// this purging of XEvents can cause any harm...
|
// this purging of XEvents can cause any harm...
|
||||||
// after some testing I can see no problems, but
|
// after some testing I can see no problems, but
|
||||||
@ -573,29 +539,25 @@ bool clipboard_read = false;
|
|||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
static
|
int request_clipboard_cb(FL_OBJECT * /*ob*/, long /*type*/,
|
||||||
int request_clipboard_cb(FL_OBJECT * /*ob*/, long /*type*/,
|
|
||||||
void const * data, long size)
|
void const * data, long size)
|
||||||
{
|
{
|
||||||
clipboard_selection.erase();
|
clipboard_selection.erase();
|
||||||
|
|
||||||
if (size > 0)
|
if (size > 0)
|
||||||
clipboard_selection.reserve(size);
|
clipboard_selection.reserve(size);
|
||||||
for (int i = 0; i < size; ++i)
|
for (int i = 0; i < size; ++i)
|
||||||
clipboard_selection +=
|
clipboard_selection += static_cast<char const *>(data)[i];
|
||||||
static_cast<char const *>(data)[i];
|
|
||||||
clipboard_read = true;
|
clipboard_read = true;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} // extern "C"
|
||||||
} // namespace anon
|
} // namespace anon
|
||||||
|
|
||||||
|
|
||||||
int XWorkArea::event_cb(XEvent * xev)
|
int XWorkArea::event_cb(XEvent * xev)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
|
||||||
switch (xev->type) {
|
switch (xev->type) {
|
||||||
case SelectionRequest:
|
case SelectionRequest:
|
||||||
lyxerr[Debug::GUI] << "X requested selection." << endl;
|
lyxerr[Debug::GUI] << "X requested selection." << endl;
|
||||||
@ -606,18 +568,14 @@ int XWorkArea::event_cb(XEvent * xev)
|
|||||||
selectionLost();
|
selectionLost();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void XWorkArea::haveSelection(bool yes) const
|
void XWorkArea::haveSelection(bool yes) const
|
||||||
{
|
{
|
||||||
if (!yes) {
|
Window const owner = yes ? FL_ObjWin(work_area) : None;
|
||||||
XSetSelectionOwner(fl_get_display(), XA_PRIMARY, None, CurrentTime);
|
XSetSelectionOwner(fl_get_display(), XA_PRIMARY, owner, CurrentTime);
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
XSetSelectionOwner(fl_get_display(), XA_PRIMARY, FL_ObjWin(work_area), CurrentTime);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -633,9 +591,10 @@ string const XWorkArea::getClipboard() const
|
|||||||
while (!clipboard_read) {
|
while (!clipboard_read) {
|
||||||
if (fl_check_forms() == FL_EVENT) {
|
if (fl_check_forms() == FL_EVENT) {
|
||||||
fl_XNextEvent(&ev);
|
fl_XNextEvent(&ev);
|
||||||
lyxerr << "Received unhandled X11 event" << endl;
|
lyxerr << "Received unhandled X11 event\n"
|
||||||
lyxerr << "Type: 0x" << hex << ev.xany.type <<
|
<< "Type: 0x" << hex << ev.xany.type
|
||||||
" Target: 0x" << hex << ev.xany.window << dec << endl;
|
<< " Target: 0x" << hex << ev.xany.window
|
||||||
|
<< dec << endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return clipboard_selection;
|
return clipboard_selection;
|
||||||
|
Loading…
Reference in New Issue
Block a user