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 "lyxtext.h"
|
|
|
|
#include "buffer.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"
|
2001-12-28 13:26:54 +00:00
|
|
|
#include "lyxtextclasslist.h"
|
2000-04-12 15:11:29 +00:00
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
#include "frontends/Alert.h"
|
|
|
|
|
|
|
|
#include "support/lstrings.h"
|
2001-08-02 18:46:53 +00:00
|
|
|
|
|
|
|
void emph(BufferView * bv)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setEmph(LyXFont::TOGGLE);
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-02 18:46:53 +00:00
|
|
|
void bold(BufferView * bv)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setSeries(LyXFont::BOLD_SERIES);
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-02 18:46:53 +00:00
|
|
|
void noun(BufferView * bv)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setNoun(LyXFont::TOGGLE);
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-02 18:46:53 +00:00
|
|
|
void number(BufferView * bv)
|
2000-10-09 12:30:52 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setNumber(LyXFont::TOGGLE);
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-10-09 12:30:52 +00:00
|
|
|
}
|
2000-04-12 15:11:29 +00:00
|
|
|
|
2001-08-02 18:46:53 +00:00
|
|
|
void lang(BufferView * bv, string const & l)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
2000-10-10 12:36:36 +00:00
|
|
|
Language const * lang = languages.getLanguage(l);
|
|
|
|
if (lang) {
|
|
|
|
font.setLanguage(lang);
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-04-12 15:11:29 +00:00
|
|
|
} else
|
2001-11-26 10:19:58 +00:00
|
|
|
Alert::alert(_("Error! unknown language"),l);
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-02 18:46:53 +00:00
|
|
|
void code(BufferView * bv)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setFamily(LyXFont::TYPEWRITER_FAMILY); // no good
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-02 18:46:53 +00:00
|
|
|
void sans(BufferView * bv)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setFamily(LyXFont::SANS_FAMILY);
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-02 18:46:53 +00:00
|
|
|
void roman(BufferView * bv)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setFamily(LyXFont::ROMAN_FAMILY);
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-02 18:46:53 +00:00
|
|
|
void styleReset(BufferView * bv)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
2001-08-11 18:31:14 +00:00
|
|
|
#ifndef INHERIT_LANG
|
|
|
|
LyXFont font(LyXFont::ALL_INHERIT, ignore_language);
|
|
|
|
#else
|
2001-07-27 12:03:36 +00:00
|
|
|
LyXFont font(LyXFont::ALL_INHERIT);
|
2001-08-11 18:31:14 +00:00
|
|
|
#endif
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-02 18:46:53 +00:00
|
|
|
void underline(BufferView * bv)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
font.setUnderbar(LyXFont::TOGGLE);
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-02 18:46:53 +00:00
|
|
|
void fontSize(BufferView * bv, string const & size)
|
2000-04-12 15:11:29 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
2000-11-28 15:54:29 +00:00
|
|
|
font.setLyXSize(size);
|
2001-08-02 18:46:53 +00:00
|
|
|
toggleAndShow(bv, font);
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-20 13:07:12 +00:00
|
|
|
// Returns the current font and depth as a message.
|
2001-08-02 18:46:53 +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 =
|
2002-03-02 16:39:54 +00:00
|
|
|
textclasslist[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-08-05 22:12:27 +00:00
|
|
|
#if 1
|
|
|
|
state << _(", Paragraph: ") << text->cursor.par()->id();
|
|
|
|
#endif
|
2000-04-12 15:11:29 +00:00
|
|
|
}
|
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-08-02 18:46:53 +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()) {
|
2001-06-28 10:25:20 +00:00
|
|
|
bv->theLockingInset()->setFont(bv, font, toggleall);
|
2001-05-28 15:11:24 +00:00
|
|
|
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 ||
|
2001-11-26 10:19:58 +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(),
|
2002-02-16 15:59:55 +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
|
|
|
}
|
|
|
|
}
|