2003-08-23 00:17:00 +00:00
|
|
|
/**
|
2007-04-26 04:41:58 +00:00
|
|
|
* \file Bullet.cpp
|
2003-08-23 00:17:00 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2003-08-23 00:17:00 +00:00
|
|
|
* \author Allan Rae
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/* Completes the implementation of the Bullet class
|
|
|
|
* It defines the various LaTeX commands etc. required to
|
|
|
|
* generate the bullets in the bullet-panel's.
|
2003-08-23 00:17:00 +00:00
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "Bullet.h"
|
|
|
|
|
2008-04-30 08:26:40 +00:00
|
|
|
#include "support/lassert.h"
|
2003-09-09 17:25:35 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
2007-07-17 17:40:44 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
/** The four LaTeX itemize environment default bullets
|
|
|
|
*/
|
|
|
|
extern
|
2002-02-16 15:59:55 +00:00
|
|
|
Bullet const ITEMIZE_DEFAULTS[4] = { Bullet(0, 8),//"\\(\\bullet\\)"
|
|
|
|
Bullet(0, 0),//"\\normalfont\\bfseries{--}"
|
|
|
|
Bullet(0, 6),//"\\(\\ast\\)"
|
|
|
|
Bullet(0, 10) };//"\\(\\cdot\\)"
|
2000-02-04 09:38:32 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// will need these later if still using full text as below
|
|
|
|
// \usepackage{latexsym,pifont,amssymb}
|
|
|
|
// and wasysym when that panel is created
|
|
|
|
|
|
|
|
|
2000-05-09 16:18:31 +00:00
|
|
|
Bullet::Bullet(int f, int c, int s)
|
2004-10-05 10:11:42 +00:00
|
|
|
: font(f), character(c), size(s), user_text(0)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2007-11-29 07:04:28 +00:00
|
|
|
if (f < MIN || f >= FONTMAX)
|
1999-09-27 18:44:28 +00:00
|
|
|
font = MIN;
|
2007-11-29 07:04:28 +00:00
|
|
|
if (c < MIN || c >= CHARMAX)
|
1999-09-27 18:44:28 +00:00
|
|
|
character = MIN;
|
2007-11-29 07:04:28 +00:00
|
|
|
if (s < MIN || s >= SIZEMAX)
|
1999-09-27 18:44:28 +00:00
|
|
|
size = MIN;
|
|
|
|
generateText();
|
|
|
|
testInvariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-29 15:34:18 +00:00
|
|
|
|
2006-10-20 19:26:23 +00:00
|
|
|
Bullet::Bullet(docstring const & t)
|
2003-09-12 17:13:22 +00:00
|
|
|
: font(MIN), character(MIN), size(MIN), user_text(1), text(t)
|
2001-07-29 15:34:18 +00:00
|
|
|
{
|
|
|
|
testInvariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Bullet::setCharacter(int c)
|
|
|
|
{
|
2007-11-29 07:04:28 +00:00
|
|
|
if (c < MIN || c >= CHARMAX)
|
2001-07-29 15:34:18 +00:00
|
|
|
character = MIN;
|
2007-11-29 07:04:28 +00:00
|
|
|
else
|
2001-07-29 15:34:18 +00:00
|
|
|
character = c;
|
|
|
|
user_text = 0;
|
|
|
|
testInvariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Bullet::setFont(int f)
|
|
|
|
{
|
2007-11-29 07:04:28 +00:00
|
|
|
if (f < MIN || f >= FONTMAX)
|
2001-07-29 15:34:18 +00:00
|
|
|
font = MIN;
|
2007-11-29 07:04:28 +00:00
|
|
|
else
|
2001-07-29 15:34:18 +00:00
|
|
|
font = f;
|
|
|
|
user_text = 0;
|
|
|
|
testInvariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Bullet::setSize(int s)
|
|
|
|
{
|
2007-11-29 07:04:28 +00:00
|
|
|
if (s < MIN || s >= SIZEMAX)
|
2001-07-29 15:34:18 +00:00
|
|
|
size = MIN;
|
2007-11-29 07:04:28 +00:00
|
|
|
else
|
2001-07-29 15:34:18 +00:00
|
|
|
size = s;
|
|
|
|
user_text = 0;
|
|
|
|
testInvariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-20 19:26:23 +00:00
|
|
|
void Bullet::setText(docstring const & t)
|
2001-07-29 15:34:18 +00:00
|
|
|
{
|
|
|
|
font = character = size = MIN;
|
|
|
|
user_text = 1;
|
|
|
|
text = t;
|
|
|
|
testInvariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Bullet::getCharacter() const
|
|
|
|
{
|
|
|
|
return character;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Bullet::getFont() const
|
|
|
|
{
|
|
|
|
return font;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Bullet::getSize() const
|
|
|
|
{
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Bullet & Bullet::operator=(Bullet const & b)
|
|
|
|
{
|
|
|
|
b.testInvariant();
|
|
|
|
font = b.font;
|
|
|
|
character = b.character;
|
|
|
|
size = b.size;
|
|
|
|
user_text = b.user_text;
|
|
|
|
text = b.text;
|
|
|
|
this->testInvariant();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-20 19:26:23 +00:00
|
|
|
docstring const & Bullet::getText() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2007-11-29 07:04:28 +00:00
|
|
|
if (user_text == 0)
|
1999-09-27 18:44:28 +00:00
|
|
|
generateText();
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
bool operator==(const Bullet & b1, const Bullet & b2)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
if (b1.user_text && b2.user_text) {
|
|
|
|
/* both have valid text */
|
2007-11-29 07:04:28 +00:00
|
|
|
if (b1.text == b2.text)
|
1999-09-27 18:44:28 +00:00
|
|
|
result = true;
|
2007-11-29 07:04:28 +00:00
|
|
|
} else if (b1.character == b2.character && b1.font == b2.font &&
|
|
|
|
b1.size == b2.size) {
|
1999-09-27 18:44:28 +00:00
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------Private Member Functions-------------------*/
|
|
|
|
|
|
|
|
|
2000-05-24 19:02:41 +00:00
|
|
|
void Bullet::generateText() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
// Assumption:
|
|
|
|
// user hasn't defined their own text and/or I haven't generated
|
|
|
|
// the text for the current font/character settings yet
|
|
|
|
// thus the calling member function should say:
|
|
|
|
// if (user_text == 0) {
|
|
|
|
// generateText();
|
|
|
|
// }
|
|
|
|
// Since a function call is more expensive than a conditional
|
|
|
|
// this is more efficient. Besides this function is internal to
|
|
|
|
// the class so it's only the class author that has access --
|
|
|
|
// external users thus can't make mistakes.
|
|
|
|
|
|
|
|
if ((font >= 0) && (character >= 0)) {
|
|
|
|
text = bulletEntry(font, character);
|
2007-11-29 07:04:28 +00:00
|
|
|
if (size >= 0)
|
1999-09-27 18:44:28 +00:00
|
|
|
text = bulletSize(size) + text;
|
|
|
|
user_text = -1;
|
|
|
|
// text is now defined and doesn't need to be recalculated
|
|
|
|
// unless font/character or text is modified
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-20 19:26:23 +00:00
|
|
|
docstring const Bullet::bulletSize(int s)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
// use a parameter rather than hard code `size' in here
|
|
|
|
// in case some future function may want to retrieve
|
|
|
|
// an arbitrary entry.
|
|
|
|
// See additional comments in bulletEntry() below.
|
|
|
|
|
2000-01-07 03:42:16 +00:00
|
|
|
static char const * BulletSize[SIZEMAX] = {
|
2002-03-21 17:27:08 +00:00
|
|
|
"\\tiny", "\\scriptsize", "\\footnotesize", "\\small", "\\normalsize",
|
1999-09-27 18:44:28 +00:00
|
|
|
"\\large", "\\Large", "\\LARGE", "\\huge", "\\Huge"
|
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
return from_ascii(BulletSize[s]);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-20 19:26:23 +00:00
|
|
|
docstring const Bullet::bulletEntry(int f, int c)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
// Despite how this may at first appear the static local variables
|
|
|
|
// are only initialized once..
|
|
|
|
// This is a work-around to avoid the "Static Initialization Problem"
|
|
|
|
// and should work for all compilers. See "C++ FAQs" by Cline and Lomow,
|
|
|
|
// Addison-Wesley, 1994, FAQ-180 pp169-171 for an explanation.
|
|
|
|
// Doing things this way also makes it possible to generate `text' at
|
|
|
|
// the time of construction. It also encapsulates the conversion
|
|
|
|
// of font, character and size entries to text.
|
|
|
|
|
|
|
|
// The single 2-dim array had to be changed to multiple 1-dim arrays
|
|
|
|
// to get around a compiler bug in an earler version of gcc (< 2.7.2.1)
|
1999-10-02 16:21:10 +00:00
|
|
|
// static string const BulletPanels[FONTMAX][CHARMAX] = {
|
2000-01-07 03:42:16 +00:00
|
|
|
static char const * BulletPanel0[CHARMAX] = {
|
2002-03-21 17:27:08 +00:00
|
|
|
/* standard */
|
1999-09-27 18:44:28 +00:00
|
|
|
"\\normalfont\\bfseries{--}", "\\(\\vdash\\)",
|
|
|
|
"\\(\\dashv\\)", "\\(\\flat\\)", "\\(\\natural\\)",
|
2002-03-21 17:27:08 +00:00
|
|
|
"\\(\\sharp\\)", "\\(\\ast\\)", "\\(\\star\\)",
|
1999-09-27 18:44:28 +00:00
|
|
|
"\\(\\bullet\\)", "\\(\\circ\\)", "\\(\\cdot\\)",
|
|
|
|
"\\(\\dagger\\)", "\\(\\bigtriangleup\\)",
|
|
|
|
"\\(\\bigtriangledown\\)", "\\(\\triangleleft\\)",
|
|
|
|
"\\(\\triangleright\\)", "\\(\\lhd\\)", "\\(\\rhd\\)",
|
|
|
|
"\\(\\oplus\\)", "\\(\\ominus\\)", "\\(\\otimes\\)",
|
|
|
|
"\\(\\oslash\\)", "\\(\\odot\\)", "\\(\\spadesuit\\)",
|
|
|
|
"\\(\\diamond\\)", "\\(\\Diamond\\)", "\\(\\Box\\)",
|
2002-03-21 17:27:08 +00:00
|
|
|
"\\(\\diamondsuit\\)", "\\(\\heartsuit\\)",
|
1999-09-27 18:44:28 +00:00
|
|
|
"\\(\\clubsuit\\)", "\\(\\rightarrow\\)", "\\(\\leadsto\\)",
|
2002-03-21 17:27:08 +00:00
|
|
|
"\\(\\rightharpoonup\\)", "\\(\\rightharpoondown\\)",
|
1999-09-27 18:44:28 +00:00
|
|
|
"\\(\\Rightarrow\\)", "\\(\\succ\\)"
|
|
|
|
};
|
2000-01-07 03:42:16 +00:00
|
|
|
static char const * BulletPanel1[CHARMAX] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
/* amssymb */
|
|
|
|
"\\(\\Rrightarrow\\)", "\\(\\rightarrowtail\\)",
|
|
|
|
"\\(\\twoheadrightarrow\\)", "\\(\\rightsquigarrow\\)",
|
|
|
|
"\\(\\looparrowright\\)", "\\(\\multimap\\)",
|
|
|
|
"\\(\\boxtimes\\)", "\\(\\boxplus\\)", "\\(\\boxminus\\)",
|
|
|
|
"\\(\\boxdot\\)", "\\(\\divideontimes\\)", "\\(\\Vvdash\\)",
|
|
|
|
"\\(\\lessdot\\)", "\\(\\gtrdot\\)", "\\(\\maltese\\)",
|
|
|
|
"\\(\\bigstar\\)", "\\(\\checkmark\\)", "\\(\\Vdash\\)",
|
|
|
|
"\\(\\backsim\\)", "\\(\\thicksim\\)",
|
|
|
|
"\\(\\centerdot\\)", "\\(\\circleddash\\)",
|
|
|
|
"\\(\\circledast\\)", "\\(\\circledcirc\\)",
|
|
|
|
"\\(\\vartriangleleft\\)", "\\(\\vartriangleright\\)",
|
|
|
|
"\\(\\vartriangle\\)", "\\(\\triangledown\\)",
|
|
|
|
"\\(\\lozenge\\)", "\\(\\square\\)", "\\(\\blacktriangleleft\\)",
|
|
|
|
"\\(\\blacktriangleright\\)", "\\(\\blacktriangle\\)",
|
|
|
|
"\\(\\blacktriangledown\\)", "\\(\\blacklozenge\\)",
|
|
|
|
"\\(\\blacksquare\\)"
|
|
|
|
};
|
2000-01-07 03:42:16 +00:00
|
|
|
static char const * BulletPanel2[CHARMAX] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
/* psnfss1 */
|
|
|
|
"\\ding{108}", "\\ding{109}",
|
|
|
|
"\\ding{119}", "\\Pisymbol{psy}{197}",
|
|
|
|
"\\Pisymbol{psy}{196}", "\\Pisymbol{psy}{183}",
|
|
|
|
"\\ding{71}", "\\ding{70}",
|
|
|
|
"\\ding{118}", "\\ding{117}",
|
|
|
|
"\\Pisymbol{psy}{224}", "\\Pisymbol{psy}{215}",
|
|
|
|
"\\ding{111}", "\\ding{112}",
|
|
|
|
"\\ding{113}", "\\ding{114}",
|
|
|
|
"\\Pisymbol{psy}{68}", "\\Pisymbol{psy}{209}",
|
|
|
|
"\\ding{120}", "\\ding{121}",
|
|
|
|
"\\ding{122}", "\\ding{110}",
|
|
|
|
"\\ding{115}", "\\ding{116}",
|
|
|
|
"\\Pisymbol{psy}{42}", "\\ding{67}",
|
|
|
|
"\\ding{66}", "\\ding{82}",
|
|
|
|
"\\ding{81}", "\\ding{228}",
|
|
|
|
"\\ding{162}", "\\ding{163}",
|
|
|
|
"\\ding{166}", "\\ding{167}",
|
|
|
|
"\\ding{226}", "\\ding{227}"
|
|
|
|
};
|
2000-01-07 03:42:16 +00:00
|
|
|
static char const * BulletPanel3[CHARMAX] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
/* psnfss2 */
|
|
|
|
"\\ding{37}", "\\ding{38}",
|
|
|
|
"\\ding{34}", "\\ding{36}",
|
|
|
|
"\\ding{39}", "\\ding{40}",
|
|
|
|
"\\ding{41}", "\\ding{42}",
|
|
|
|
"\\ding{43}", "\\ding{44}",
|
|
|
|
"\\ding{45}", "\\ding{47}",
|
|
|
|
"\\ding{53}", "\\ding{54}",
|
|
|
|
"\\ding{59}", "\\ding{57}",
|
|
|
|
"\\ding{62}", "\\ding{61}",
|
|
|
|
"\\ding{55}", "\\ding{56}",
|
|
|
|
"\\ding{58}", "\\ding{60}",
|
|
|
|
"\\ding{63}", "\\ding{64}",
|
|
|
|
"\\ding{51}", "\\ding{52}",
|
|
|
|
"\\Pisymbol{psy}{170}", "\\Pisymbol{psy}{167}",
|
|
|
|
"\\Pisymbol{psy}{168}", "\\Pisymbol{psy}{169}",
|
|
|
|
"\\ding{164}", "\\ding{165}",
|
|
|
|
"\\ding{171}", "\\ding{168}",
|
|
|
|
"\\ding{169}", "\\ding{170}"
|
|
|
|
};
|
2000-01-07 03:42:16 +00:00
|
|
|
static char const * BulletPanel4[CHARMAX] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
/* psnfss3 */
|
|
|
|
"\\ding{65}", "\\ding{76}",
|
|
|
|
"\\ding{75}", "\\ding{72}",
|
|
|
|
"\\ding{80}", "\\ding{74}",
|
|
|
|
"\\ding{78}", "\\ding{77}",
|
|
|
|
"\\ding{79}", "\\ding{85}",
|
|
|
|
"\\ding{90}", "\\ding{98}",
|
|
|
|
"\\ding{83}", "\\ding{84}",
|
|
|
|
"\\ding{86}", "\\ding{87}",
|
|
|
|
"\\ding{88}", "\\ding{89}",
|
|
|
|
"\\ding{92}", "\\ding{91}",
|
|
|
|
"\\ding{93}", "\\ding{105}",
|
|
|
|
"\\ding{94}", "\\ding{99}",
|
|
|
|
"\\ding{103}", "\\ding{104}",
|
|
|
|
"\\ding{106}", "\\ding{107}",
|
|
|
|
"\\ding{68}", "\\ding{69}",
|
|
|
|
"\\ding{100}", "\\ding{101}",
|
|
|
|
"\\ding{102}", "\\ding{96}",
|
|
|
|
"\\ding{95}", "\\ding{97}"
|
|
|
|
};
|
2000-01-07 03:42:16 +00:00
|
|
|
static char const * BulletPanel5[CHARMAX] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
/* psnfss4 */
|
|
|
|
"\\ding{223}", "\\ding{224}",
|
|
|
|
"\\ding{225}", "\\ding{232}",
|
|
|
|
"\\ding{229}", "\\ding{230}",
|
|
|
|
"\\ding{238}", "\\ding{237}",
|
|
|
|
"\\ding{236}", "\\ding{235}",
|
|
|
|
"\\ding{234}", "\\ding{233}",
|
|
|
|
"\\ding{239}", "\\ding{241}",
|
|
|
|
"\\ding{250}", "\\ding{251}",
|
|
|
|
"\\ding{49}", "\\ding{50}",
|
|
|
|
"\\ding{217}", "\\ding{245}",
|
|
|
|
"\\ding{243}", "\\ding{248}",
|
|
|
|
"\\ding{252}", "\\ding{253}",
|
|
|
|
"\\ding{219}", "\\ding{213}",
|
|
|
|
"\\ding{221}", "\\ding{222}",
|
|
|
|
"\\ding{220}", "\\ding{212}",
|
|
|
|
"\\Pisymbol{psy}{174}", "\\Pisymbol{psy}{222}",
|
|
|
|
"\\ding{254}", "\\ding{242}",
|
|
|
|
"\\ding{231}", "\\Pisymbol{psy}{45}"
|
1999-10-02 16:21:10 +00:00
|
|
|
}; /* string const BulletPanels[][] */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-01-07 03:42:16 +00:00
|
|
|
static char const ** BulletPanels[FONTMAX] = {
|
1999-09-27 18:44:28 +00:00
|
|
|
BulletPanel0, BulletPanel1,
|
|
|
|
BulletPanel2, BulletPanel3,
|
|
|
|
BulletPanel4, BulletPanel5
|
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
return from_ascii(BulletPanels[f][c]);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-07-29 15:34:18 +00:00
|
|
|
|
2003-09-06 23:01:26 +00:00
|
|
|
void Bullet::testInvariant() const
|
|
|
|
{
|
2001-07-29 15:34:18 +00:00
|
|
|
#ifdef ENABLE_ASSERTIONS
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(font >= MIN, /**/);
|
|
|
|
LASSERT(font < FONTMAX, /**/);
|
|
|
|
LASSERT(character >= MIN, /**/);
|
|
|
|
LASSERT(character < CHARMAX, /**/);
|
|
|
|
LASSERT(size >= MIN, /**/);
|
|
|
|
LASSERT(size < SIZEMAX, /**/);
|
|
|
|
LASSERT(user_text >= -1, /**/);
|
|
|
|
LASSERT(user_text <= 1, /**/);
|
2001-07-29 15:34:18 +00:00
|
|
|
// now some relational/operational tests
|
|
|
|
if (user_text == 1) {
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(font == -1 && (character == -1 && size == -1), /**/);
|
|
|
|
// LASSERT(!text.empty(), /**/); // this isn't necessarily an error
|
2001-07-29 15:34:18 +00:00
|
|
|
}
|
|
|
|
// else if (user_text == -1) {
|
2008-04-10 21:49:34 +00:00
|
|
|
// LASSERT(!text.empty(), /**/); // this also isn't necessarily an error
|
2001-07-29 15:34:18 +00:00
|
|
|
// }
|
|
|
|
// else {
|
|
|
|
// // user_text == 0
|
2008-04-10 21:49:34 +00:00
|
|
|
// LASSERT(text.empty(), /**/); // not usually true
|
2001-07-29 15:34:18 +00:00
|
|
|
// }
|
|
|
|
#endif
|
2003-09-06 23:01:26 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|