1999-09-27 18:44:28 +00:00
|
|
|
/*
|
|
|
|
* File: math_symbols.C
|
|
|
|
* Purpose: User interface to math symbols
|
|
|
|
* Author: Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
|
|
|
|
* Created: November 1995
|
|
|
|
* Version: 0.8 28/03/96
|
|
|
|
* Description: Provides a GUI to introduce mathematical
|
|
|
|
* symbols in lyx.
|
|
|
|
*
|
|
|
|
* Dependencies: Xlib, XForms, Lyx
|
|
|
|
*
|
2000-03-09 03:36:48 +00:00
|
|
|
* Copyright: 1995, 1996, Alejandro Aguilar Sierra
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
|
|
|
* You are free to use and modify it under the terms of
|
|
|
|
* the GNU General Public Licence version 2 or later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include XPM_H_LOCATION
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation "math_panel.h"
|
|
|
|
#endif
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#include <algorithm>
|
1999-10-19 15:06:30 +00:00
|
|
|
using std::max;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "lyx_main.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "minibuffer.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "LyXView.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/lstrings.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include "formula.h"
|
|
|
|
|
|
|
|
#include "math_panel.h"
|
|
|
|
#include "math_parser.h"
|
|
|
|
|
|
|
|
extern short greek_kb_flag;
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
extern BufferView * current_view;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/* Bitmaps */
|
|
|
|
#include "greek.xbm"
|
|
|
|
#include "arrows.xbm"
|
|
|
|
#include "brel.xbm"
|
|
|
|
#include "bop.xbm"
|
|
|
|
#include "misc.xbm"
|
|
|
|
#include "varsz.xbm"
|
|
|
|
#include "dots.xbm"
|
|
|
|
|
|
|
|
/* Latex code for those bitmaps */
|
1999-12-01 00:57:31 +00:00
|
|
|
static char const * latex_greek[] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"Gamma", "Delta", "Theta", "Lambda", "Xi", "Pi",
|
|
|
|
"Sigma", "Upsilon", "Phi", "Psi", "Omega",
|
|
|
|
"alpha", "beta", "gamma", "delta", "epsilon", "varepsilon", "zeta",
|
|
|
|
"eta", "theta", "vartheta", "iota", "kappa", "lambda", "mu",
|
|
|
|
"nu", "xi", "pi", "varpi", "rho", "sigma", "varsigma",
|
|
|
|
"tau", "upsilon", "phi", "varphi", "chi", "psi", "omega", ""
|
|
|
|
};
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
static char const * latex_brel[] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"leq", "geq", "equiv", "models",
|
|
|
|
"prec", "succ", "sim", "perp",
|
|
|
|
"preceq", "succeq", "simeq", "mid",
|
|
|
|
"ll", "gg", "asymp", "parallel",
|
|
|
|
"subset", "supset", "approx", "smile",
|
|
|
|
"subseteq", "supseteq", "cong", "frown",
|
|
|
|
"sqsubseteq", "sqsupseteq", "doteq", "neq",
|
|
|
|
"in", "ni", "propto", "notin",
|
|
|
|
"vdash", "dashv", "bowtie", ""
|
|
|
|
};
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
static char const * latex_arrow[] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"downarrow", "leftarrow", "Downarrow", "Leftarrow",
|
|
|
|
"hookleftarrow", "rightarrow", "uparrow", "Rightarrow", "Uparrow",
|
1999-11-15 11:06:41 +00:00
|
|
|
"hookrightarrow", "updownarrow", "Leftrightarrow", "leftharpoonup",
|
1999-09-27 18:44:28 +00:00
|
|
|
"rightharpoonup", "rightleftharpoons", "leftrightarrow", "Updownarrow",
|
|
|
|
"leftharpoondown", "rightharpoondown", "mapsto",
|
|
|
|
"Longleftarrow", "Longrightarrow", "Longleftrightarrow",
|
|
|
|
"longleftrightarrow", "longleftarrow", "longrightarrow", "longmapsto",
|
|
|
|
"nwarrow", "nearrow", "swarrow", "searrow", "",
|
|
|
|
};
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
char const * latex_varsz[] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"sum", "int", "oint",
|
|
|
|
"prod", "coprod", "bigsqcup",
|
|
|
|
"bigotimes", "bigodot", "bigoplus",
|
|
|
|
"bigcap", "bigcup", "biguplus",
|
|
|
|
"bigvee", "bigwedge", ""
|
|
|
|
};
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
static char const * latex_bop[] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"pm", "cap", "diamond", "oplus",
|
|
|
|
"mp", "cup", "bigtriangleup", "ominus",
|
|
|
|
"times", "uplus", "bigtriangledown", "otimes",
|
|
|
|
"div", "sqcap", "triangleright", "oslash",
|
|
|
|
"cdot", "sqcup", "triangleleft", "odot",
|
|
|
|
"star", "vee", "amalg", "bigcirc",
|
|
|
|
"setminus", "wedge", "dagger", "circ",
|
|
|
|
"bullet", "wr", "ddagger", ""
|
|
|
|
};
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
static char const * latex_misc[] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"nabla", "partial", "infty", "prime", "ell",
|
|
|
|
"emptyset", "exists", "forall", "imath", "jmath",
|
|
|
|
"Re", "Im", "aleph", "wp", "hbar",
|
|
|
|
"angle", "top", "bot", "Vert", "neg",
|
|
|
|
"flat", "natural", "sharp", "surd", "triangle",
|
|
|
|
"diamondsuit", "heartsuit", "clubsuit", "spadesuit", ""
|
|
|
|
};
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
static char const * latex_dots[] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
"ldots", "cdots", "vdots", "ddots"
|
|
|
|
};
|
|
|
|
|
|
|
|
static signed char latin2greek[] = {
|
|
|
|
0, 1, 25, 3, 4, 23, 2, 7, 10, 24, 11, 12, 13, 14, -1, 16, 8, 18,
|
|
|
|
19, 21, 22, 17, 27, 15, 26, 6
|
|
|
|
};
|
|
|
|
|
|
|
|
static signed char Latin2Greek[] = {
|
|
|
|
-1, -1, -1, 1, -1, 8, 0, -1, -1, -1, -1, 3, -1, -1, -1,
|
|
|
|
5, 2, -1, 6, -1, 7, -1, 10, 4, 9, -1
|
|
|
|
};
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
extern char const ** mathed_get_pixmap_from_icon(int d);
|
1999-10-19 15:06:30 +00:00
|
|
|
extern "C" void math_cb(FL_OBJECT*, long);
|
1999-12-01 00:57:31 +00:00
|
|
|
static char const ** pixmapFromBitmapData(char const *, int, int);
|
|
|
|
void math_insert_symbol(char const * s);
|
1999-09-27 18:44:28 +00:00
|
|
|
Bool math_insert_greek(char const c);
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
BitmapMenu * BitmapMenu::active = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
BitmapMenu::BitmapMenu(int n, FL_OBJECT * bt, BitmapMenu * prevx): nb(n)
|
|
|
|
{
|
1999-09-27 18:44:28 +00:00
|
|
|
w = h = 0;
|
|
|
|
form = 0;
|
|
|
|
i = 0;
|
1999-12-13 00:05:34 +00:00
|
|
|
ww = 2 * FL_abs(FL_BOUND_WIDTH);
|
1999-09-27 18:44:28 +00:00
|
|
|
x = y = ww;
|
|
|
|
y += 8;
|
|
|
|
bitmap = new FL_OBJECTP[nb];
|
|
|
|
button = bt;
|
|
|
|
button->u_vdata = this;
|
|
|
|
prev = prevx;
|
1999-10-02 16:21:10 +00:00
|
|
|
next = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
if (prev)
|
|
|
|
prev->next = this;
|
|
|
|
}
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
|
|
|
|
BitmapMenu::~BitmapMenu()
|
|
|
|
{
|
2000-02-04 09:38:32 +00:00
|
|
|
delete next;
|
|
|
|
if (form->visible) Hide();
|
|
|
|
fl_free_form(form);
|
|
|
|
delete[] bitmap;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
|
|
|
|
void BitmapMenu::Hide()
|
|
|
|
{
|
1999-09-27 18:44:28 +00:00
|
|
|
fl_hide_form(form);
|
|
|
|
fl_set_button(button, 0);
|
1999-10-02 16:21:10 +00:00
|
|
|
active = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
|
|
|
|
void BitmapMenu::Show()
|
|
|
|
{
|
1999-09-27 18:44:28 +00:00
|
|
|
if (active)
|
|
|
|
active->Hide();
|
|
|
|
active = this;
|
|
|
|
// int x = button->form->x + button->x, y = button->form->y + button->y;
|
|
|
|
// fl_set_form_position(form, x, y + button->h);
|
|
|
|
fl_set_button(button, 1);
|
|
|
|
fl_show_form(form, FL_PLACE_MOUSE, FL_NOBORDER, "");
|
|
|
|
}
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
FL_OBJECT *
|
|
|
|
BitmapMenu::AddBitmap(int id, int nx, int ny, int bw, int bh, unsigned char const * data, Bool vert)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-12-01 00:57:31 +00:00
|
|
|
if (i >= nb)
|
1999-10-02 16:21:10 +00:00
|
|
|
return 0;
|
1999-12-01 00:57:31 +00:00
|
|
|
int wx = bw+ww/2, wy = bh+ww/2;
|
1999-09-27 18:44:28 +00:00
|
|
|
wx += (wx % nx);
|
|
|
|
wy += (wy % ny);
|
1999-12-01 00:57:31 +00:00
|
|
|
FL_OBJECT * obj = fl_create_bmtable(1, x, y, wx, wy, "");
|
1999-09-27 18:44:28 +00:00
|
|
|
fl_set_object_callback(obj, math_cb, id);
|
|
|
|
fl_set_object_lcol(obj, FL_BLUE);
|
|
|
|
fl_set_object_boxtype(obj, FL_UP_BOX);
|
|
|
|
fl_set_bmtable_data(obj, nx, ny, bw, bh, data);
|
|
|
|
if (vert) {
|
|
|
|
y += wy + 8;
|
1999-10-02 16:21:10 +00:00
|
|
|
h = max(y, h);
|
|
|
|
w = max(x + wx + ww, w);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
|
|
|
x += wx + 8;
|
1999-10-02 16:21:10 +00:00
|
|
|
w = max(x, w);
|
|
|
|
h = max(y + wy + ww, h);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
bitmap[i++] = obj;
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitmapMenu::Create()
|
|
|
|
{
|
2000-01-24 18:34:46 +00:00
|
|
|
if (i < nb) {
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr << "Error: Bitmaps not created!" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
form = fl_bgn_form(FL_UP_BOX, w, h);
|
2000-01-24 18:34:46 +00:00
|
|
|
for (i = 0; i < nb; ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
fl_add_object(form, bitmap[i]);
|
|
|
|
bitmap[i]->u_vdata = this;
|
|
|
|
}
|
|
|
|
fl_end_form();
|
1999-10-19 15:06:30 +00:00
|
|
|
fl_register_raw_callback(form, KeyPressMask, C_peek_event);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int BitmapMenu::GetIndex(FL_OBJECT* ob)
|
|
|
|
{
|
1999-11-15 11:06:41 +00:00
|
|
|
if (active == this) {
|
1999-09-27 18:44:28 +00:00
|
|
|
int k = 0;
|
2000-01-24 18:34:46 +00:00
|
|
|
for (i = 0; i < nb; ++i) {
|
1999-11-15 11:06:41 +00:00
|
|
|
if (bitmap[i] == ob)
|
1999-09-27 18:44:28 +00:00
|
|
|
return k+fl_get_bmtable(ob);
|
|
|
|
k += fl_get_bmtable_maxitems(bitmap[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int peek_event(FL_FORM * /*form*/, void *xev)
|
|
|
|
{
|
1999-11-15 11:06:41 +00:00
|
|
|
if (BitmapMenu::active == 0)
|
1999-09-27 18:44:28 +00:00
|
|
|
return 0;
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
if(static_cast<XEvent *>(xev)->type == ButtonPress)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
BitmapMenu::active->Hide();
|
|
|
|
return 1;
|
|
|
|
}
|
1999-12-13 00:05:34 +00:00
|
|
|
if(static_cast<XEvent *>(xev)->type == KeyPress)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
char c[5];
|
|
|
|
KeySym keysym;
|
1999-12-13 00:05:34 +00:00
|
|
|
XLookupString(&static_cast<XEvent *>(xev)->xkey, &c[0], 5, &keysym, 0);
|
1999-11-15 11:06:41 +00:00
|
|
|
if (keysym == XK_Left)
|
1999-09-27 18:44:28 +00:00
|
|
|
BitmapMenu::active->Prev(); else
|
1999-11-15 11:06:41 +00:00
|
|
|
if (keysym == XK_Right)
|
1999-09-27 18:44:28 +00:00
|
|
|
BitmapMenu::active->Next();
|
|
|
|
else
|
|
|
|
BitmapMenu::active->Hide();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
1999-10-19 15:06:30 +00:00
|
|
|
|
|
|
|
// This is just a wrapper.
|
|
|
|
extern "C" int C_peek_event(FL_FORM *form, void *ptr) {
|
1999-11-15 11:06:41 +00:00
|
|
|
return peek_event(form, ptr);
|
1999-10-13 17:32:46 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-10-19 15:06:30 +00:00
|
|
|
|
|
|
|
extern "C" void math_cb(FL_OBJECT* ob, long data)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-02-29 02:19:17 +00:00
|
|
|
BitmapMenu * menu = static_cast<BitmapMenu*>(ob->u_vdata);
|
1999-09-27 18:44:28 +00:00
|
|
|
int i = menu->GetIndex(ob);
|
|
|
|
char const *s = 0;
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
// lyxerr << "data[" << data << "]";
|
1999-09-27 18:44:28 +00:00
|
|
|
if (i<0) return;
|
|
|
|
switch (data) {
|
|
|
|
case MM_GREEK:
|
|
|
|
s = latex_greek[i];
|
|
|
|
break;
|
|
|
|
case MM_ARROW:
|
|
|
|
s = latex_arrow[i];
|
|
|
|
break;
|
|
|
|
case MM_BRELATS:
|
|
|
|
s = latex_brel[i];
|
|
|
|
break;
|
|
|
|
case MM_BOP:
|
|
|
|
s = latex_bop[i];
|
|
|
|
break;
|
|
|
|
case MM_VARSIZE:
|
|
|
|
s = latex_varsz[i];
|
|
|
|
break;
|
|
|
|
case MM_MISC:
|
|
|
|
s = latex_misc[i];
|
|
|
|
break;
|
|
|
|
case MM_DOTS:
|
1999-10-07 18:44:17 +00:00
|
|
|
// lyxerr << "dots[" << latex_dots[i] << " " << i << "]";
|
1999-09-27 18:44:28 +00:00
|
|
|
s = latex_dots[i-29];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s) {
|
|
|
|
if (current_view->available() && lyxrc->display_shortcuts) {
|
1999-12-19 22:35:36 +00:00
|
|
|
current_view->owner()->getMiniBuffer()->Set("Inserting symbol ", s);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
1999-11-09 22:48:46 +00:00
|
|
|
current_view->owner()->getLyXFunc()->Dispatch(LFUN_INSERT_MATH, s);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
if (menu)
|
|
|
|
menu->Hide();
|
|
|
|
}
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
char const ** get_pixmap_from_symbol(char const * arg, int wx, int hx)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-12-01 00:57:31 +00:00
|
|
|
char const ** data = 0;
|
|
|
|
latexkeys * l = in_word_set (arg, strlen(arg));
|
1999-09-27 18:44:28 +00:00
|
|
|
if (!l)
|
1999-10-02 16:21:10 +00:00
|
|
|
return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
switch (l->token) {
|
|
|
|
case LM_TK_FRAC:
|
|
|
|
data = mathed_get_pixmap_from_icon(MM_FRAC);
|
|
|
|
break;
|
|
|
|
case LM_TK_SQRT:
|
|
|
|
data = mathed_get_pixmap_from_icon(MM_SQRT);
|
|
|
|
break;
|
|
|
|
case LM_TK_BIGSYM:
|
|
|
|
case LM_TK_SYM:
|
|
|
|
// I have to use directly the bitmap data since the
|
|
|
|
// bitmap tables are not yet created when this
|
|
|
|
// function is called.
|
|
|
|
data = pixmapFromBitmapData(arg, wx, hx);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool math_insert_greek(char const c)
|
|
|
|
{
|
|
|
|
int i;
|
1999-12-01 00:57:31 +00:00
|
|
|
char const * s= 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
if ('A' <= c && c <= 'Z') {
|
|
|
|
if ((i = Latin2Greek[c - 'A']) >= 0)
|
1999-09-27 18:44:28 +00:00
|
|
|
s = latex_greek[i];
|
|
|
|
}
|
1999-11-15 11:06:41 +00:00
|
|
|
if ('a'<= c && c<= 'z') {
|
|
|
|
if ((i= latin2greek[c - 'a'])>= 0)
|
1999-09-27 18:44:28 +00:00
|
|
|
s = latex_greek[i+11];
|
|
|
|
}
|
|
|
|
if (s) {
|
|
|
|
math_insert_symbol(s);
|
|
|
|
if (greek_kb_flag<2) {
|
|
|
|
greek_kb_flag = 0;
|
2000-01-08 21:02:58 +00:00
|
|
|
current_view->unlockInset(current_view->the_locking_inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
return True;
|
|
|
|
} else
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
2000-01-08 21:02:58 +00:00
|
|
|
|
|
|
|
void math_insert_symbol(char const * s)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
if (current_view->available()) {
|
2000-01-07 03:42:16 +00:00
|
|
|
if (!current_view->the_locking_inset) {
|
1999-11-22 16:19:48 +00:00
|
|
|
InsetFormula * new_inset = new InsetFormula();
|
2000-01-07 03:42:16 +00:00
|
|
|
current_view->beforeChange();
|
2000-01-08 21:02:58 +00:00
|
|
|
current_view->insertInset(new_inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
// Update(1);//BUG
|
2000-02-25 12:06:15 +00:00
|
|
|
new_inset->Edit(current_view, 0, 0, 0);
|
2000-02-22 00:36:17 +00:00
|
|
|
new_inset->InsertSymbol(current_view, s);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else
|
2000-01-07 03:42:16 +00:00
|
|
|
if (current_view->the_locking_inset->LyxCode() == Inset::MATH_CODE)
|
2000-02-22 00:36:17 +00:00
|
|
|
static_cast<InsetFormula*>(current_view->the_locking_inset)->InsertSymbol(current_view, s);
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr << "Math error: attempt to write on a wrong "
|
|
|
|
"class of inset." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-01-08 21:02:58 +00:00
|
|
|
|
1999-11-15 11:06:41 +00:00
|
|
|
BitmapMenu * sym_menu= 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-11-09 22:48:46 +00:00
|
|
|
void create_symbol_menues(FD_panel * symb_form)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-11-09 22:48:46 +00:00
|
|
|
FL_OBJECT * obj;
|
|
|
|
BitmapMenu * menu;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
sym_menu = menu = new BitmapMenu(2, symb_form->greek);
|
|
|
|
obj = menu->AddBitmap(MM_GREEK, 6, 2, Greek_width, Greek_height,
|
|
|
|
Greek_bits);
|
|
|
|
fl_set_bmtable_maxitems(obj, 11);
|
|
|
|
obj = menu->AddBitmap(MM_GREEK, 7, 4, greek_width, greek_height,
|
|
|
|
greek_bits);
|
|
|
|
menu->Create();
|
|
|
|
|
|
|
|
menu = new BitmapMenu(1, symb_form->boperator, menu);
|
|
|
|
obj = menu->AddBitmap(MM_BOP, 4, 8, bop_width, bop_height,
|
|
|
|
bop_bits);
|
|
|
|
fl_set_bmtable_maxitems(obj, 31);
|
|
|
|
menu->Create();
|
|
|
|
|
|
|
|
menu = new BitmapMenu(1, symb_form->brelats, menu);
|
|
|
|
obj = menu->AddBitmap(MM_BRELATS, 4, 9, brel_width, brel_height,
|
|
|
|
brel_bits);
|
|
|
|
fl_set_bmtable_maxitems(obj, 35);
|
|
|
|
menu->Create();
|
|
|
|
|
|
|
|
menu = new BitmapMenu(3, symb_form->arrow, menu);
|
|
|
|
obj = menu->AddBitmap(MM_ARROW, 5, 4, arrow_width, arrow_height,
|
|
|
|
arrow_bits);
|
|
|
|
obj = menu->AddBitmap(MM_ARROW, 2, 4, larrow_width, larrow_height,
|
|
|
|
larrow_bits, False);
|
|
|
|
fl_set_bmtable_maxitems(obj, 7);
|
|
|
|
obj = menu->AddBitmap(MM_ARROW, 2, 2, darrow_width, darrow_height,
|
|
|
|
darrow_bits);
|
|
|
|
menu->Create();
|
|
|
|
|
|
|
|
menu = new BitmapMenu(1, symb_form->varsize, menu);
|
|
|
|
obj = menu->AddBitmap(MM_VARSIZE, 3, 5, varsz_width, varsz_height,
|
|
|
|
varsz_bits);
|
|
|
|
fl_set_bmtable_maxitems(obj, 14);
|
|
|
|
menu->Create();
|
|
|
|
|
|
|
|
menu = new BitmapMenu(2, symb_form->misc, menu);
|
|
|
|
obj = menu->AddBitmap(MM_MISC, 5, 6, misc_width, misc_height,
|
|
|
|
misc_bits);
|
|
|
|
fl_set_bmtable_maxitems(obj, 29);
|
|
|
|
obj = menu->AddBitmap(MM_DOTS, 4, 1, dots_width, dots_height,
|
|
|
|
dots_bits);
|
|
|
|
menu->Create();
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
1999-12-01 00:57:31 +00:00
|
|
|
char const ** pixmapFromBitmapData(char const * s, int wx, int hx)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-12-01 00:57:31 +00:00
|
|
|
int i;
|
|
|
|
char const ** data = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
int id = -1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
for (i = 0; i < 6; ++i) {
|
|
|
|
char const ** latex_str = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
switch (i) {
|
|
|
|
case 0: latex_str = latex_greek; break;
|
|
|
|
case 1: latex_str = latex_bop; break;
|
|
|
|
case 2: latex_str = latex_brel; break;
|
|
|
|
case 3: latex_str = latex_arrow; break;
|
|
|
|
case 4: latex_str = latex_varsz; break;
|
|
|
|
case 5: latex_str = latex_misc; break;
|
|
|
|
}
|
|
|
|
|
2000-01-24 18:34:46 +00:00
|
|
|
for (int k = 0; latex_str[k][0] > ' '; ++k) {
|
1999-11-15 11:06:41 +00:00
|
|
|
if (strcmp(latex_str[k], s) == 0) {
|
1999-09-27 18:44:28 +00:00
|
|
|
id = k;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-12-01 00:57:31 +00:00
|
|
|
if (id >= 0) break;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
1999-12-01 00:57:31 +00:00
|
|
|
if (i < 6 && id >= 0) {
|
|
|
|
unsigned char const * bdata = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
int w = 0, h = 0, dw = 0, dh = 0;
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr[Debug::MATHED] << "Imando " << i << ", " << id << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
switch (i) {
|
|
|
|
case 0:
|
1999-11-15 11:06:41 +00:00
|
|
|
if (id<= 10) {
|
1999-09-27 18:44:28 +00:00
|
|
|
w = Greek_width;
|
|
|
|
h = Greek_height;
|
|
|
|
bdata = Greek_bits;
|
|
|
|
dw = 6; dh = 2;
|
|
|
|
} else {
|
|
|
|
w = greek_width;
|
|
|
|
h = greek_height;
|
|
|
|
bdata = greek_bits;
|
|
|
|
dw = 7; dh = 4;
|
|
|
|
id -= 11;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
w = bop_width;
|
|
|
|
h = bop_height;
|
|
|
|
bdata = bop_bits;
|
|
|
|
dw = 4; dh = 8;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
w = brel_width;
|
|
|
|
h = brel_height;
|
|
|
|
bdata = brel_bits;
|
|
|
|
dw = 4; dh = 9;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
if (id<20) {
|
|
|
|
w = arrow_width;
|
|
|
|
h = arrow_height;
|
|
|
|
bdata = arrow_bits;
|
|
|
|
dw = 5; dh = 4;
|
|
|
|
} else if (id>28) {
|
|
|
|
w = darrow_width;
|
|
|
|
h = darrow_height;
|
|
|
|
bdata = darrow_bits;
|
|
|
|
dw = 2; dh = 2;
|
|
|
|
id -= 29;
|
|
|
|
} else {
|
|
|
|
w = larrow_width;
|
|
|
|
h = larrow_height;
|
|
|
|
bdata = larrow_bits;
|
|
|
|
dw = 2; dh = 4;
|
|
|
|
id -= 20;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
w = varsz_width;
|
|
|
|
h = varsz_height;
|
|
|
|
bdata = varsz_bits;
|
|
|
|
dw = 3; dh = 5;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
w = misc_width;
|
|
|
|
h = misc_height;
|
|
|
|
bdata = misc_bits;
|
|
|
|
dw = 5; dh = 6;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
int ww = w/dw, hh = h/dh, x, y;
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
XImage * xima = XCreateImage(fl_display, 0, 1, XYBitmap, 0,
|
|
|
|
const_cast<char*>(reinterpret_cast<char const *>(bdata)), w, h, 8, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
xima->byte_order = LSBFirst;
|
|
|
|
xima->bitmap_bit_order = LSBFirst;
|
|
|
|
x = (id % dw)*ww;
|
|
|
|
y = (id/dw)*hh;
|
1999-12-01 00:57:31 +00:00
|
|
|
if (ww > wx) ww = wx;
|
|
|
|
if (hh > hx) hh = hx;
|
|
|
|
XImage * sbima = XSubImage(xima, x, y, ww, hh);
|
|
|
|
XpmCreateDataFromImage(fl_display, const_cast<char***>(&data), sbima, sbima, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Dirty hack to get blue symbols quickly
|
1999-12-01 00:57:31 +00:00
|
|
|
char * sx = strstr(data[2], "FFFFFFFF");
|
1999-09-27 18:44:28 +00:00
|
|
|
if (sx) {
|
1999-12-01 00:57:31 +00:00
|
|
|
for (int k = 0; k < 8; ++k) sx[k] = '0';
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// XDestroyImage(xima);
|
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|