/** * \file FormMathsPanel.C * Copyright 2001 The LyX Team. * See the file COPYING. * * \author Alejandro Aguilar Sierra * \author Pablo De Napoli, pdenapo@dm.uba.ar * \author John Levon, moz@compsoc.man.ac.uk * \author Angus Leeming, a.leeming@ic.ac.uk */ #include #ifdef __GNUG_ #pragma implementation #endif #include "Dialogs.h" #include "LyXView.h" #include "FormMathsPanel.h" #include "form_maths_panel.h" #include "MathsSymbols.h" #include "debug.h" #include "lyxfunc.h" #include "form_maths_deco.h" #include "form_maths_delim.h" #include "form_maths_matrix.h" #include "form_maths_space.h" #include "FormMathsBitmap.h" #include "FormMathsDeco.h" #include "FormMathsDelim.h" #include "FormMathsMatrix.h" #include "FormMathsSpace.h" #include "deco.xpm" #include "delim.xpm" #include "equation.xpm" #include "frac.xpm" #include "matrix.xpm" #include "space.xpm" #include "sqrt.xpm" #include "arrows.xbm" #include "bop.xbm" #include "brel.xbm" #include "dots.xbm" #include "greek.xbm" #include "misc.xbm" #include "varsz.xbm" using std::vector; using SigC::slot; FormMathsPanel::FormMathsPanel(LyXView * lv, Dialogs * d) : FormBaseBD(lv, d, _("Maths Panel")), active_(0), bc_("Close") { deco_.reset( new FormMathsDeco( lv, d, *this)); delim_.reset( new FormMathsDelim( lv, d, *this)); matrix_.reset(new FormMathsMatrix(lv, d, *this)); space_.reset( new FormMathsSpace( lv, d, *this)); typedef vector StringVec; StringVec latex(nr_latex_arrow); for (StringVec::size_type i = 0; i < latex.size(); ++i) { latex[i] = latex_arrow[i]; } arrow_.reset(new FormMathsBitmap(lv, d, *this, latex)); latex.resize(nr_latex_bop); for (StringVec::size_type i = 0; i < latex.size(); ++i) { latex[i] = latex_bop[i]; } boperator_.reset(new FormMathsBitmap(lv, d, *this, latex)); latex.resize(nr_latex_brel); for (StringVec::size_type i = 0; ishowMathPanel.connect(slot(this, &FormMathsPanel::show)); } FL_FORM * FormMathsPanel::form() const { if (dialog_.get()) return dialog_->form; return 0; } void FormMathsPanel::setActive(FormMathsSub * a) const { active_ = a; } void FormMathsPanel::build() { dialog_.reset(build_maths_panel()); for (int i = 0; i < nr_function_names; ++i) fl_add_browser_line(dialog_->browser_funcs, function_names[i]); fl_set_pixmap_data(dialog_->button_sqrt, const_cast(sqrt_xpm)); fl_set_pixmap_data(dialog_->button_frac, const_cast(frac)); fl_set_pixmap_data(dialog_->button_delim, const_cast(delim)); fl_set_pixmap_data(dialog_->button_deco, const_cast(deco)); fl_set_pixmap_data(dialog_->button_space, const_cast(space_xpm)); fl_set_pixmap_data(dialog_->button_matrix, const_cast(matrix)); fl_set_pixmap_data(dialog_->button_equation, const_cast(equation)); arrow_->addBitmap(20, 5, 4, arrow_width, arrow_height, arrow_bits); arrow_->addBitmap(7, 2, 4, larrow_width, larrow_height, larrow_bits, false); arrow_->addBitmap(4, 2, 2, darrow_width, darrow_height, darrow_bits); boperator_->addBitmap(31, 4, 8, bop_width, bop_height, bop_bits); brelats_->addBitmap(35, 4, 9, brel_width, brel_height, brel_bits); greek_->addBitmap(11, 6, 2, Greek_width, Greek_height, Greek_bits); greek_->addBitmap(28, 7, 4, greek_width, greek_height, greek_bits); misc_->addBitmap(29, 5, 6, misc_width, misc_height, misc_bits); varsize_->addBitmap(14, 3, 5, varsz_width, varsz_height, varsz_bits); bc().setCancel(dialog_->button_close); } bool FormMathsPanel::input(FL_OBJECT *, long data) { MathsCallbackValues val = static_cast(data); switch (val) { case MM_GREEK: if (active_ && active_ != greek_.get()) active_->hide(); greek_->show(); break; case MM_ARROW: if (active_ && active_ != arrow_.get()) active_->hide(); arrow_->show(); break; case MM_BOP: if (active_ && active_ != boperator_.get()) active_->hide(); boperator_->show(); break; case MM_BRELATS: if (active_ && active_ != brelats_.get()) active_->hide(); brelats_->show(); break; case MM_MISC: if (active_ && active_ != misc_.get()) active_->hide(); misc_->show(); break; case MM_VARSIZE: if (active_ && active_ != varsize_.get()) active_->hide(); varsize_->show(); break; case MM_FRAC: insertSymbol("frac"); break; case MM_SQRT: insertSymbol("sqrt"); break; case MM_DELIM: if (active_ && active_ != delim_.get()) active_->hide(); delim_->show(); break; case MM_MATRIX: if (active_ && active_ != matrix_.get()) active_->hide(); matrix_->show(); break; case MM_DECO: if (active_ && active_ != deco_.get()) active_->hide(); deco_->show(); break; case MM_SPACE: if (active_ && active_ != space_.get()) active_->hide(); space_->show(); break; case MM_EQU: mathDisplay(); break; case MM_FUNC: int const i = fl_get_browser(dialog_->browser_funcs) - 1; insertSymbol(function_names[i]); break; } return true; } void FormMathsPanel::insertSymbol(string const & sym) const { lv_->getLyXFunc()->Dispatch(LFUN_INSERT_MATH, sym); } void FormMathsPanel::mathDisplay() const { lv_->getLyXFunc()->Dispatch(LFUN_MATH_DISPLAY); } FormMathsSub::FormMathsSub(LyXView * lv, Dialogs * d, FormMathsPanel const & p, string const & t) : FormBaseBD(lv, d, t), parent_(p), bc_("Close") {} void FormMathsSub::connect() { parent_.setActive(this); FormBaseBD::connect(); } void FormMathsSub::disconnect() { parent_.setActive(0); FormBaseBD::disconnect(); }