X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyx_gui_misc.C;h=1a937143ed6d3c84e2d4efadab669e332e00b9c6;hb=9f7498dbdf16f61cd5c9ee82e0cb6576d2bf620f;hp=1262e486a474886fbc8a5ae04fbf1ff42cbeaa05;hpb=6bba977f42b0cde753ac2ffd26f3f9c6b32ba0b6;p=lyx.git diff --git a/src/lyx_gui_misc.C b/src/lyx_gui_misc.C index 1262e486a4..1a937143ed 100644 --- a/src/lyx_gui_misc.C +++ b/src/lyx_gui_misc.C @@ -11,62 +11,37 @@ #include +#ifdef __GNUG__ +#pragma implementation +#endif + #include #include "lyx_gui_misc.h" #include "BufferView.h" -#include "bibforms.h" #include "buffer.h" -#include "bullet_forms.h" -#include "form1.h" #include "gettext.h" -#include "include_form.h" -#include "latexoptions.h" -#include "layout_forms.h" -#include "lyx.h" +#include "figure_form.h" #include "lyx_cb.h" #include "lyx_main.h" -#include "mathed/math_forms.h" #include "minibuffer.h" #include "print_form.h" #include "sp_form.h" -#include "insets/insetindex.h" #include "LyXView.h" #include "bufferview_funcs.h" #include "support/filetools.h" +#include "lyxrc.h" using std::pair; using std::make_pair; +using std::endl; extern BufferView * current_view; -extern FD_form_paragraph * fd_form_paragraph; -extern FD_form_paragraph_extra * fd_form_paragraph_extra; -extern FD_form_character * fd_form_character; -extern FD_form_document * fd_form_document; -extern FD_form_paper * fd_form_paper; -extern FD_form_table_options * fd_form_table_options; -extern FD_form_quotes * fd_form_quotes; -extern FD_form_preamble * fd_form_preamble; -extern FD_form_table * fd_form_table; -extern FD_form_sendto * fd_form_sendto; extern FD_form_figure * fd_form_figure; -extern FD_form_toc * fd_form_toc; -extern FD_form_ref * fd_form_ref; -extern FD_form_paragraph_extra * fd_form_paragraph_extra; -extern FD_LaTeXLog * fd_latex_log; +extern FD_form_sendto * fd_form_sendto; extern FD_form_spell_check * fd_form_spell_check; -extern FD_form_bullet * fd_form_bullet; -extern FD_panel * fd_panel; -extern FD_delim * fd_delim; -extern FD_deco * fd_deco; -extern FD_space * fd_space; -extern FD_matrix * fd_matrix; -extern FD_citation_form * citation_form; -extern FD_bibitem_form * bibitem_form; -extern FD_include * form; -extern FD_index_form * index_form; - -extern void TocUpdateCB(); +extern FD_form_spell_options * fd_form_spell_options; + extern void HideFiguresPopups(); // Prevents LyX from being killed when the close box is pressed in a popup. @@ -74,15 +49,26 @@ extern "C" int CancelCloseBoxCB(FL_FORM *, void *) { return FL_CANCEL; } - - -// Prevents LyX from being killed when the close box is pressed in a popup. -extern "C" int IgnoreCloseBoxCB(FL_FORM *, void *) +// Redraw the form (on receipt of a Signal indicating, for example, +// that the xform colors have been re-mapped). +void RedrawAllBufferRelatedDialogs() { - return FL_IGNORE; + if (fd_form_figure->form_figure->visible) { + fl_redraw_form(fd_form_figure->form_figure); + } + if (fd_form_sendto->form_sendto->visible) { + fl_redraw_form(fd_form_sendto->form_sendto); + } + if (fd_form_spell_check && + fd_form_spell_check->form_spell_check->visible) { + fl_redraw_form(fd_form_spell_check->form_spell_check); + } + if (fd_form_spell_options && + fd_form_spell_options->form_spell_options->visible) { + fl_redraw_form(fd_form_spell_options->form_spell_options); + } } - // Prevents LyX from crashing when no buffers available // This is also one of the functions that we _really_ dont want // we should try to finds way to help us with that. @@ -93,254 +79,24 @@ void CloseAllBufferRelatedDialogs() // have been created otherwise hiding one could cause a crash // need the visible check otherwise XForms prints a warning // if hiding an invisible form - if (fd_form_paragraph->form_paragraph->visible) { - fl_hide_form(fd_form_paragraph->form_paragraph); - } - if (fd_form_paragraph_extra->form_paragraph_extra->visible) { - fl_hide_form(fd_form_paragraph_extra->form_paragraph_extra); - } - if (fd_form_character->form_character->visible) { - fl_hide_form(fd_form_character->form_character); - } - if (fd_form_document->form_document->visible) { - fl_hide_form(fd_form_document->form_document); - } - if (fd_form_quotes->form_quotes->visible) { - fl_hide_form(fd_form_quotes->form_quotes); - } - if (fd_form_preamble->form_preamble->visible) { - fl_hide_form(fd_form_preamble->form_preamble); - } - if (fd_form_table->form_table->visible) { - fl_hide_form(fd_form_table->form_table); - } if (fd_form_figure->form_figure->visible) { fl_hide_form(fd_form_figure->form_figure); } - if (fd_form_toc->form_toc->visible) { - fl_hide_form(fd_form_toc->form_toc); - } - if (fd_form_ref->form_ref->visible) { - fl_hide_form(fd_form_ref->form_ref); - } - if (fd_form_paper->form_paper->visible) { - fl_hide_form(fd_form_paper->form_paper); - } - if (fd_form_table_options->form_table_options->visible) { - fl_hide_form(fd_form_table_options->form_table_options); - } if (fd_form_sendto->form_sendto->visible) { fl_hide_form(fd_form_sendto->form_sendto); } - if (fd_latex_log->LaTeXLog->visible) { - fl_hide_form(fd_latex_log->LaTeXLog); - } if (fd_form_spell_check) { if (fd_form_spell_check->form_spell_check->visible) { fl_trigger_object(fd_form_spell_check->done); } } - if (fd_form_bullet) { - if (fd_form_bullet->form_bullet->visible) { - fl_hide_form(fd_form_bullet->form_bullet); - } - } - if (fd_panel) { - if (fd_panel->panel->visible) { - fl_hide_form(fd_panel->panel); - } - } - if (fd_delim) { - if (fd_delim->delim->visible) { - fl_hide_form(fd_delim->delim); - } - } - if (fd_deco) { - if (fd_deco->deco->visible) { - fl_hide_form(fd_deco->deco); - } - } - if (fd_space) { - if (fd_space->space->visible) { - fl_hide_form(fd_space->space); - } - } - if (fd_matrix) { - if (fd_matrix->matrix->visible) { - fl_hide_form(fd_matrix->matrix); - } - } - if (citation_form) { - if (citation_form->form->visible) { - fl_hide_form(citation_form->form); - } - } - if (bibitem_form) { - if (bibitem_form->bibitem_form->visible) { - fl_hide_form(bibitem_form->bibitem_form); - } - } - if (form) { - if (form->include->visible) { - fl_hide_form(form->include); - } - } - if (index_form) { - if (index_form->index_form->visible) { - fl_hide_form(index_form->index_form); - } - } HideFiguresPopups(); } // This is another function we really don't want. // Again the Signal/Slot mechanism is tailor made for this task. -void updateAllVisibleBufferRelatedDialogs() +void updateAllVisibleBufferRelatedDialogs(bool) { - if (fd_form_document->form_document->visible) { - UpdateLayoutDocument(); - } - if (fd_form_preamble->form_preamble->visible) { - UpdateLayoutPreamble(); - } - if (fd_form_quotes->form_quotes->visible) { - UpdateLayoutQuotes(); - } - if (fd_form_paragraph->form_paragraph->visible) { - UpdateLayoutParagraph(); - } - if (fd_form_paragraph_extra->form_paragraph_extra->visible) { - UpdateParagraphExtra(); - } - if (fd_form_paper->form_paper->visible) { - UpdateLayoutPaper(); - } - if (fd_form_table_options->form_table_options->visible) { - UpdateLayoutTable(1); // just like a right mouse click - } - if (fd_form_bullet) { - if (fd_form_bullet->form_bullet->visible) { - updateBulletForm(); - } - } - if (fd_form_toc->browser_toc->visible) { - TocUpdateCB(0, 0); - } - if (fd_latex_log->LaTeXLog->visible) { - LatexLogUpdate(0,0); - } -#ifdef ALWAYS_UPDATE_REF - // Ideally, the RefUpdateCB should be modified so that if the - // current document is a subdocument the reference list should come - // from master document (or even be a merger of references from all - // its sibling documents). For now this has effectively been - // commented out to ensure that users of multipart documents can - // access the reference list of a different document. This is - // of course a compromise and an annoyance for users switching - // between separate documents. ARRae 241198 - if (fd_form_ref->form_ref->visible) { - RefUpdateCB(0, 0); - } -#endif - if (current_view->buffer()->isReadonly()) { - // a little crude perhaps but it works. ARRae - if (fd_form_character->form_character->visible) { - fl_hide_form(fd_form_character->form_character); - } - if (fd_form_table->form_table->visible) { - fl_hide_form(fd_form_table->form_table); - } - -#ifndef ALWAYS_UPDATE_REF - // We must update the popup in order to make the - // insert ref buttons insactive - if (fd_form_ref->form_ref->visible) { - RefUpdateCB(0, 0); - } -#endif - -#ifndef ALWAYS_CLOSE_MATH_PANELS - // The math popups should be closed only if we switch - // to a readonly buffer - if (fd_panel) { - if (fd_panel->panel->visible) { - fl_hide_form(fd_panel->panel); - } - } - if (fd_delim) { - if (fd_delim->delim->visible) { - fl_hide_form(fd_delim->delim); - } - } - if (fd_deco) { - if (fd_deco->deco->visible) { - fl_hide_form(fd_deco->deco); - } - } - if (fd_space) { - if (fd_space->space->visible) { - fl_hide_form(fd_space->space); - } - } - if (fd_matrix) { - if (fd_matrix->matrix->visible) { - fl_hide_form(fd_matrix->matrix); - } - } -#endif - } - - // We have either changed buffers or changed the readonly status - // so the safest thing to do is hide all inset popups that - // are editting insets from the previous buffer or aren't - // allowed in readonly docs. -#ifdef ALWAYS_CLOSE_MATH_PANELS - if (fd_panel) { - if (fd_panel->panel->visible) { - fl_hide_form(fd_panel->panel); - } - } - if (fd_delim) { - if (fd_delim->delim->visible) { - fl_hide_form(fd_delim->delim); - } - } - if (fd_deco) { - if (fd_deco->deco->visible) { - fl_hide_form(fd_deco->deco); - } - } - if (fd_space) { - if (fd_space->space->visible) { - fl_hide_form(fd_space->space); - } - } - if (fd_matrix) { - if (fd_matrix->matrix->visible) { - fl_hide_form(fd_matrix->matrix); - } - } -#endif - if (citation_form) { - if (citation_form->form->visible) { - fl_hide_form(citation_form->form); - } - } - if (bibitem_form) { - if (bibitem_form->bibitem_form->visible) { - fl_hide_form(bibitem_form->bibitem_form); - } - } - if (form) { - if (form->include->visible) { - fl_hide_form(form->include); - } - } - if (index_form) { - if (index_form->index_form->visible) { - fl_hide_form(index_form->index_form); - } - } HideFiguresPopups(); } @@ -380,6 +136,16 @@ char const * flyx_ident_extract(char const * sc) } +void WriteStatus(MiniBuffer * minib, string const & s) +{ + if (minib) { + minib->Set(s); + minib->Store(); + } else + lyxerr << s << endl; +} + + // void WriteAlert(string const & s1, string const & s2, string const & s3) { @@ -387,14 +153,17 @@ void WriteAlert(string const & s1, string const & s2, string const & s3) if (current_view && current_view->owner()) minibuffer = current_view->owner()->getMiniBuffer(); if (minibuffer) { + /// Write to minibuffer ProhibitInput(current_view); minibuffer->Set(s1, s2, s3); - } - - fl_set_resource("flAlert.dismiss.label", _("Dismiss")); - fl_show_alert(s1.c_str(), s2.c_str(), s3.c_str(), 0); - if (minibuffer) { + fl_set_resource("flAlert.dismiss.label", _("Dismiss")); + fl_show_alert(s1.c_str(), s2.c_str(), s3.c_str(), 0); AllowInput(current_view); + } else { + /// Write to lyxerr + lyxerr << "----------------------------------------" << endl + << s1 << endl << s2 << endl << s3 << endl + << "----------------------------------------" << endl; } } @@ -402,12 +171,27 @@ void WriteAlert(string const & s1, string const & s2, string const & s3) // Alarms user of something related to files void WriteFSAlert(string const & s1, string const & s2) { - WriteAlert (s1, s2, strerror(errno)); + WriteAlert(s1, s2, strerror(errno)); } -bool AskQuestion(string const & s1, string const & s2, string const & s3) +bool AskQuestion(string const & s1, string const & s2, string const & s3, + bool default_value) { + if (!lyxrc.use_gui) { + lyxerr << "----------------------------------------" << endl + << s1 << endl; + if (!s2.empty()) + lyxerr << s2 << endl; + if (!s3.empty()) + lyxerr << s3 << endl; + lyxerr << "Assuming answer is " + << (default_value ? "yes" : "no") + << endl + << "----------------------------------------" << endl; + return default_value; + } + fl_set_resource("flQuestion.yes.label", idex(_("Yes|Yy#y"))); fl_set_resource("flQuestion.no.label", idex(_("No|Nn#n"))); return fl_show_question((s1 + "\n" + s2 + "\n" + s3).c_str(), 0); @@ -415,8 +199,28 @@ bool AskQuestion(string const & s1, string const & s2, string const & s3) // Returns 1 for yes, 2 for no, 3 for cancel. -int AskConfirmation(string const & s1, string const & s2, string const & s3) +int AskConfirmation(string const & s1, string const & s2, string const & s3, + int default_value) { + if (!lyxrc.use_gui) { + lyxerr << "----------------------------------------" << endl + << s1 << endl; + if (!s2.empty()) + lyxerr << s2 << endl; + if (!s3.empty()) + lyxerr << s3 << endl; + lyxerr << "Assuming answer is "; + if (default_value == 1) + lyxerr << "yes"; + else if (default_value == 2) + lyxerr << "no"; + else + lyxerr << "cancel"; + lyxerr << endl + << "----------------------------------------" << endl; + return default_value; + } + fl_set_choices_shortcut(scex(_("Yes|Yy#y")), scex(_("No|Nn#n")), scex(_("Cancel|^["))); @@ -428,8 +232,17 @@ int AskConfirmation(string const & s1, string const & s2, string const & s3) // Asks for a text -pair askForText(string const & msg, string const & dflt) +pair const +askForText(string const & msg, string const & dflt) { + if (!lyxrc.use_gui) { + lyxerr << "----------------------------------------" << endl + << msg << endl + << "Assuming answer is " << dflt + << "----------------------------------------" << endl; + return make_pair(true, dflt); + } + fl_set_resource("flInput.cancel.label", idex(_("Cancel|^["))); fl_set_resource("flInput.ok.label", idex(_("OK|#O"))); fl_set_resource("flInput.clear.label", idex(_("Clear|#e"))); @@ -453,7 +266,7 @@ void WarnReadonly(string const & file) /// Get the dpi setting of the current screen float getScreenDPI() { - Screen * scr = DefaultScreenOfDisplay(fl_get_display()); + Screen * scr = ScreenOfDisplay(fl_get_display(), fl_screen); //DefaultScreen(fl_get_display()); return ((HeightOfScreen(scr) * 25.4 / HeightMMOfScreen(scr)) + (WidthOfScreen(scr) * 25.4 / WidthMMOfScreen(scr))) / 2; }