]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/Dialogs.C
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / Dialogs.C
index 7e27ca071fd5b142a0ec9f2f8e1ac732958e97d1..5bc247bcde7a1a8da3e259764c2962779ed7f279 100644 (file)
@@ -4,13 +4,12 @@
  *           LyX, The Document Processor
  *
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+ *           Copyright 1995-2001 The LyX Team.
  *
  * ======================================================
  */
 
 #include <config.h>
-#include FORMS_H_LOCATION
 
 #ifdef __GNUG__
 #pragma implementation
 
 #include "Dialogs.h"
 
-#include "ControlBibitem.h"
-#include "ControlCitation.h"
+#include "GUI.h"
 #include "xformsBC.h"
 
+#include "combox.h"       // needed for clean destruction of boost::scoped_ptr
+#include "form_aboutlyx.h"
+#include "form_bibitem.h"
+#include "form_bibtex.h"
+#include "form_browser.h"
+#include "form_character.h"
+#include "form_citation.h"
+#include "form_error.h"
+#include "form_ert.h"
+#include "form_external.h"
+#include "form_float.h"
+#include "form_graphics.h"
+#include "form_include.h"
+#include "form_index.h"
+#include "form_minipage.h"
+#include "form_preamble.h"
+#include "form_print.h"
+#include "form_ref.h"
+#include "form_search.h"
+#include "form_spellchecker.h"
+#include "form_tabular_create.h"
+#include "form_texinfo.h"
+#include "form_thesaurus.h"
+#include "form_toc.h"
+#include "form_url.h"
+
+#include "FormAboutlyx.h"
 #include "FormBibitem.h"
 #include "FormBibtex.h"
-#include "FormCitation.h"
 #include "FormCharacter.h"
-#include "FormCopyright.h"
-#include "FormCredits.h"
-#include "FormDocument.h"
+#include "FormCitation.h"
 #include "FormError.h"
-#include "FormExternal.h" 
+#include "FormERT.h"
+#include "FormExternal.h"
+#include "FormFloat.h"
 #include "FormGraphics.h"
 #include "FormInclude.h"
 #include "FormIndex.h"
 #include "FormLog.h"
-#include "FormMaths.h"
-#include "FormParagraph.h"
+#include "FormMinipage.h"
 #include "FormPreamble.h"
-#include "FormPreferences.h"
 #include "FormPrint.h"
 #include "FormRef.h"
 #include "FormSearch.h"
-#include "FormSplash.h"
-#include "FormTabular.h"
+#include "FormShowFile.h"
+#include "FormSpellchecker.h"
 #include "FormTabularCreate.h"
+#include "FormTexinfo.h" 
+#include "FormThesaurus.h" 
 #include "FormToc.h"
 #include "FormUrl.h"
 #include "FormVCLog.h"
-#include "FormMinipage.h"
 
-// Signal enabling all visible popups to be redrawn if so desired.
+#include "FormDocument.h"
+#include "FormMathsPanel.h"
+#include "FormParagraph.h"
+#include "FormPreferences.h"
+#include "FormTabular.h"
+
+// Signal enabling all visible dialogs to be redrawn if so desired.
 // E.g., when the GUI colours have been remapped.
 SigC::Signal0<void> Dialogs::redrawGUI;
 
 Dialogs::Dialogs(LyXView * lv)
 {
-       splash_.reset(new FormSplash(lv, this));
-
-       add(new GUICitation<FormCitation, xformsBC>(*lv, *this));
+       add(new GUIAboutlyx<FormAboutlyx, xformsBC>(*lv, *this));
        add(new GUIBibitem<FormBibitem, xformsBC>(*lv, *this));
+       add(new GUIBibtex<FormBibtex, xformsBC>(*lv, *this));
+       add(new GUICharacter<FormCharacter, xformsBC>(*lv, *this));
+       add(new GUICitation<FormCitation, xformsBC>(*lv, *this));
+       add(new GUIError<FormError, xformsBC>(*lv, *this));
+       add(new GUIERT<FormERT, xformsBC>(*lv, *this));
+       add(new GUIExternal<FormExternal, xformsBC>(*lv, *this));
+       add(new GUIGraphics<FormGraphics, xformsBC>(*lv, *this));
+       add(new GUIInclude<FormInclude, xformsBC>(*lv, *this));
+       add(new GUIIndex<FormIndex, xformsBC>(*lv, *this));
+       add(new GUILog<FormLog, xformsBC>(*lv, *this));
+       add(new GUIMinipage<FormMinipage, xformsBC>(*lv, *this));
+       add(new GUIFloat<FormFloat, xformsBC>(*lv, *this));
+       add(new GUIPreamble<FormPreamble, xformsBC>(*lv, *this));
+       add(new GUIPrint<FormPrint, xformsBC>(*lv, *this));
+       add(new GUIRef<FormRef, xformsBC>(*lv, *this));
+       add(new GUISearch<FormSearch, xformsBC>(*lv, *this));
+       add(new GUIShowFile<FormShowFile, xformsBC>(*lv, *this));
+       add(new GUISpellchecker<FormSpellchecker, xformsBC>(*lv, *this));
+       add(new GUITabularCreate<FormTabularCreate, xformsBC>(*lv, *this));
+#ifdef HAVE_LIBAIKSAURUS
+       add(new GUIThesaurus<FormThesaurus, xformsBC>(*lv, *this));
+#endif
+       add(new GUITexinfo<FormTexinfo, xformsBC>(*lv, *this));
+       add(new GUIToc<FormToc, xformsBC>(*lv, *this));
+       add(new GUIUrl<FormUrl, xformsBC>(*lv, *this));
+       add(new GUIVCLog<FormVCLog, xformsBC>(*lv, *this));
 
-       add(new FormBibtex(lv, this));
-       add(new FormCharacter(lv, this));
-       add(new FormCopyright(lv, this));
-       add(new FormCredits(lv, this));
        add(new FormDocument(lv, this));
-       add(new FormError(lv, this));
-       add(new FormExternal(lv, this));
-       add(new FormGraphics(lv, this));
-       add(new FormInclude(lv, this));
-       add(new FormIndex(lv, this));
-       add(new FormLog(lv, this));
-       add(new FormMaths(lv, this));
+       add(new FormMathsPanel(lv, this));
        add(new FormParagraph(lv, this));
-       add(new FormPreamble(lv, this));
        add(new FormPreferences(lv, this));
-       add(new FormPrint(lv, this));
-       add(new FormRef(lv, this));
-       add(new FormSearch(lv, this));
-       add(new FormSplash(lv, this));
        add(new FormTabular(lv, this));
-       add(new FormTabularCreate(lv, this));
-       add(new FormToc(lv, this));
-       add(new FormUrl(lv, this));
-       add(new FormVCLog(lv, this));
-       add(new FormMinipage(lv, this));
        
        // reduce the number of connections needed in
        // dialogs by a simple connection here.
@@ -158,10 +191,6 @@ A.  To avoid a segfault.
        code wrapped up like that in the form_copyright.[Ch] which is awkward
        but will at least allow multiple instances of the same dialog.
 
-       Signals will also be a great help in controlling the splashscreen --
-       once signalled to hide it can disconnect from the signal and remove
-       itself from memory.
-
        LyXFuncs will be used for requesting/setting LyX internal info.  This
        will ensure that scripts or LyXServer-connected applications can all
        have access to the same calls as the internal user-interface.