1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/* This file is part of
|
1999-11-15 12:01:38 +00:00
|
|
|
|
* ======================================================
|
1999-10-02 16:21:10 +00:00
|
|
|
|
*
|
|
|
|
|
* LyX, The Document Processor
|
|
|
|
|
*
|
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2000-02-04 09:38:32 +00:00
|
|
|
|
* Copyright 1995-2000 The LyX Team.
|
1999-10-02 16:21:10 +00:00
|
|
|
|
*
|
1999-11-15 12:01:38 +00:00
|
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2000-01-06 02:44:26 +00:00
|
|
|
|
#include <algorithm>
|
2000-01-06 11:35:29 +00:00
|
|
|
|
using std::for_each;
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#include <cstdlib>
|
|
|
|
|
#include <csignal>
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma implementation
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "commandtags.h"
|
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
#include "bufferlist.h"
|
|
|
|
|
#include "LyXView.h"
|
|
|
|
|
#include "lyxfunc.h"
|
|
|
|
|
#include "insets/lyxinset.h"
|
|
|
|
|
#include "minibuffer.h"
|
|
|
|
|
#include "lyxscreen.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "lyx_gui_misc.h"
|
|
|
|
|
#include "BackStack.h"
|
|
|
|
|
#include "lyxtext.h"
|
|
|
|
|
#include "lyx_cb.h"
|
|
|
|
|
#include "gettext.h"
|
1999-11-04 01:40:20 +00:00
|
|
|
|
#include "layout.h"
|
2000-02-04 09:38:32 +00:00
|
|
|
|
#include "TextCache.h"
|
2000-02-03 19:51:27 +00:00
|
|
|
|
#include "intl.h"
|
|
|
|
|
#include "lyxrc.h"
|
2000-02-04 09:38:32 +00:00
|
|
|
|
#include "lyxrow.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
|
#include "WorkArea.h"
|
2000-02-14 22:14:48 +00:00
|
|
|
|
#ifndef USE_PAINTER
|
|
|
|
|
#include "lyxdraw.h"
|
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-06 02:44:26 +00:00
|
|
|
|
using std::find_if;
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
extern BufferList bufferlist;
|
2000-02-04 09:38:32 +00:00
|
|
|
|
extern LyXRC * lyxrc;
|
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
void sigchldhandler(pid_t pid, int * status);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
extern void SetXtermCursor(Window win);
|
|
|
|
|
extern bool input_prohibited;
|
|
|
|
|
extern bool selection_possible;
|
|
|
|
|
extern char ascii_type;
|
|
|
|
|
extern void MenuPasteSelection(char at);
|
1999-12-13 00:05:34 +00:00
|
|
|
|
extern InsetUpdateStruct * InsetUpdateList;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
extern void UpdateInsetUpdateList();
|
1999-12-10 00:07:59 +00:00
|
|
|
|
extern void FreeUpdateTimer();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
BufferView::BufferView(LyXView * o, int xpos, int ypos,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
int width, int height)
|
1999-11-09 23:52:04 +00:00
|
|
|
|
: owner_(o)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
|
buffer_ = 0;
|
1999-12-10 00:07:59 +00:00
|
|
|
|
text = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
screen = 0;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
workarea = new WorkArea(this, xpos, ypos, width, height);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
timer_cursor = 0;
|
2000-02-15 14:28:15 +00:00
|
|
|
|
create_view();
|
2000-02-10 17:53:36 +00:00
|
|
|
|
current_scrollbar_value = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Activate the timer for the cursor
|
|
|
|
|
fl_set_timer(timer_cursor, 0.4);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
workarea->setFocus();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
work_area_focus = true;
|
|
|
|
|
lyx_focus = false;
|
2000-01-07 03:42:16 +00:00
|
|
|
|
the_locking_inset = 0;
|
|
|
|
|
inset_slept = false;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-10 00:07:59 +00:00
|
|
|
|
BufferView::~BufferView()
|
|
|
|
|
{
|
|
|
|
|
delete text;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
|
|
#ifdef USE_PAINTER
|
|
|
|
|
Painter & BufferView::painter()
|
|
|
|
|
{
|
|
|
|
|
return workarea->getPainter();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
void BufferView::buffer(Buffer * b)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-02-04 09:38:32 +00:00
|
|
|
|
lyxerr[Debug::INFO] << "Setting buffer in BufferView ("
|
|
|
|
|
<< b << ")" << endl;
|
1999-11-09 23:52:04 +00:00
|
|
|
|
if (buffer_) {
|
2000-01-07 03:42:16 +00:00
|
|
|
|
insetSleep();
|
1999-11-09 23:52:04 +00:00
|
|
|
|
buffer_->delUser(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
|
|
// Put the old text into the TextCache, but
|
|
|
|
|
// only if the buffer is still loaded.
|
2000-02-11 16:56:34 +00:00
|
|
|
|
// Also set the owner of the test to 0
|
|
|
|
|
text->owner(0);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
textcache.add(text);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
if (lyxerr.debugging())
|
2000-02-04 09:38:32 +00:00
|
|
|
|
textcache.show(lyxerr, "BufferView::buffer");
|
|
|
|
|
|
1999-12-10 00:07:59 +00:00
|
|
|
|
text = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Set current buffer
|
1999-11-09 23:52:04 +00:00
|
|
|
|
buffer_ = b;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (bufferlist.getState() == BufferList::CLOSING) return;
|
|
|
|
|
|
|
|
|
|
// Nuke old image
|
1999-12-16 06:43:25 +00:00
|
|
|
|
// screen is always deleted when the buffer is changed.
|
2000-02-04 09:38:32 +00:00
|
|
|
|
delete screen;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
screen = 0;
|
|
|
|
|
|
|
|
|
|
// If we are closing the buffer, use the first buffer as current
|
1999-11-09 23:52:04 +00:00
|
|
|
|
if (!buffer_) {
|
|
|
|
|
buffer_ = bufferlist.first();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-11-09 23:52:04 +00:00
|
|
|
|
if (buffer_) {
|
2000-02-04 09:38:32 +00:00
|
|
|
|
lyxerr[Debug::INFO] << "Buffer addr: " << buffer_ << endl;
|
1999-11-09 23:52:04 +00:00
|
|
|
|
buffer_->addUser(this);
|
|
|
|
|
owner_->getMenus()->showMenus();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// If we don't have a text object for this, we make one
|
1999-12-10 00:07:59 +00:00
|
|
|
|
if (text == 0)
|
|
|
|
|
resizeCurrentBuffer();
|
|
|
|
|
else {
|
|
|
|
|
updateScreen();
|
|
|
|
|
updateScrollbar();
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
screen->first = screen->TopCursorVisible();
|
|
|
|
|
redraw();
|
|
|
|
|
updateAllVisibleBufferRelatedPopups();
|
2000-01-07 03:42:16 +00:00
|
|
|
|
insetWakeup();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else {
|
1999-11-09 23:52:04 +00:00
|
|
|
|
lyxerr[Debug::INFO] << " No Buffer!" << endl;
|
|
|
|
|
owner_->getMenus()->hideMenus();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
updateScrollbar();
|
2000-02-10 17:53:36 +00:00
|
|
|
|
workarea->redraw();
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
2000-01-06 02:44:26 +00:00
|
|
|
|
// Also remove all remaining text's from the testcache.
|
2000-02-04 09:38:32 +00:00
|
|
|
|
// (there should not be any!) (if there is any it is a
|
|
|
|
|
// bug!)
|
2000-01-24 18:34:46 +00:00
|
|
|
|
if (lyxerr.debugging())
|
2000-02-04 09:38:32 +00:00
|
|
|
|
textcache.show(lyxerr, "buffer delete all");
|
|
|
|
|
textcache.clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
// should update layoutchoice even if we don't have a buffer.
|
1999-11-09 23:52:04 +00:00
|
|
|
|
owner_->updateLayoutChoice();
|
|
|
|
|
owner_->getMiniBuffer()->Init();
|
|
|
|
|
owner_->updateWindowTitle();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::updateScreen()
|
|
|
|
|
{
|
|
|
|
|
// Regenerate the screen.
|
2000-02-04 09:38:32 +00:00
|
|
|
|
delete screen;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
screen = new LyXScreen(this,
|
|
|
|
|
workarea->getWin(),
|
|
|
|
|
workarea->getPixmap(),
|
|
|
|
|
workarea->workWidth(),
|
|
|
|
|
workarea->height(),
|
|
|
|
|
workarea->xpos(),
|
|
|
|
|
workarea->ypos(),
|
|
|
|
|
text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::resize(int xpos, int ypos, int width, int height)
|
|
|
|
|
{
|
|
|
|
|
workarea->resize(xpos, ypos, width, height);
|
|
|
|
|
update(3);
|
|
|
|
|
redraw();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::resize()
|
|
|
|
|
{
|
|
|
|
|
// This will resize the buffer. (Asger)
|
1999-11-09 23:52:04 +00:00
|
|
|
|
if (buffer_)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
resizeCurrentBuffer();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::redraw()
|
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
|
lyxerr[Debug::INFO] << "BufferView::redraw()" << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
workarea->redraw();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::fitCursor()
|
|
|
|
|
{
|
|
|
|
|
if (screen) screen->FitCursor();
|
2000-02-10 17:53:36 +00:00
|
|
|
|
updateScrollbar();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::update()
|
|
|
|
|
{
|
|
|
|
|
if (screen) screen->Update();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::updateScrollbar()
|
|
|
|
|
{
|
|
|
|
|
/* If the text is smaller than the working area, the scrollbar
|
|
|
|
|
* maximum must be the working area height. No scrolling will
|
|
|
|
|
* be possible */
|
|
|
|
|
|
1999-11-09 23:52:04 +00:00
|
|
|
|
if (!buffer_) {
|
2000-02-10 17:53:36 +00:00
|
|
|
|
workarea->setScrollbar(0, 1.0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static long max2 = 0;
|
|
|
|
|
static long height2 = 0;
|
|
|
|
|
|
|
|
|
|
long cbth = 0;
|
|
|
|
|
long cbsf = 0;
|
|
|
|
|
|
1999-12-10 00:07:59 +00:00
|
|
|
|
if (text)
|
|
|
|
|
cbth = text->height;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (screen)
|
|
|
|
|
cbsf = screen->first;
|
|
|
|
|
|
|
|
|
|
// check if anything has changed.
|
2000-02-10 17:53:36 +00:00
|
|
|
|
if (max2 == cbth &&
|
|
|
|
|
height2 == workarea->height() &&
|
|
|
|
|
current_scrollbar_value == cbsf)
|
|
|
|
|
return; // no
|
|
|
|
|
max2 = cbth;
|
|
|
|
|
height2 = workarea->height();
|
|
|
|
|
current_scrollbar_value = cbsf;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (cbth <= height2) { // text is smaller than screen
|
2000-02-10 17:53:36 +00:00
|
|
|
|
workarea->setScrollbar(0, 1.0); // right?
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
|
|
long maximum_height = workarea->height() * 3 / 4 + cbth;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
long value = cbsf;
|
|
|
|
|
|
1999-11-09 23:52:04 +00:00
|
|
|
|
// set the scrollbar
|
2000-02-10 17:53:36 +00:00
|
|
|
|
double hfloat = workarea->height();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
double maxfloat = maximum_height;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
|
|
float slider_size = 0.0;
|
|
|
|
|
int slider_value = value;
|
|
|
|
|
|
|
|
|
|
workarea->setScrollbarBounds(0, text->height - workarea->height());
|
|
|
|
|
double lineh = text->DefaultHeight();
|
|
|
|
|
workarea->setScrollbarIncrements(lineh);
|
|
|
|
|
if (maxfloat > 0.0) {
|
|
|
|
|
if ((hfloat / maxfloat) * float(height2) < 3)
|
|
|
|
|
slider_size = 3.0/float(height2);
|
|
|
|
|
else
|
|
|
|
|
slider_size = hfloat / maxfloat;
|
|
|
|
|
} else
|
|
|
|
|
slider_size = hfloat;
|
|
|
|
|
|
|
|
|
|
workarea->setScrollbar(slider_value, slider_size / workarea->height());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::redoCurrentBuffer()
|
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
|
lyxerr[Debug::INFO] << "BufferView::redoCurrentBuffer" << endl;
|
1999-12-10 00:09:13 +00:00
|
|
|
|
if (buffer_ && text) {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
resize();
|
|
|
|
|
owner_->updateLayoutChoice();
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int BufferView::resizeCurrentBuffer()
|
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
|
lyxerr[Debug::INFO] << "resizeCurrentBuffer" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = 0;
|
|
|
|
|
LyXParagraph * selstartpar = 0;
|
|
|
|
|
LyXParagraph * selendpar = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
int pos = 0;
|
|
|
|
|
int selstartpos = 0;
|
|
|
|
|
int selendpos = 0;
|
|
|
|
|
int selection = 0;
|
|
|
|
|
int mark_set = 0;
|
|
|
|
|
|
|
|
|
|
ProhibitInput();
|
|
|
|
|
|
1999-11-09 23:52:04 +00:00
|
|
|
|
owner_->getMiniBuffer()->Set(_("Formatting document..."));
|
|
|
|
|
|
1999-12-10 00:07:59 +00:00
|
|
|
|
if (text) {
|
|
|
|
|
par = text->cursor.par;
|
|
|
|
|
pos = text->cursor.pos;
|
|
|
|
|
selstartpar = text->sel_start_cursor.par;
|
|
|
|
|
selstartpos = text->sel_start_cursor.pos;
|
|
|
|
|
selendpar = text->sel_end_cursor.par;
|
|
|
|
|
selendpos = text->sel_end_cursor.pos;
|
|
|
|
|
selection = text->selection;
|
|
|
|
|
mark_set = text->mark_set;
|
|
|
|
|
delete text;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
text = new LyXText(this, workarea->workWidth(), buffer_);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
} else {
|
|
|
|
|
// See if we have a text in TextCache that fits
|
|
|
|
|
// the new buffer_ with the correct width.
|
2000-02-10 17:53:36 +00:00
|
|
|
|
text = textcache.findFit(buffer_, workarea->workWidth());
|
2000-02-04 09:38:32 +00:00
|
|
|
|
if (text) {
|
|
|
|
|
if (lyxerr.debugging()) {
|
|
|
|
|
lyxerr << "Found a LyXText that fits:\n";
|
|
|
|
|
textcache.show(lyxerr, text);
|
|
|
|
|
}
|
2000-02-11 16:56:34 +00:00
|
|
|
|
// Set the owner of the newly found text
|
|
|
|
|
text->owner(this);
|
2000-01-24 18:34:46 +00:00
|
|
|
|
if (lyxerr.debugging())
|
2000-02-04 09:38:32 +00:00
|
|
|
|
textcache.show(lyxerr, "resizeCurrentBuffer");
|
2000-01-06 02:44:26 +00:00
|
|
|
|
} else {
|
2000-02-10 17:53:36 +00:00
|
|
|
|
text = new LyXText(this, workarea->workWidth(), buffer_);
|
2000-01-06 02:44:26 +00:00
|
|
|
|
}
|
1999-12-10 00:07:59 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
updateScreen();
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
|
|
|
|
if (par) {
|
|
|
|
|
text->selection = true;
|
1999-12-16 06:43:25 +00:00
|
|
|
|
/* at this point just to avoid the Delete-Empty-Paragraph
|
|
|
|
|
* Mechanism when setting the cursor */
|
1999-12-10 00:07:59 +00:00
|
|
|
|
text->mark_set = mark_set;
|
|
|
|
|
if (selection) {
|
|
|
|
|
text->SetCursor(selstartpar, selstartpos);
|
|
|
|
|
text->sel_cursor = text->cursor;
|
|
|
|
|
text->SetCursor(selendpar, selendpos);
|
|
|
|
|
text->SetSelection();
|
|
|
|
|
text->SetCursor(par, pos);
|
|
|
|
|
} else {
|
1999-12-16 06:43:25 +00:00
|
|
|
|
text->SetCursor(par, pos);
|
1999-12-10 00:07:59 +00:00
|
|
|
|
text->sel_cursor = text->cursor;
|
|
|
|
|
text->selection = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
screen->first = screen->TopCursorVisible(); /* this will scroll the
|
|
|
|
|
* screen such that the
|
|
|
|
|
* cursor becomes
|
|
|
|
|
* visible */
|
|
|
|
|
updateScrollbar();
|
|
|
|
|
redraw();
|
1999-11-09 23:52:04 +00:00
|
|
|
|
owner_->getMiniBuffer()->Init();
|
2000-02-03 19:51:27 +00:00
|
|
|
|
SetState();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
AllowInput();
|
|
|
|
|
|
|
|
|
|
// Now if the title form still exist kill it
|
1999-11-15 12:01:38 +00:00
|
|
|
|
TimerCB(0, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::gotoError()
|
|
|
|
|
{
|
|
|
|
|
if (!screen)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
screen->HideCursor();
|
2000-01-07 03:42:16 +00:00
|
|
|
|
beforeChange();
|
1999-12-10 00:07:59 +00:00
|
|
|
|
update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LyXCursor tmp;
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
|
|
|
|
if (!text->GotoNextError()) {
|
|
|
|
|
if (text->cursor.pos
|
|
|
|
|
|| text->cursor.par != text->FirstParagraph()) {
|
|
|
|
|
tmp = text->cursor;
|
|
|
|
|
text->cursor.par = text->FirstParagraph();
|
|
|
|
|
text->cursor.pos = 0;
|
|
|
|
|
if (!text->GotoNextError()) {
|
|
|
|
|
text->cursor = tmp;
|
1999-12-16 06:43:25 +00:00
|
|
|
|
owner_->getMiniBuffer()
|
|
|
|
|
->Set(_("No more errors"));
|
1999-12-10 00:07:59 +00:00
|
|
|
|
LyXBell();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
owner_->getMiniBuffer()->Set(_("No more errors"));
|
|
|
|
|
LyXBell();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
update(0);
|
|
|
|
|
text->sel_cursor = text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
|
extern "C" {
|
|
|
|
|
void C_BufferView_CursorToggleCB(FL_OBJECT * ob, long buf)
|
|
|
|
|
{
|
|
|
|
|
BufferView::CursorToggleCB(ob, buf);
|
|
|
|
|
}
|
1999-10-25 14:18:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-15 14:28:15 +00:00
|
|
|
|
void BufferView::create_view()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
FL_OBJECT * obj;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// TIMERS
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
// timer_cursor
|
|
|
|
|
timer_cursor = obj = fl_add_timer(FL_HIDDEN_TIMER,
|
1999-11-15 12:01:38 +00:00
|
|
|
|
0, 0, 0, 0, "Timer");
|
|
|
|
|
fl_set_object_callback(obj, C_BufferView_CursorToggleCB, 0);
|
1999-10-05 19:16:13 +00:00
|
|
|
|
obj->u_vdata = this;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Callback for scrollbar up button
|
2000-02-10 17:53:36 +00:00
|
|
|
|
void BufferView::UpCB(long time, int button)
|
|
|
|
|
{
|
|
|
|
|
if (buffer_ == 0) return;
|
|
|
|
|
|
|
|
|
|
switch (button) {
|
|
|
|
|
case 3:
|
|
|
|
|
ScrollUpOnePage();
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
ScrollDownOnePage();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ScrollUp(time);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
|
static inline
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void waitForX()
|
|
|
|
|
{
|
1999-11-05 06:02:34 +00:00
|
|
|
|
XSync(fl_get_display(), 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Callback for scrollbar slider
|
2000-02-10 17:53:36 +00:00
|
|
|
|
void BufferView::ScrollCB(double value)
|
|
|
|
|
{
|
|
|
|
|
extern bool cursor_follows_scrollbar;
|
|
|
|
|
|
|
|
|
|
if (buffer_ == 0) return;
|
|
|
|
|
|
|
|
|
|
current_scrollbar_value = long(value);
|
|
|
|
|
if (current_scrollbar_value < 0)
|
|
|
|
|
current_scrollbar_value = 0;
|
|
|
|
|
|
|
|
|
|
if (!screen)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
screen->Draw(current_scrollbar_value);
|
|
|
|
|
|
|
|
|
|
if (cursor_follows_scrollbar) {
|
|
|
|
|
LyXText * vbt = text;
|
|
|
|
|
int height = vbt->DefaultHeight();
|
|
|
|
|
|
|
|
|
|
if (vbt->cursor.y < screen->first + height) {
|
|
|
|
|
vbt->SetCursorFromCoordinates(0,
|
|
|
|
|
screen->first +
|
|
|
|
|
height);
|
|
|
|
|
} else if (vbt->cursor.y >
|
|
|
|
|
screen->first + workarea->height() - height) {
|
|
|
|
|
vbt->SetCursorFromCoordinates(0,
|
|
|
|
|
screen->first +
|
|
|
|
|
workarea->height() -
|
|
|
|
|
height);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
waitForX();
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Callback for scrollbar down button
|
2000-02-10 17:53:36 +00:00
|
|
|
|
void BufferView::DownCB(long time, int button)
|
|
|
|
|
{
|
|
|
|
|
if (buffer_ == 0) return;
|
|
|
|
|
|
|
|
|
|
switch (button) {
|
|
|
|
|
case 2:
|
|
|
|
|
ScrollUpOnePage();
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
ScrollDownOnePage();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ScrollDown(time);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int BufferView::ScrollUp(long time)
|
|
|
|
|
{
|
|
|
|
|
if (buffer_ == 0) return 0;
|
|
|
|
|
if (!screen) return 0;
|
|
|
|
|
|
|
|
|
|
double value = workarea->getScrollbarValue();
|
|
|
|
|
|
|
|
|
|
if (value == 0) return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
float add_value = (text->DefaultHeight()
|
|
|
|
|
+ float(time) * float(time) * 0.125);
|
|
|
|
|
|
|
|
|
|
if (add_value > workarea->height())
|
|
|
|
|
add_value = float(workarea->height() -
|
|
|
|
|
text->DefaultHeight());
|
|
|
|
|
|
|
|
|
|
value -= add_value;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
if (value < 0)
|
|
|
|
|
value = 0;
|
|
|
|
|
|
|
|
|
|
workarea->setScrollbarValue(value);
|
|
|
|
|
|
|
|
|
|
ScrollCB(value);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int BufferView::ScrollDown(long time)
|
|
|
|
|
{
|
|
|
|
|
if (buffer_ == 0) return 0;
|
|
|
|
|
if (!screen) return 0;
|
|
|
|
|
|
|
|
|
|
double value= workarea->getScrollbarValue();
|
|
|
|
|
pair<double, double> p = workarea->getScrollbarBounds();
|
|
|
|
|
double max = p.second;
|
|
|
|
|
|
|
|
|
|
if (value == max) return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
float add_value = (text->DefaultHeight()
|
|
|
|
|
+ float(time) * float(time) * 0.125);
|
|
|
|
|
|
|
|
|
|
if (add_value > workarea->height())
|
|
|
|
|
add_value = float(workarea->height() -
|
|
|
|
|
text->DefaultHeight());
|
|
|
|
|
|
|
|
|
|
value += add_value;
|
|
|
|
|
|
|
|
|
|
if (value > max)
|
|
|
|
|
value = max;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
workarea->setScrollbarValue(value);
|
|
|
|
|
|
|
|
|
|
ScrollCB(value);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::ScrollUpOnePage()
|
|
|
|
|
{
|
|
|
|
|
if (buffer_ == 0) return;
|
|
|
|
|
if (!screen) return;
|
|
|
|
|
|
|
|
|
|
long y = screen->first;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
if (!y) return;
|
|
|
|
|
|
|
|
|
|
Row * row = text->GetRowNearY(y);
|
|
|
|
|
|
|
|
|
|
y = y - workarea->height() + row->height;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
workarea->setScrollbarValue(y);
|
|
|
|
|
|
|
|
|
|
ScrollCB(y);
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
void BufferView::ScrollDownOnePage()
|
|
|
|
|
{
|
|
|
|
|
if (buffer_ == 0) return;
|
|
|
|
|
if (!screen) return;
|
|
|
|
|
|
|
|
|
|
long y = screen->first;
|
|
|
|
|
|
|
|
|
|
if (y > text->height - workarea->height())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
y += workarea->height();
|
|
|
|
|
text->GetRowNearY(y);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
workarea->setScrollbarValue(y);
|
|
|
|
|
|
|
|
|
|
ScrollCB(y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::WorkAreaMotionNotify(int x, int y, unsigned int state)
|
|
|
|
|
{
|
|
|
|
|
if (buffer_ == 0 || !screen) return;
|
|
|
|
|
|
|
|
|
|
// Check for inset locking
|
|
|
|
|
if (the_locking_inset) {
|
|
|
|
|
LyXCursor cursor = text->cursor;
|
|
|
|
|
the_locking_inset->
|
|
|
|
|
InsetMotionNotify(x - cursor.x,
|
|
|
|
|
y - cursor.y,
|
|
|
|
|
state);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Only use motion with button 1
|
|
|
|
|
if (!state & Button1MotionMask)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* The selection possible is needed, that only motion events are
|
|
|
|
|
* used, where the bottom press event was on the drawing area too */
|
|
|
|
|
if (selection_possible) {
|
|
|
|
|
screen->HideCursor();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
text->SetCursorFromCoordinates(x, y + screen->first);
|
|
|
|
|
|
|
|
|
|
if (!text->selection)
|
|
|
|
|
update(-3); // Maybe an empty line was deleted
|
|
|
|
|
|
|
|
|
|
text->SetSelection();
|
|
|
|
|
screen->ToggleToggle();
|
|
|
|
|
if (screen->FitCursor())
|
|
|
|
|
updateScrollbar();
|
|
|
|
|
screen->ShowCursor();
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
2000-02-15 14:28:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef USE_PAINTER
|
|
|
|
|
extern int bibitemMaxWidth(Painter &, LyXFont const &);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
#else
|
2000-02-15 14:28:15 +00:00
|
|
|
|
extern int bibitemMaxWidth(LyXFont const &);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Single-click on work area
|
|
|
|
|
void BufferView::WorkAreaButtonPress(int xpos, int ypos, unsigned int button)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-02-15 14:28:15 +00:00
|
|
|
|
last_click_x = -1;
|
|
|
|
|
last_click_y = -1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-15 14:28:15 +00:00
|
|
|
|
if (buffer_ == 0 || !screen) return;
|
2000-01-07 03:42:16 +00:00
|
|
|
|
|
2000-02-15 14:28:15 +00:00
|
|
|
|
Inset * inset_hit = checkInsetHit(xpos, ypos);
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
|
|
|
|
// ok ok, this is a hack.
|
2000-02-10 17:53:36 +00:00
|
|
|
|
if (button == 4 || button == 5) {
|
|
|
|
|
switch (button) {
|
|
|
|
|
case 4:
|
|
|
|
|
ScrollUp(100); // This number is only temporary
|
|
|
|
|
break;
|
|
|
|
|
case 5:
|
|
|
|
|
ScrollDown(100);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (the_locking_inset) {
|
|
|
|
|
// We are in inset locking mode
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
/* Check whether the inset was hit. If not reset mode,
|
|
|
|
|
otherwise give the event to the inset */
|
|
|
|
|
if (inset_hit) {
|
|
|
|
|
the_locking_inset->
|
|
|
|
|
InsetButtonPress(xpos, ypos,
|
|
|
|
|
button);
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
unlockInset(the_locking_inset);
|
1999-12-10 00:07:59 +00:00
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
selection_possible = true;
|
|
|
|
|
screen->HideCursor();
|
|
|
|
|
|
|
|
|
|
// Right button mouse click on a table
|
|
|
|
|
if (button == 3 &&
|
|
|
|
|
(text->cursor.par->table ||
|
|
|
|
|
text->MouseHitInTable(xpos, ypos + screen->first))) {
|
|
|
|
|
// Set the cursor to the press-position
|
|
|
|
|
text->SetCursorFromCoordinates(xpos, ypos + screen->first);
|
|
|
|
|
bool doit = true;
|
|
|
|
|
|
|
|
|
|
// Only show the table popup if the hit is in
|
|
|
|
|
// the table, too
|
|
|
|
|
if (!text->HitInTable(text->cursor.row, xpos))
|
|
|
|
|
doit = false;
|
|
|
|
|
|
|
|
|
|
// Hit above or below the table?
|
|
|
|
|
if (doit) {
|
|
|
|
|
if (!text->selection) {
|
|
|
|
|
screen->ToggleSelection();
|
|
|
|
|
text->ClearSelection();
|
|
|
|
|
text->FullRebreak();
|
|
|
|
|
screen->Update();
|
|
|
|
|
updateScrollbar();
|
|
|
|
|
}
|
|
|
|
|
// Popup table popup when on a table.
|
|
|
|
|
// This is obviously temporary, since we
|
|
|
|
|
// should be able to popup various
|
|
|
|
|
// context-sensitive-menus with the
|
|
|
|
|
// the right mouse. So this should be done more
|
|
|
|
|
// general in the future. Matthias.
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
owner_->getLyXFunc()
|
|
|
|
|
->Dispatch(LFUN_LAYOUT_TABLE,
|
|
|
|
|
"true");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int screen_first = screen->first;
|
|
|
|
|
|
|
|
|
|
// Middle button press pastes if we have a selection
|
|
|
|
|
bool paste_internally = false;
|
|
|
|
|
if (button == 2
|
|
|
|
|
&& text->selection) {
|
|
|
|
|
owner_->getLyXFunc()->Dispatch(LFUN_COPY);
|
|
|
|
|
paste_internally = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Clear the selection
|
|
|
|
|
screen->ToggleSelection();
|
|
|
|
|
text->ClearSelection();
|
|
|
|
|
text->FullRebreak();
|
|
|
|
|
screen->Update();
|
|
|
|
|
updateScrollbar();
|
|
|
|
|
|
|
|
|
|
// Single left click in math inset?
|
|
|
|
|
if (inset_hit != 0 && inset_hit->Editable() == 2) {
|
|
|
|
|
// Highly editable inset, like math
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
owner_->updateLayoutChoice();
|
|
|
|
|
owner_->getMiniBuffer()->Set(inset_hit->EditMessage());
|
|
|
|
|
inset_hit->Edit(xpos, ypos);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Right click on a footnote flag opens float menu
|
|
|
|
|
if (button == 3) {
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
text->SetCursorFromCoordinates(xpos, ypos + screen_first);
|
|
|
|
|
text->FinishUndo();
|
|
|
|
|
text->sel_cursor = text->cursor;
|
|
|
|
|
text->cursor.x_fix = text->cursor.x;
|
|
|
|
|
|
|
|
|
|
owner_->updateLayoutChoice();
|
|
|
|
|
if (screen->FitCursor()){
|
|
|
|
|
updateScrollbar();
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Insert primary selection with middle mouse
|
|
|
|
|
// if there is a local selection in the current buffer,
|
|
|
|
|
// insert this
|
|
|
|
|
if (button == 2) {
|
|
|
|
|
if (paste_internally)
|
|
|
|
|
owner_->getLyXFunc()->Dispatch(LFUN_PASTE);
|
|
|
|
|
else
|
|
|
|
|
owner_->getLyXFunc()->Dispatch(LFUN_PASTESELECTION,
|
|
|
|
|
"paragraph");
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::WorkAreaButtonRelease(int x, int y, unsigned int button)
|
|
|
|
|
{
|
|
|
|
|
if (buffer_ == 0 || screen == 0) return;
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
// If we hit an inset, we have the inset coordinates in these
|
|
|
|
|
// and inset_hit points to the inset. If we do not hit an
|
|
|
|
|
// inset, inset_hit is 0, and inset_x == x, inset_y == y.
|
|
|
|
|
Inset * inset_hit = checkInsetHit(x, y);
|
|
|
|
|
|
|
|
|
|
if (the_locking_inset) {
|
|
|
|
|
// We are in inset locking mode.
|
1999-12-16 06:43:25 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
/* LyX does a kind of work-area grabbing for insets.
|
|
|
|
|
Only a ButtonPress Event outside the inset will
|
|
|
|
|
force a InsetUnlock. */
|
|
|
|
|
the_locking_inset->
|
|
|
|
|
InsetButtonRelease(x, x, button);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
if (text->cursor.par->table) {
|
|
|
|
|
int cell = text->
|
|
|
|
|
NumberOfCell(text->cursor.par,
|
|
|
|
|
text->cursor.pos);
|
|
|
|
|
if (text->cursor.par->table->IsContRow(cell) &&
|
|
|
|
|
text->cursor.par->table->
|
|
|
|
|
CellHasContRow(text->cursor.par->table->
|
|
|
|
|
GetCellAbove(cell))<0) {
|
|
|
|
|
text->CursorUp();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (button >= 2) return;
|
|
|
|
|
|
|
|
|
|
SetState();
|
|
|
|
|
owner_->getMiniBuffer()->Set(CurrentState());
|
|
|
|
|
|
|
|
|
|
// Did we hit an editable inset?
|
|
|
|
|
if (inset_hit != 0) {
|
|
|
|
|
// Inset like error, notes and figures
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
|
#warning fix this proper in 0.13
|
|
|
|
|
#endif
|
|
|
|
|
// Following a ref shouldn't issue
|
|
|
|
|
// a push on the undo-stack
|
|
|
|
|
// anylonger, now that we have
|
|
|
|
|
// keybindings for following
|
|
|
|
|
// references and returning from
|
|
|
|
|
// references. IMHO though, it
|
|
|
|
|
// should be the inset's own business
|
|
|
|
|
// to push or not push on the undo
|
|
|
|
|
// stack. They don't *have* to
|
|
|
|
|
// alter the document...
|
|
|
|
|
// (Joacim)
|
|
|
|
|
// ...or maybe the SetCursorParUndo()
|
|
|
|
|
// below isn't necessary at all anylonger?
|
|
|
|
|
if (inset_hit->LyxCode() == Inset::REF_CODE) {
|
|
|
|
|
text->SetCursorParUndo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
owner_->getMiniBuffer()->Set(inset_hit->EditMessage());
|
|
|
|
|
inset_hit->Edit(x, y);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// check whether we want to open a float
|
|
|
|
|
if (text) {
|
|
|
|
|
bool hit = false;
|
|
|
|
|
char c = ' ';
|
|
|
|
|
if (text->cursor.pos <
|
|
|
|
|
text->cursor.par->Last()) {
|
|
|
|
|
c = text->cursor.par->
|
|
|
|
|
GetChar(text->cursor.pos);
|
|
|
|
|
}
|
|
|
|
|
if (c == LyXParagraph::META_FOOTNOTE
|
|
|
|
|
|| c == LyXParagraph::META_MARGIN
|
|
|
|
|
|| c == LyXParagraph::META_FIG
|
|
|
|
|
|| c == LyXParagraph::META_TAB
|
|
|
|
|
|| c == LyXParagraph::META_WIDE_FIG
|
|
|
|
|
|| c == LyXParagraph::META_WIDE_TAB
|
|
|
|
|
|| c == LyXParagraph::META_ALGORITHM){
|
|
|
|
|
hit = true;
|
|
|
|
|
} else if (text->cursor.pos - 1 >= 0) {
|
|
|
|
|
c = text->cursor.par->
|
|
|
|
|
GetChar(text->cursor.pos - 1);
|
|
|
|
|
if (c == LyXParagraph::META_FOOTNOTE
|
|
|
|
|
|| c == LyXParagraph::META_MARGIN
|
|
|
|
|
|| c == LyXParagraph::META_FIG
|
|
|
|
|
|| c == LyXParagraph::META_TAB
|
|
|
|
|
|| c == LyXParagraph::META_WIDE_FIG
|
|
|
|
|
|| c == LyXParagraph::META_WIDE_TAB
|
|
|
|
|
|| c == LyXParagraph::META_ALGORITHM){
|
|
|
|
|
// We are one step too far to the right
|
|
|
|
|
text->CursorLeft();
|
|
|
|
|
hit = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (hit == true) {
|
|
|
|
|
toggleFloat();
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Do we want to close a float? (click on the float-label)
|
|
|
|
|
if (text->cursor.row->par->footnoteflag ==
|
|
|
|
|
LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
|
//&& text->cursor.pos == 0
|
|
|
|
|
&& text->cursor.row->previous &&
|
|
|
|
|
text->cursor.row->previous->par->
|
|
|
|
|
footnoteflag != LyXParagraph::OPEN_FOOTNOTE){
|
|
|
|
|
LyXFont font (LyXFont::ALL_SANE);
|
|
|
|
|
font.setSize(LyXFont::SIZE_FOOTNOTE);
|
|
|
|
|
|
|
|
|
|
int box_x = 20; // LYX_PAPER_MARGIN;
|
|
|
|
|
box_x += font.textWidth(" wide-tab ", 10);
|
|
|
|
|
|
|
|
|
|
int screen_first = screen->first;
|
|
|
|
|
|
|
|
|
|
if (x < box_x
|
|
|
|
|
&& y + screen_first > text->cursor.y -
|
|
|
|
|
text->cursor.row->baseline
|
|
|
|
|
&& y + screen_first < text->cursor.y -
|
|
|
|
|
text->cursor.row->baseline
|
|
|
|
|
+ font.maxAscent() * 1.2 + font.maxDescent() * 1.2) {
|
|
|
|
|
toggleFloat();
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Maybe we want to edit a bibitem ale970302
|
|
|
|
|
#ifdef USE_PAINTER
|
|
|
|
|
if (text->cursor.par->bibkey && x < 20 +
|
|
|
|
|
bibitemMaxWidth(painter(),
|
|
|
|
|
textclasslist
|
|
|
|
|
.TextClass(buffer_->
|
|
|
|
|
params.textclass).defaultfont())) {
|
|
|
|
|
text->cursor.par->bibkey->Edit(0, 0);
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
if (text->cursor.par->bibkey && x < 20 +
|
|
|
|
|
bibitemMaxWidth(textclasslist
|
|
|
|
|
.TextClass(buffer_->
|
|
|
|
|
params.textclass).defaultfont())) {
|
|
|
|
|
text->cursor.par->bibkey->Edit(0, 0);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Returns an inset if inset was hit. 0 otherwise.
|
|
|
|
|
* If hit, the coordinates are changed relative to the inset.
|
|
|
|
|
* Otherwise coordinates are not changed, and false is returned.
|
|
|
|
|
*/
|
2000-02-10 17:53:36 +00:00
|
|
|
|
#ifdef USE_PAINTER
|
|
|
|
|
Inset * BufferView::checkInsetHit(int & x, int & y)
|
|
|
|
|
{
|
|
|
|
|
if (!getScreen())
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
int y_tmp = y + getScreen()->first;
|
|
|
|
|
|
|
|
|
|
LyXCursor & cursor = text->cursor;
|
|
|
|
|
LyXDirection direction = text->real_current_font.getFontDirection();
|
|
|
|
|
|
|
|
|
|
if (cursor.pos < cursor.par->Last()
|
|
|
|
|
&& cursor.par->GetChar(cursor.pos) == LyXParagraph::META_INSET
|
|
|
|
|
&& cursor.par->GetInset(cursor.pos)
|
|
|
|
|
&& cursor.par->GetInset(cursor.pos)->Editable()) {
|
|
|
|
|
|
|
|
|
|
// Check whether the inset really was hit
|
|
|
|
|
Inset * tmpinset = cursor.par->GetInset(cursor.pos);
|
|
|
|
|
LyXFont font = text->GetFont(cursor.par, cursor.pos);
|
|
|
|
|
int start_x, end_x;
|
|
|
|
|
if (direction == LYX_DIR_LEFT_TO_RIGHT) {
|
|
|
|
|
start_x = cursor.x;
|
|
|
|
|
end_x = cursor.x + tmpinset->width(painter(), font);
|
|
|
|
|
} else {
|
|
|
|
|
start_x = cursor.x - tmpinset->width(painter(), font);
|
|
|
|
|
end_x = cursor.x;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (x > start_x && x < end_x
|
|
|
|
|
&& y_tmp > cursor.y - tmpinset->ascent(painter(), font)
|
|
|
|
|
&& y_tmp < cursor.y + tmpinset->descent(painter(), font)) {
|
|
|
|
|
x = x - start_x;
|
|
|
|
|
// The origin of an inset is on the baseline
|
|
|
|
|
y = y_tmp - (cursor.y);
|
|
|
|
|
return tmpinset;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (cursor.pos - 1 >= 0
|
|
|
|
|
&& cursor.par->GetChar(cursor.pos - 1) == LyXParagraph::META_INSET
|
|
|
|
|
&& cursor.par->GetInset(cursor.pos - 1)
|
|
|
|
|
&& cursor.par->GetInset(cursor.pos - 1)->Editable()) {
|
|
|
|
|
text->CursorLeft();
|
|
|
|
|
Inset * tmpinset = cursor.par->GetInset(cursor.pos);
|
|
|
|
|
LyXFont font = text->GetFont(cursor.par, cursor.pos);
|
|
|
|
|
int start_x, end_x;
|
|
|
|
|
if (direction == LYX_DIR_LEFT_TO_RIGHT) {
|
|
|
|
|
start_x = cursor.x;
|
|
|
|
|
end_x = cursor.x + tmpinset->width(painter(), font);
|
|
|
|
|
} else {
|
|
|
|
|
start_x = cursor.x - tmpinset->width(painter(), font);
|
|
|
|
|
end_x = cursor.x;
|
|
|
|
|
}
|
|
|
|
|
if (x > start_x && x < end_x
|
|
|
|
|
&& y_tmp > cursor.y - tmpinset->ascent(painter(), font)
|
|
|
|
|
&& y_tmp < cursor.y + tmpinset->descent(painter(), font)) {
|
|
|
|
|
x = x - start_x;
|
|
|
|
|
// The origin of an inset is on the baseline
|
|
|
|
|
y = y_tmp - (cursor.y);
|
|
|
|
|
return tmpinset;
|
|
|
|
|
} else {
|
|
|
|
|
text->CursorRight();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
#else
|
1999-12-10 00:07:59 +00:00
|
|
|
|
Inset * BufferView::checkInsetHit(int & x, int & y)
|
|
|
|
|
{
|
|
|
|
|
if (!getScreen())
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
int y_tmp = y + getScreen()->first;
|
|
|
|
|
|
2000-02-03 19:51:27 +00:00
|
|
|
|
LyXCursor & cursor = text->cursor;
|
2000-02-04 09:38:32 +00:00
|
|
|
|
LyXDirection direction = text->real_current_font.getFontDirection();
|
2000-02-03 19:51:27 +00:00
|
|
|
|
|
|
|
|
|
if (cursor.pos < cursor.par->Last()
|
1999-12-10 00:07:59 +00:00
|
|
|
|
&& cursor.par->GetChar(cursor.pos) == LyXParagraph::META_INSET
|
|
|
|
|
&& cursor.par->GetInset(cursor.pos)
|
|
|
|
|
&& cursor.par->GetInset(cursor.pos)->Editable()) {
|
|
|
|
|
|
|
|
|
|
// Check whether the inset really was hit
|
|
|
|
|
Inset * tmpinset = cursor.par->GetInset(cursor.pos);
|
|
|
|
|
LyXFont font = text->GetFont(cursor.par, cursor.pos);
|
2000-02-03 19:51:27 +00:00
|
|
|
|
int start_x, end_x;
|
|
|
|
|
if (direction == LYX_DIR_LEFT_TO_RIGHT) {
|
|
|
|
|
start_x = cursor.x;
|
|
|
|
|
end_x = cursor.x + tmpinset->Width(font);
|
|
|
|
|
} else {
|
|
|
|
|
start_x = cursor.x - tmpinset->Width(font);
|
|
|
|
|
end_x = cursor.x;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (x > start_x && x < end_x
|
1999-12-10 00:07:59 +00:00
|
|
|
|
&& y_tmp > cursor.y - tmpinset->Ascent(font)
|
|
|
|
|
&& y_tmp < cursor.y + tmpinset->Descent(font)) {
|
2000-02-03 19:51:27 +00:00
|
|
|
|
x = x - start_x;
|
1999-12-10 00:07:59 +00:00
|
|
|
|
// The origin of an inset is on the baseline
|
|
|
|
|
y = y_tmp - (cursor.y);
|
|
|
|
|
return tmpinset;
|
|
|
|
|
}
|
2000-02-03 19:51:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (cursor.pos - 1 >= 0
|
1999-12-10 00:07:59 +00:00
|
|
|
|
&& cursor.par->GetChar(cursor.pos - 1) == LyXParagraph::META_INSET
|
|
|
|
|
&& cursor.par->GetInset(cursor.pos - 1)
|
|
|
|
|
&& cursor.par->GetInset(cursor.pos - 1)->Editable()) {
|
|
|
|
|
text->CursorLeft();
|
2000-02-03 19:51:27 +00:00
|
|
|
|
Inset * tmpinset = cursor.par->GetInset(cursor.pos);
|
|
|
|
|
LyXFont font = text->GetFont(cursor.par, cursor.pos);
|
|
|
|
|
int start_x, end_x;
|
|
|
|
|
if (direction == LYX_DIR_LEFT_TO_RIGHT) {
|
|
|
|
|
start_x = cursor.x;
|
|
|
|
|
end_x = cursor.x + tmpinset->Width(font);
|
|
|
|
|
} else {
|
|
|
|
|
start_x = cursor.x - tmpinset->Width(font);
|
|
|
|
|
end_x = cursor.x;
|
|
|
|
|
}
|
|
|
|
|
if (x > start_x && x < end_x
|
|
|
|
|
&& y_tmp > cursor.y - tmpinset->Ascent(font)
|
|
|
|
|
&& y_tmp < cursor.y + tmpinset->Descent(font)) {
|
|
|
|
|
x = x - start_x;
|
|
|
|
|
// The origin of an inset is on the baseline
|
|
|
|
|
y = y_tmp - (cursor.y);
|
|
|
|
|
return tmpinset;
|
|
|
|
|
} else {
|
1999-12-10 00:07:59 +00:00
|
|
|
|
text->CursorRight();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-15 14:28:15 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
void BufferView::workAreaExpose()
|
|
|
|
|
{
|
|
|
|
|
// this is a hack to ensure that we only call this through
|
|
|
|
|
// BufferView::redraw().
|
|
|
|
|
//if (!lgb_hack) {
|
|
|
|
|
// redraw();
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
static int work_area_width = -1;
|
|
|
|
|
static int work_area_height = -1;
|
|
|
|
|
|
|
|
|
|
bool widthChange = workarea->workWidth() != work_area_width;
|
|
|
|
|
bool heightChange = workarea->height() != work_area_height;
|
|
|
|
|
|
|
|
|
|
// update from work area
|
|
|
|
|
work_area_width = workarea->workWidth();
|
|
|
|
|
work_area_height = workarea->height();
|
|
|
|
|
if (buffer_ != 0) {
|
|
|
|
|
if (widthChange) {
|
|
|
|
|
// All buffers need a resize
|
|
|
|
|
bufferlist.resize();
|
|
|
|
|
|
|
|
|
|
// Remove all texts from the textcache
|
|
|
|
|
// This is not _really_ what we want to do. What
|
|
|
|
|
// we really want to do is to delete in textcache
|
|
|
|
|
// that does not have a BufferView with matching
|
|
|
|
|
// width, but as long as we have only one BufferView
|
|
|
|
|
// deleting all gives the same result.
|
|
|
|
|
if (lyxerr.debugging())
|
|
|
|
|
textcache.show(lyxerr, "Expose delete all");
|
|
|
|
|
textcache.clear();
|
|
|
|
|
} else if (heightChange) {
|
|
|
|
|
// Rebuild image of current screen
|
|
|
|
|
updateScreen();
|
|
|
|
|
// fitCursor() ensures we don't jump back
|
|
|
|
|
// to the start of the document on vertical
|
|
|
|
|
// resize
|
|
|
|
|
fitCursor();
|
|
|
|
|
|
|
|
|
|
// The main window size has changed, repaint most stuff
|
|
|
|
|
redraw();
|
|
|
|
|
// ...including the minibuffer
|
|
|
|
|
owner_->getMiniBuffer()->Init();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
} else if (screen) screen->Redraw();
|
|
|
|
|
} else {
|
|
|
|
|
// Grey box when we don't have a buffer
|
|
|
|
|
workarea->greyOut();
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
// always make sure that the scrollbar is sane.
|
|
|
|
|
updateScrollbar();
|
|
|
|
|
owner_->updateLayoutChoice();
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Callback for cursor timer
|
1999-11-04 01:40:20 +00:00
|
|
|
|
void BufferView::CursorToggleCB(FL_OBJECT * ob, long)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-16 06:43:25 +00:00
|
|
|
|
BufferView * view = static_cast<BufferView*>(ob->u_vdata);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-19 22:35:36 +00:00
|
|
|
|
// Quite a nice place for asyncron Inset updating, isn't it?
|
|
|
|
|
// Actually no! This is run even if no buffer exist... so (Lgb)
|
1999-11-09 23:52:04 +00:00
|
|
|
|
if (view && !view->buffer_) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
goto set_timer_and_return;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
//<2F>NOTE:
|
1999-12-19 22:35:36 +00:00
|
|
|
|
// On my quest to solve the gs render hangups I am now
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// disabling the SIGHUP completely, and will do a wait
|
|
|
|
|
// now and then instead. If the guess that xforms somehow
|
|
|
|
|
// destroys something is true, this is likely (hopefully)
|
|
|
|
|
// to solve the problem...at least I hope so. Lgb
|
|
|
|
|
|
|
|
|
|
// ...Ok this seems to work...at least it does not make things
|
|
|
|
|
// worse so far. However I still see gs processes that hangs.
|
|
|
|
|
// I would really like to know _why_ they are hanging. Anyway
|
|
|
|
|
// the solution without the SIGCHLD handler seems to be easier
|
|
|
|
|
// to debug.
|
|
|
|
|
|
|
|
|
|
// When attaching gdb to a a running gs that hangs it shows
|
|
|
|
|
// that it is waiting for input(?) Is it possible for us to
|
|
|
|
|
// provide that input somehow? Or figure what it is expecing
|
|
|
|
|
// to read?
|
|
|
|
|
|
|
|
|
|
// One solution is to, after some time, look if there are some
|
|
|
|
|
// old gs processes still running and if there are: kill them
|
|
|
|
|
// and re render.
|
|
|
|
|
|
|
|
|
|
// Another solution is to provide the user an option to rerender
|
|
|
|
|
// a picture. This would, for the picture in question, check if
|
|
|
|
|
// there is a gs running for it, if so kill it, and start a new
|
|
|
|
|
// rendering process.
|
|
|
|
|
|
|
|
|
|
// these comments posted to lyx@via
|
|
|
|
|
{
|
1999-12-16 06:43:25 +00:00
|
|
|
|
int status = 1;
|
|
|
|
|
int pid = waitpid(static_cast<pid_t>(0), &status, WNOHANG);
|
|
|
|
|
if (pid == -1) // error find out what is wrong
|
|
|
|
|
; // ignore it for now.
|
|
|
|
|
else if (pid > 0)
|
|
|
|
|
sigchldhandler(pid, &status);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
if (InsetUpdateList)
|
|
|
|
|
UpdateInsetUpdateList();
|
|
|
|
|
|
|
|
|
|
if (view && !view->screen){
|
|
|
|
|
goto set_timer_and_return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (view->lyx_focus && view->work_area_focus) {
|
2000-01-07 03:42:16 +00:00
|
|
|
|
if (!view->the_locking_inset) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
view->screen->CursorToggle();
|
|
|
|
|
} else {
|
2000-01-07 03:42:16 +00:00
|
|
|
|
view->the_locking_inset->
|
1999-09-27 18:44:28 +00:00
|
|
|
|
ToggleInsetCursor();
|
|
|
|
|
}
|
|
|
|
|
goto set_timer_and_return;
|
|
|
|
|
} else {
|
|
|
|
|
// Make sure that the cursor is visible.
|
2000-01-07 03:42:16 +00:00
|
|
|
|
if (!view->the_locking_inset) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
view->screen->ShowCursor();
|
|
|
|
|
} else {
|
2000-01-07 03:42:16 +00:00
|
|
|
|
if (!view->the_locking_inset->isCursorVisible())
|
|
|
|
|
view->the_locking_inset->
|
1999-09-27 18:44:28 +00:00
|
|
|
|
ToggleInsetCursor();
|
|
|
|
|
}
|
|
|
|
|
// This is only run when work_area_focus or lyx_focus is false.
|
|
|
|
|
Window tmpwin;
|
|
|
|
|
int tmp;
|
|
|
|
|
XGetInputFocus(fl_display, &tmpwin, &tmp);
|
2000-01-25 12:35:27 +00:00
|
|
|
|
// Commenting this out, we have not had problems with this
|
|
|
|
|
// for a long time. We will probably work on this code later
|
|
|
|
|
// and we can reenable this debug code then. Now it only
|
|
|
|
|
// anoying when debugging. (Lgb)
|
|
|
|
|
//if (lyxerr.debugging(Debug::INFO)) {
|
|
|
|
|
// lyxerr << "tmpwin: " << tmpwin
|
|
|
|
|
// << "\nwindow: " << view->owner_->getForm()->window
|
|
|
|
|
// << "\nwork_area_focus: " << view->work_area_focus
|
|
|
|
|
// << "\nlyx_focus : " << view->lyx_focus
|
|
|
|
|
// << endl;
|
|
|
|
|
//}
|
1999-11-09 23:52:04 +00:00
|
|
|
|
if (tmpwin != view->owner_->getForm()->window) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
view->lyx_focus = false;
|
|
|
|
|
goto skip_timer;
|
|
|
|
|
} else {
|
|
|
|
|
view->lyx_focus = true;
|
|
|
|
|
if (!view->work_area_focus)
|
|
|
|
|
goto skip_timer;
|
|
|
|
|
else
|
|
|
|
|
goto set_timer_and_return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set_timer_and_return:
|
|
|
|
|
fl_set_timer(ob, 0.4);
|
|
|
|
|
skip_timer:
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
static
|
|
|
|
|
string fromClipboard(Window win, XEvent * event)
|
|
|
|
|
{
|
|
|
|
|
string strret;
|
|
|
|
|
if (event->xselection.type == XA_STRING
|
|
|
|
|
&& event->xselection.property) {
|
|
|
|
|
Atom tmpatom;
|
|
|
|
|
unsigned long ul1;
|
|
|
|
|
unsigned long ul2;
|
|
|
|
|
unsigned char * uc = 0;
|
|
|
|
|
int tmpint;
|
|
|
|
|
if (XGetWindowProperty(
|
|
|
|
|
event->xselection.display, // display
|
|
|
|
|
win, // w
|
|
|
|
|
event->xselection.property, // property
|
|
|
|
|
0, // long_offset
|
|
|
|
|
0, // logn_length
|
|
|
|
|
False, // delete
|
|
|
|
|
XA_STRING, // req_type
|
|
|
|
|
&tmpatom, // actual_type_return
|
|
|
|
|
&tmpint, // actual_format_return
|
|
|
|
|
&ul1,
|
|
|
|
|
&ul2,
|
|
|
|
|
&uc // prop_return
|
|
|
|
|
) != Success) {
|
|
|
|
|
return strret;
|
|
|
|
|
}
|
|
|
|
|
if (uc) {
|
|
|
|
|
free(uc);
|
|
|
|
|
uc = 0;
|
|
|
|
|
}
|
|
|
|
|
if (XGetWindowProperty(
|
|
|
|
|
event->xselection.display, // display
|
|
|
|
|
win, // w
|
|
|
|
|
event->xselection.property, // property
|
|
|
|
|
0, // long_offset
|
|
|
|
|
ul2/4+1, // long_length
|
|
|
|
|
True, // delete
|
|
|
|
|
XA_STRING, // req_type
|
|
|
|
|
&tmpatom, // actual_type_return
|
|
|
|
|
&tmpint, // actual_format_return
|
|
|
|
|
&ul1, // nitems_return
|
|
|
|
|
&ul2, // bytes_after_return
|
|
|
|
|
&uc // prop_return */
|
|
|
|
|
) != Success) {
|
|
|
|
|
return strret;
|
|
|
|
|
}
|
|
|
|
|
if (uc) {
|
|
|
|
|
strret = reinterpret_cast<char*>(uc);
|
|
|
|
|
free(uc); // yes free!
|
|
|
|
|
uc = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return strret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::WorkAreaSelectionNotify(Window win, XEvent * event)
|
|
|
|
|
{
|
|
|
|
|
if (buffer_ == 0) return;
|
|
|
|
|
|
|
|
|
|
screen->HideCursor();
|
|
|
|
|
beforeChange();
|
|
|
|
|
string clb = fromClipboard(win, event);
|
|
|
|
|
if (!clb.empty()) {
|
|
|
|
|
if (!ascii_type)
|
|
|
|
|
text->InsertStringA(clb.c_str());
|
|
|
|
|
else
|
|
|
|
|
text->InsertStringB(clb.c_str());
|
|
|
|
|
|
|
|
|
|
update(1);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
void BufferView::cursorPrevious()
|
|
|
|
|
{
|
|
|
|
|
if (!text->cursor.row->previous) return;
|
|
|
|
|
|
|
|
|
|
long y = getScreen()->first;
|
|
|
|
|
Row * cursorrow = text->cursor.row;
|
|
|
|
|
text->SetCursorFromCoordinates(text->cursor.x_fix, y);
|
|
|
|
|
text->FinishUndo();
|
|
|
|
|
// This is to allow jumping over large insets
|
|
|
|
|
if ((cursorrow == text->cursor.row))
|
|
|
|
|
text->CursorUp();
|
|
|
|
|
|
|
|
|
|
if (text->cursor.row->height < workarea->height())
|
|
|
|
|
getScreen()->Draw(text->cursor.y
|
|
|
|
|
- text->cursor.row->baseline
|
|
|
|
|
+ text->cursor.row->height
|
|
|
|
|
- workarea->height() + 1 );
|
|
|
|
|
}
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
void BufferView::cursorNext()
|
|
|
|
|
{
|
|
|
|
|
if (!text->cursor.row->next) return;
|
|
|
|
|
|
|
|
|
|
long y = getScreen()->first;
|
|
|
|
|
text->GetRowNearY(y);
|
|
|
|
|
Row * cursorrow = text->cursor.row;
|
|
|
|
|
text->SetCursorFromCoordinates(text->cursor.x_fix, y
|
|
|
|
|
+ workarea->height());
|
|
|
|
|
text->FinishUndo();
|
|
|
|
|
// This is to allow jumping over large insets
|
|
|
|
|
if ((cursorrow == text->cursor.row))
|
|
|
|
|
text->CursorDown();
|
|
|
|
|
|
|
|
|
|
if (text->cursor.row->height < workarea->height())
|
|
|
|
|
getScreen()->Draw(text->cursor.y
|
|
|
|
|
- text->cursor.row->baseline);
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::available() const
|
|
|
|
|
{
|
1999-12-10 00:07:59 +00:00
|
|
|
|
if (buffer_ && text) return true;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-07 03:42:16 +00:00
|
|
|
|
void BufferView::beforeChange()
|
|
|
|
|
{
|
|
|
|
|
getScreen()->ToggleSelection();
|
|
|
|
|
text->ClearSelection();
|
|
|
|
|
FreeUpdateTimer();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void BufferView::savePosition()
|
|
|
|
|
{
|
1999-12-10 00:07:59 +00:00
|
|
|
|
backstack.push(buffer()->fileName(),
|
1999-12-16 06:43:25 +00:00
|
|
|
|
text->cursor.x,
|
|
|
|
|
text->cursor.y);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::restorePosition()
|
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (backstack.empty()) return;
|
1999-10-25 18:52:23 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
int x, y;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
string fname = backstack.pop(&x, &y);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-07 03:42:16 +00:00
|
|
|
|
beforeChange();
|
1999-12-16 06:43:25 +00:00
|
|
|
|
Buffer * b = bufferlist.exists(fname) ?
|
|
|
|
|
bufferlist.getBuffer(fname) :
|
1999-09-27 18:44:28 +00:00
|
|
|
|
bufferlist.loadLyXFile(fname); // don't ask, just load it
|
1999-11-09 23:52:04 +00:00
|
|
|
|
buffer(b);
|
1999-12-10 00:07:59 +00:00
|
|
|
|
text->SetCursorFromCoordinates(x, y);
|
|
|
|
|
update(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::update(signed char f)
|
|
|
|
|
{
|
|
|
|
|
owner()->updateLayoutChoice();
|
|
|
|
|
|
|
|
|
|
if (!text->selection && f > -3)
|
|
|
|
|
text->sel_cursor = text->cursor;
|
|
|
|
|
|
|
|
|
|
FreeUpdateTimer();
|
|
|
|
|
text->FullRebreak();
|
|
|
|
|
|
|
|
|
|
update();
|
|
|
|
|
|
|
|
|
|
if (f != 3 && f != -3) {
|
|
|
|
|
fitCursor();
|
|
|
|
|
updateScrollbar();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (f == 1 || f == -1) {
|
|
|
|
|
if (buffer()->isLyxClean()) {
|
|
|
|
|
buffer()->markDirty();
|
|
|
|
|
owner()->getMiniBuffer()->setTimer(4);
|
|
|
|
|
} else {
|
|
|
|
|
buffer()->markDirty();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-06 02:44:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::smallUpdate(signed char f)
|
|
|
|
|
{
|
|
|
|
|
getScreen()->SmallUpdate();
|
|
|
|
|
if (getScreen()->TopCursorVisible()
|
|
|
|
|
!= getScreen()->first) {
|
|
|
|
|
update(f);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fitCursor();
|
|
|
|
|
updateScrollbar();
|
|
|
|
|
|
|
|
|
|
if (!text->selection)
|
|
|
|
|
text->sel_cursor = text->cursor;
|
|
|
|
|
|
|
|
|
|
if (f == 1 || f == -1) {
|
|
|
|
|
if (buffer()->isLyxClean()) {
|
|
|
|
|
buffer()->markDirty();
|
|
|
|
|
owner()->getMiniBuffer()->setTimer(4);
|
|
|
|
|
} else {
|
|
|
|
|
buffer()->markDirty();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-07 03:42:16 +00:00
|
|
|
|
|
2000-02-03 19:51:27 +00:00
|
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
|
void BufferView::SetState()
|
|
|
|
|
{
|
2000-02-03 19:51:27 +00:00
|
|
|
|
if (!lyxrc->rtl_support)
|
|
|
|
|
return;
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
|
|
if (text->real_current_font.getFontDirection()
|
2000-02-03 19:51:27 +00:00
|
|
|
|
== LYX_DIR_LEFT_TO_RIGHT) {
|
|
|
|
|
if (!owner_->getIntl()->primarykeymap)
|
|
|
|
|
owner_->getIntl()->KeyMapPrim();
|
|
|
|
|
} else {
|
|
|
|
|
if (owner_->getIntl()->primarykeymap)
|
|
|
|
|
owner_->getIntl()->KeyMapSec();
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-07 03:42:16 +00:00
|
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
2000-01-07 03:42:16 +00:00
|
|
|
|
void BufferView::insetSleep()
|
|
|
|
|
{
|
|
|
|
|
if (the_locking_inset && !inset_slept) {
|
|
|
|
|
the_locking_inset->GetCursorPos(slx, sly);
|
|
|
|
|
the_locking_inset->InsetUnlock();
|
|
|
|
|
inset_slept = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::insetWakeup()
|
|
|
|
|
{
|
|
|
|
|
if (the_locking_inset && inset_slept) {
|
|
|
|
|
the_locking_inset->Edit(slx, sly);
|
|
|
|
|
inset_slept = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::insetUnlock()
|
|
|
|
|
{
|
|
|
|
|
if (the_locking_inset) {
|
|
|
|
|
if (!inset_slept) the_locking_inset->InsetUnlock();
|
|
|
|
|
the_locking_inset = 0;
|
|
|
|
|
text->FinishUndo();
|
|
|
|
|
inset_slept = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::focus() const
|
|
|
|
|
{
|
|
|
|
|
return workarea->hasFocus();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::focus(bool f)
|
|
|
|
|
{
|
|
|
|
|
if (f) workarea->setFocus();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::active() const
|
|
|
|
|
{
|
|
|
|
|
return workarea->active();
|
|
|
|
|
}
|