2000-07-24 13:53:19 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-07-24 13:53:19 +00:00
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
2000-04-12 15:11:29 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2000-04-12 15:11:29 +00:00
|
|
|
#include "bufferview_funcs.h"
|
|
|
|
#include "LyXView.h"
|
|
|
|
#include "BufferView.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "paragraph.h"
|
2000-04-12 15:11:29 +00:00
|
|
|
#include "lyxfont.h"
|
|
|
|
#include "lyx_gui_misc.h"
|
|
|
|
#include "lyxtext.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "lyx_cb.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
#include "language.h"
|
2001-04-17 15:15:59 +00:00
|
|
|
#include "gettext.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "ParagraphParameters.h"
|
2000-04-12 15:11:29 +00:00
|
|
|
|
|
|
|
void Emph(BufferView * bv)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setEmph(LyXFont::TOGGLE);
|
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Bold(BufferView * bv)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setSeries(LyXFont::BOLD_SERIES);
|
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Noun(BufferView * bv)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setNoun(LyXFont::TOGGLE);
|
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-09 12:30:52 +00:00
|
|
|
void Number(BufferView * bv)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setNumber(LyXFont::TOGGLE);
|
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
2000-04-12 15:11:29 +00:00
|
|
|
|
|
|
|
void Lang(BufferView * bv, string const & l)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
2000-10-10 12:36:36 +00:00
|
|
|
Language const * lang = languages.getLanguage(l);
|
|
|
|
if (lang) {
|
|
|
|
font.setLanguage(lang);
|
2000-04-12 15:11:29 +00:00
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
} else
|
|
|
|
WriteAlert(_("Error! unknown language"),l);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Tex(BufferView * bv)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setLatex (LyXFont::TOGGLE);
|
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Change environment depth.
|
|
|
|
// if decInc >= 0, increment depth
|
|
|
|
// if decInc < 0, decrement depth
|
2000-12-22 14:44:29 +00:00
|
|
|
void changeDepth(BufferView * bv, LyXText * text, int decInc)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
2000-12-22 14:44:29 +00:00
|
|
|
if (!bv->available() || !text)
|
|
|
|
return;
|
2000-04-12 15:11:29 +00:00
|
|
|
|
|
|
|
bv->hideCursor();
|
2001-02-14 08:38:21 +00:00
|
|
|
bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR);
|
2000-04-12 15:11:29 +00:00
|
|
|
if (decInc >= 0)
|
2001-06-25 00:06:33 +00:00
|
|
|
text->incDepth(bv);
|
2000-04-12 15:11:29 +00:00
|
|
|
else
|
2001-06-25 00:06:33 +00:00
|
|
|
text->decDepth(bv);
|
2000-12-22 14:44:29 +00:00
|
|
|
if (text->inset_owner)
|
|
|
|
bv->updateInset((Inset *)text->inset_owner, true);
|
2001-02-14 08:38:21 +00:00
|
|
|
bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2001-04-24 17:33:01 +00:00
|
|
|
bv->owner()->message(_("Changed environment depth "
|
|
|
|
"(in possible range, maybe not)"));
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// How should this actually work? Should it prohibit input in all BufferViews,
|
|
|
|
// or just in the current one? If "just the current one", then it should be
|
|
|
|
// placed in BufferView. If "all BufferViews" then LyXGUI (I think) should
|
|
|
|
// run "ProhibitInput" on all LyXViews which will run prohibitInput on all
|
|
|
|
// BufferViews. Or is it perhaps just the (input in) BufferViews in the
|
|
|
|
// current LyxView that should be prohibited (Lgb) (This applies to
|
|
|
|
// "AllowInput" as well.)
|
|
|
|
void ProhibitInput(BufferView * bv)
|
|
|
|
{
|
|
|
|
bv->hideCursor();
|
|
|
|
|
|
|
|
static Cursor cursor;
|
|
|
|
static bool cursor_undefined = true;
|
|
|
|
|
|
|
|
if (cursor_undefined){
|
2000-10-11 21:06:43 +00:00
|
|
|
cursor = XCreateFontCursor(fl_get_display(), XC_watch);
|
|
|
|
XFlush(fl_get_display());
|
2000-04-12 15:11:29 +00:00
|
|
|
cursor_undefined = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set the cursor to the watch for all forms and the canvas */
|
2000-10-11 21:06:43 +00:00
|
|
|
XDefineCursor(fl_get_display(), bv->owner()->getForm()->window,
|
2000-04-12 15:11:29 +00:00
|
|
|
cursor);
|
2000-09-26 13:54:57 +00:00
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
XFlush(fl_get_display());
|
2000-04-12 15:11:29 +00:00
|
|
|
fl_deactivate_all_forms();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AllowInput(BufferView * bv)
|
|
|
|
{
|
|
|
|
/* reset the cursor from the watch for all forms and the canvas */
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
XUndefineCursor(fl_get_display(), bv->owner()->getForm()->window);
|
2000-09-26 13:54:57 +00:00
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
XFlush(fl_get_display());
|
2000-04-12 15:11:29 +00:00
|
|
|
fl_activate_all_forms();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Code(BufferView * bv)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setFamily(LyXFont::TYPEWRITER_FAMILY); // no good
|
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Sans(BufferView * bv)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setFamily(LyXFont::SANS_FAMILY);
|
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Roman(BufferView * bv)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setFamily(LyXFont::ROMAN_FAMILY);
|
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void StyleReset(BufferView * bv)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_INHERIT, ignore_language);
|
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Underline(BufferView * bv)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setUnderbar(LyXFont::TOGGLE);
|
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FontSize(BufferView * bv, string const & size)
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
2000-11-28 15:54:29 +00:00
|
|
|
font.setLyXSize(size);
|
2000-04-12 15:11:29 +00:00
|
|
|
ToggleAndShow(bv, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-20 13:07:12 +00:00
|
|
|
// Returns the current font and depth as a message.
|
2000-09-14 17:53:12 +00:00
|
|
|
string const CurrentState(BufferView * bv)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
2001-06-14 17:58:49 +00:00
|
|
|
ostringstream state;
|
|
|
|
|
2000-04-12 15:11:29 +00:00
|
|
|
if (bv->available()) {
|
|
|
|
// I think we should only show changes from the default
|
|
|
|
// font. (Asger)
|
2000-12-17 06:09:35 +00:00
|
|
|
LyXText * text = bv->getLyXText();
|
2000-04-12 15:11:29 +00:00
|
|
|
Buffer * buffer = bv->buffer();
|
2000-08-17 15:20:30 +00:00
|
|
|
LyXFont font = text->real_current_font;
|
2000-04-14 19:20:33 +00:00
|
|
|
LyXFont const & defaultfont =
|
|
|
|
textclasslist
|
|
|
|
.TextClass(buffer->params.textclass)
|
|
|
|
.defaultfont();
|
2000-04-12 15:11:29 +00:00
|
|
|
font.reduce(defaultfont);
|
2001-06-14 17:58:49 +00:00
|
|
|
|
|
|
|
state << _("Font:") << ' '
|
|
|
|
<< font.stateText(&buffer->params);
|
|
|
|
|
2000-04-12 15:11:29 +00:00
|
|
|
// The paragraph depth
|
2001-06-25 00:06:33 +00:00
|
|
|
int depth = text->getDepth();
|
2001-06-14 17:58:49 +00:00
|
|
|
if (depth > 0)
|
|
|
|
state << _(", Depth: ") << depth;
|
|
|
|
|
2000-04-12 15:11:29 +00:00
|
|
|
// The paragraph spacing, but only if different from
|
|
|
|
// buffer spacing.
|
2001-06-25 00:06:33 +00:00
|
|
|
if (!text->cursor.par()->params().spacing().isDefault()) {
|
2000-04-12 15:11:29 +00:00
|
|
|
Spacing::Space cur_space =
|
2001-06-25 00:06:33 +00:00
|
|
|
text->cursor.par()->params().spacing().getSpace();
|
2001-06-14 17:58:49 +00:00
|
|
|
state << _(", Spacing: ");
|
|
|
|
|
2000-04-12 15:11:29 +00:00
|
|
|
switch (cur_space) {
|
|
|
|
case Spacing::Single:
|
2001-06-14 17:58:49 +00:00
|
|
|
state << _("Single");
|
|
|
|
|
2000-04-12 15:11:29 +00:00
|
|
|
break;
|
|
|
|
case Spacing::Onehalf:
|
2001-06-14 17:58:49 +00:00
|
|
|
state << _("Onehalf");
|
2000-04-12 15:11:29 +00:00
|
|
|
break;
|
|
|
|
case Spacing::Double:
|
2001-06-14 17:58:49 +00:00
|
|
|
state << _("Double");
|
2000-04-12 15:11:29 +00:00
|
|
|
break;
|
|
|
|
case Spacing::Other:
|
2001-06-14 17:58:49 +00:00
|
|
|
state << _("Other (")
|
2001-06-25 00:06:33 +00:00
|
|
|
<< text->cursor.par()->params().spacing().getValue()
|
2001-06-14 17:58:49 +00:00
|
|
|
<< ")";
|
2000-04-12 15:11:29 +00:00
|
|
|
break;
|
|
|
|
case Spacing::Default:
|
|
|
|
// should never happen, do nothing
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-06-14 17:58:49 +00:00
|
|
|
return state.str().c_str();
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* -------> Does the actual toggle job of the XxxCB() calls above.
|
|
|
|
* Also shows the current font state.
|
|
|
|
*/
|
2001-03-01 15:03:52 +00:00
|
|
|
void ToggleAndShow(BufferView * bv, LyXFont const & font, bool toggleall)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
|
|
|
if (bv->available()) {
|
2001-05-28 15:11:24 +00:00
|
|
|
if (bv->theLockingInset()) {
|
|
|
|
bv->theLockingInset()->SetFont(bv, font, toggleall);
|
|
|
|
return;
|
|
|
|
}
|
2001-02-14 08:38:21 +00:00
|
|
|
LyXText * text = bv->getLyXText();
|
2001-06-12 13:54:04 +00:00
|
|
|
if (!text)
|
|
|
|
return;
|
2001-02-14 08:38:21 +00:00
|
|
|
|
2000-04-12 15:11:29 +00:00
|
|
|
bv->hideCursor();
|
2001-02-14 08:38:21 +00:00
|
|
|
bv->update(text, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
text->toggleFree(bv, font, toggleall);
|
2001-02-14 08:38:21 +00:00
|
|
|
bv->update(text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-05-30 19:31:11 +00:00
|
|
|
|
|
|
|
if (font.language() != ignore_language ||
|
2000-10-09 12:30:52 +00:00
|
|
|
font.latex() != LyXFont::IGNORE ||
|
2001-05-28 15:11:24 +00:00
|
|
|
font.number() != LyXFont::IGNORE)
|
|
|
|
{
|
2000-05-30 19:31:11 +00:00
|
|
|
LyXCursor & cursor = text->cursor;
|
2001-06-25 00:06:33 +00:00
|
|
|
text->computeBidiTables(bv->buffer(), cursor.row());
|
2000-06-08 23:16:16 +00:00
|
|
|
if (cursor.boundary() !=
|
2001-06-25 00:06:33 +00:00
|
|
|
text->isBoundary(bv->buffer(), cursor.par(), cursor.pos(),
|
2000-05-30 19:31:11 +00:00
|
|
|
text->real_current_font) )
|
2001-06-25 00:06:33 +00:00
|
|
|
text->setCursor(bv, cursor.par(), cursor.pos(),
|
2000-06-08 23:16:16 +00:00
|
|
|
false, !cursor.boundary());
|
2000-05-30 19:31:11 +00:00
|
|
|
}
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
}
|