1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
|
/*
* Copyright (c) 2002-2006 Samit Basu
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "Label.hpp"
#include "Point2D.hpp"
#include "Exception.hpp"
#include <math.h>
#include <iostream>
// To do LaTeX labels...
// We can use simple symbol substitution for greek symbols, integrals and summations
// We then need to add a attributed text string to track the subscripts, and superscripts
//
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
Box::Box() {
width = height = depth = 0;
}
FormulaTree::FormulaTree(QString text, FormulaTree* supertree,
FormulaTree* subtree, FormulaTree* nexttree) {
m_supertree = supertree;
m_subtree = subtree;
m_nexttree = nexttree;
m_text = text;
}
int depth = 0;
void FormulaTree::PrintMe() {
// for (int i=0;i<depth;i++)
// std::cout << " ";
// std::cout << (const char*) m_text << "(" << m_size << "," << m_ascent << ")\n";
if (m_supertree) {
depth++;
m_supertree->PrintMe();
depth--;
}
if (m_subtree) {
depth++;
m_subtree->PrintMe();
depth--;
}
if (m_nexttree)
m_nexttree->PrintMe();
}
void FormulaTree::Render(DrawEngine& gc, Point2D& pos) {
QFont tmp("Helvetica",m_size);
gc.setFont(tmp);
gc.drawText(pos.x,pos.y-m_ascent,m_text);
pos.x += gc.fontMetrics().boundingRect(m_text).width();
// Save the current position
Point2D posSuper(pos);
Point2D posSub(pos);
// draw the super tree
if (m_supertree)
m_supertree->Render(gc,posSuper);
if (m_subtree)
m_subtree->Render(gc,posSub);
pos.x = MAX(posSuper.x,posSub.x);
if (m_nexttree)
m_nexttree->Render(gc,pos);
}
int m_cptr;
std::vector<QString> m_stringfragments;
bool match(QString test) {
return ((m_cptr < m_stringfragments.size()) &&
(m_stringfragments[m_cptr] == test));
}
FormulaTree* StringToTree();
FormulaTree* Terminal() {
if (match("{")) {
m_cptr++;
FormulaTree* m = StringToTree();
if (!match("}"))
throw Exception("Unmatched left bracket `{` in label string");
m_cptr++;
return m;
} else
return new FormulaTree(m_stringfragments[m_cptr++],NULL,NULL,NULL);
}
FormulaTree* StringToTree() {
// The base of the tree should be the
// first non-empty entry
if (match("}")) return NULL;
if (m_cptr >= m_stringfragments.size()) return NULL;
QString root(m_stringfragments[m_cptr]);
FormulaTree *super = NULL;
FormulaTree *sub = NULL;
m_cptr++;
if (match("^")) {
m_cptr++;
super = Terminal();
if (match("_")) {
m_cptr++;
sub = Terminal();
}
} else {
if (match("_")) {
m_cptr++;
sub = Terminal();
}
if (match("^")) {
m_cptr++;
super = Terminal();
}
}
return(new FormulaTree(root,super,sub,StringToTree()));
}
Box FormulaTree::GetBox() {
Box superBox, subBox, rootBox, nextBox;
if (m_supertree)
superBox = m_supertree->GetBox();
if (m_subtree)
subBox = m_subtree->GetBox();
QFontMetrics fm(QFont("Helvetica",m_size));
QRect sze(fm.boundingRect(m_text));
// Replace with legitimate code
rootBox.depth = fm.descent();
if (m_ascent < 0)
rootBox.depth -= m_ascent;
rootBox.width = sze.width();
rootBox.height = sze.height()+m_ascent;
if (m_nexttree)
nextBox = m_nexttree->GetBox();
Box output;
output.depth = MAX(superBox.depth,MAX(subBox.depth,MAX(rootBox.depth,
nextBox.depth)));
output.height = MAX(superBox.height,
MAX(subBox.height,MAX(rootBox.height,
nextBox.height)));
output.width = rootBox.width + nextBox.width +
MAX(subBox.width,superBox.width);
return output;
}
void FormulaTree::SizeTree(int size, int ascent) {
// The root takes the current size
m_size = size;
m_ascent = ascent;
// The superscript takes a smaller size by 60%, and is raised
// so that the baseline is also 60% of size
if (m_supertree)
m_supertree->SizeTree(m_size*0.8,m_ascent + m_size*0.6);
if (m_subtree)
m_subtree->SizeTree(m_size*0.8,m_ascent - m_size*0.4);
if (m_nexttree)
m_nexttree->SizeTree(size, ascent);
}
TexLabel::TexLabel(std::string text, int size) {
m_rawtext = text;
m_size = size;
CompileRawText();
}
void TexLabel::Substitute(QString ecode, QChar rcode) {
int j = 0;
#ifdef QT3
while ((j = m_processed_text.find(ecode)) != -1)
m_processed_text.replace(ecode,rcode);
#else
while ((j = m_processed_text.indexOf(ecode,0)) != -1)
m_processed_text.replace(j,ecode.size(),rcode);
#endif
}
void TexLabel::DoSubstitutions() {
Substitute("\\Alpha",0x0391);
Substitute("\\Beta",0x0392);
Substitute("\\Gamma",0x0393);
Substitute("\\Delta",0x0394);
Substitute("\\Epsilon",0x0395);
Substitute("\\Zeta",0x0396);
Substitute("\\Eta",0x0397);
Substitute("\\Theta",0x0398);
Substitute("\\Iota",0x0399);
Substitute("\\Kappa",0x039A);
Substitute("\\Lambda",0x039B);
Substitute("\\Mu",0x039C);
Substitute("\\Nu",0x039D);
Substitute("\\Xi",0x039E);
Substitute("\\Omicron",0x039F);
Substitute("\\Pi",0x03A0);
Substitute("\\Rho",0x03A1);
Substitute("\\Sigma",0x03A2);
Substitute("\\Tau",0x03A3);
Substitute("\\Upsilon",0x03A4);
Substitute("\\Phi",0x03A5);
Substitute("\\Chi",0x03A6);
Substitute("\\Psi",0x03A7);
Substitute("\\Omega",0x03A8);
Substitute("\\alpha",0x03B1);
Substitute("\\beta",0x03B2);
Substitute("\\gamma",0x03B3);
Substitute("\\delta",0x03B4);
Substitute("\\epsilon",0x03B5);
Substitute("\\zeta",0x03B6);
Substitute("\\eta",0x03B7);
Substitute("\\theta",0x03B8);
Substitute("\\iota",0x03B9);
Substitute("\\kappa",0x03BA);
Substitute("\\lambda",0x03BB);
Substitute("\\mu",0x03BC);
Substitute("\\nu",0x03BD);
Substitute("\\xi",0x03BE);
Substitute("\\omicron",0x03BF);
Substitute("\\pi",0x03C0);
Substitute("\\rho",0x03C1);
Substitute("\\sigma",0x03C3);
Substitute("\\tau",0x03C4);
Substitute("\\upsilon",0x03C5);
Substitute("\\phi",0x03C6);
Substitute("\\chi",0x03C7);
Substitute("\\psi",0x03C8);
Substitute("\\omega",0x03C9);
Substitute("\\rightarrow",0x2192);
Substitute("\\leftarrow",0x2190);
Substitute("\\uparrow",0x2191);
Substitute("\\downarrow",0x2193);
Substitute("\\partial",0x2202);
Substitute("\\nabla",0x2206);
Substitute("\\Prod",0x220F);
Substitute("\\prod",0x220F);
Substitute("\\sum",0x2211);
Substitute("\\Sum",0x2211);
Substitute("\\plusminus",0x00B1);
Substitute("\\infty",0x221E);
Substitute("\\leq",0x2264);
Substitute("\\geq",0x2265);
Substitute("\\neq",0x2260);
Substitute("\\approx",0x2248);
Substitute("\\sim",'~');
Substitute("\\int",0x222B);
}
void TexLabel::Stringify() {
// Break the processed text into string fragments
// Each fragment consists of a sequence of characters
// at the same render level (i.e., subscript/superscript
// history).
int m_cp = 0;
QString fragment;
bool singleshot;
std::vector<QString> stringfrag;
#ifdef QT3
while (m_cp < m_processed_text.length()) {
#else
while (m_cp < m_processed_text.size()) {
#endif
// Is this a bracket?
if ((m_processed_text[m_cp] == '{') ||
(m_processed_text[m_cp] == '}')) {
// Flush the current string
stringfrag.push_back(fragment);
// Reset the fragment buffer
#ifdef QT3
fragment = QString("");
#else
fragment.clear();
#endif
stringfrag.push_back(QString(m_processed_text[m_cp]));
singleshot = false;
} else if ((m_processed_text[m_cp] == '^') ||
(m_processed_text[m_cp] == '_')) {
// If the current char is a ^, then push it as a fragment
// Flush the current string
stringfrag.push_back(fragment);
stringfrag.push_back(QString(m_processed_text[m_cp]));
#ifdef QT3
fragment = QString("");
#else
fragment.clear();
#endif
singleshot = true;
} else {
#ifdef QT3
fragment.append(m_processed_text[m_cp]);
#else
fragment.push_back(m_processed_text[m_cp]);
#endif
if (singleshot) {
stringfrag.push_back(fragment);
// Reset the fragment buffer
#ifdef QT3
fragment = QString("");
#else
fragment.clear();
#endif
singleshot = false;
}
}
m_cp++;
}
stringfrag.push_back(fragment);
for (int i=0;i<stringfrag.size();i++) {
if (!stringfrag[i].isEmpty())
m_stringfragments.push_back(stringfrag[i]);
}
}
void TexLabel::CompileRawText() {
// The compiling strategy - we have a sequence of tokens
// like: a^b_cfg_h - it really is a 3-tree - every token has
// three slots (a superscript and a subscript slot) and a next token
// b
// a fg
// c h
// qDebug("compile raw text");
m_processed_text = QString(m_rawtext.c_str());
DoSubstitutions();
// Break into strings
Stringify();
// Build it into a tree
m_cptr = 0;
m_tree = StringToTree();
m_tree->SizeTree(m_size,0);
m_box = m_tree->GetBox();
m_stringfragments.clear();
}
Point2D TexLabel::BoundingBox() {
return Point2D(m_box.width,m_box.depth+m_box.height);
}
Box TexLabel::Metrics() {
return m_box;
}
void TexLabel::Render(DrawEngine& gc, Point2D pos) {
m_tree->Render(gc, pos);
}
Label::Label(QWidget* parent, const char *name, std::string text, char orient) :
QPWidget(parent, name) {
m_text = text;
m_orientation = orient;
m_label = new TexLabel(text, 12);
if (m_orientation == 'h')
setMinimumSize(m_label->BoundingBox().x,m_label->BoundingBox().y);
else
setMinimumSize(m_label->BoundingBox().y,m_label->BoundingBox().x);
}
Label::~Label() {
}
void Label::DrawMe(DrawEngine& gc) {
// Center the label in our window...
if (m_orientation == 'h') {
Point2D pos(width()/2,0);
Box box(m_label->Metrics());
pos.y = box.height;
pos.x -= box.width/2;
m_label->Render(gc, pos);
} else {
Point2D pos(0,height()/2);
Box box(m_label->Metrics());
pos.x = box.height;
pos.y += box.width/2;
gc.save();
gc.translate(pos.x,pos.y);
gc.rotate(-90);
Point2D dummy(0,0);
m_label->Render(gc, dummy);
gc.restore();
}
}
|