2000-11-13 10:35:02 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-03-22 11:24:36 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-11-13 10:35:02 +00:00
|
|
|
*
|
|
|
|
* ======================================================
|
|
|
|
*/
|
|
|
|
|
2000-06-12 11:55:12 +00:00
|
|
|
#include <config.h>
|
2001-03-15 13:37:04 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
2000-06-12 11:55:12 +00:00
|
|
|
|
|
|
|
#include "Dialogs.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
|
2001-03-22 11:24:36 +00:00
|
|
|
#include "GUI.h"
|
2002-01-16 14:47:58 +00:00
|
|
|
#include "xformsBC.h"
|
2001-03-22 11:24:36 +00:00
|
|
|
|
|
|
|
#include "combox.h" // needed for clean destruction of boost::scoped_ptr
|
2001-07-13 14:03:48 +00:00
|
|
|
#include "form_aboutlyx.h"
|
2001-03-21 13:27:03 +00:00
|
|
|
#include "form_bibitem.h"
|
2001-03-20 10:14:03 +00:00
|
|
|
#include "form_bibtex.h"
|
|
|
|
#include "form_browser.h"
|
2001-03-21 13:27:03 +00:00
|
|
|
#include "form_character.h"
|
2001-03-20 10:14:03 +00:00
|
|
|
#include "form_citation.h"
|
2001-03-23 17:09:34 +00:00
|
|
|
#include "form_error.h"
|
2001-08-06 14:55:02 +00:00
|
|
|
#include "form_ert.h"
|
2001-07-30 11:56:00 +00:00
|
|
|
#include "form_external.h"
|
|
|
|
#include "form_float.h"
|
2002-02-27 09:59:52 +00:00
|
|
|
#include "form_forks.h"
|
2001-03-28 13:11:08 +00:00
|
|
|
#include "form_graphics.h"
|
2001-03-23 17:09:34 +00:00
|
|
|
#include "form_include.h"
|
2001-03-28 13:11:08 +00:00
|
|
|
#include "form_index.h"
|
2001-03-27 16:03:28 +00:00
|
|
|
#include "form_minipage.h"
|
|
|
|
#include "form_preamble.h"
|
2001-03-27 10:43:10 +00:00
|
|
|
#include "form_print.h"
|
2001-03-26 13:16:57 +00:00
|
|
|
#include "form_ref.h"
|
2001-03-26 15:25:37 +00:00
|
|
|
#include "form_search.h"
|
2001-07-13 11:50:39 +00:00
|
|
|
#include "form_spellchecker.h"
|
2001-03-26 14:33:58 +00:00
|
|
|
#include "form_tabular_create.h"
|
2001-10-09 15:20:10 +00:00
|
|
|
#include "form_texinfo.h"
|
2001-07-29 10:42:11 +00:00
|
|
|
#include "form_thesaurus.h"
|
2001-03-30 19:24:28 +00:00
|
|
|
#include "form_toc.h"
|
2001-03-23 18:46:11 +00:00
|
|
|
#include "form_url.h"
|
2001-03-20 10:14:03 +00:00
|
|
|
|
2001-07-13 14:03:48 +00:00
|
|
|
#include "FormAboutlyx.h"
|
2001-02-12 14:09:09 +00:00
|
|
|
#include "FormBibitem.h"
|
|
|
|
#include "FormBibtex.h"
|
2001-03-21 13:27:03 +00:00
|
|
|
#include "FormCharacter.h"
|
2000-08-03 12:56:25 +00:00
|
|
|
#include "FormCitation.h"
|
2001-03-23 17:09:34 +00:00
|
|
|
#include "FormError.h"
|
2001-08-06 14:55:02 +00:00
|
|
|
#include "FormERT.h"
|
2001-07-30 11:56:00 +00:00
|
|
|
#include "FormExternal.h"
|
|
|
|
#include "FormFloat.h"
|
2002-02-27 09:59:52 +00:00
|
|
|
#include "FormForks.h"
|
2001-03-28 13:11:08 +00:00
|
|
|
#include "FormGraphics.h"
|
2001-03-23 17:09:34 +00:00
|
|
|
#include "FormInclude.h"
|
2001-03-28 13:11:08 +00:00
|
|
|
#include "FormIndex.h"
|
2001-03-20 10:14:03 +00:00
|
|
|
#include "FormLog.h"
|
2001-03-27 16:03:28 +00:00
|
|
|
#include "FormMinipage.h"
|
|
|
|
#include "FormPreamble.h"
|
2001-03-27 10:43:10 +00:00
|
|
|
#include "FormPrint.h"
|
2001-03-26 13:16:57 +00:00
|
|
|
#include "FormRef.h"
|
2001-03-26 15:25:37 +00:00
|
|
|
#include "FormSearch.h"
|
2001-10-09 15:20:10 +00:00
|
|
|
#include "FormShowFile.h"
|
2001-07-13 11:50:39 +00:00
|
|
|
#include "FormSpellchecker.h"
|
2001-03-26 14:33:58 +00:00
|
|
|
#include "FormTabularCreate.h"
|
2001-10-09 15:20:10 +00:00
|
|
|
#include "FormTexinfo.h"
|
2001-07-29 10:42:11 +00:00
|
|
|
#include "FormThesaurus.h"
|
2001-03-30 19:24:28 +00:00
|
|
|
#include "FormToc.h"
|
2001-03-23 18:46:11 +00:00
|
|
|
#include "FormUrl.h"
|
2001-03-20 10:14:03 +00:00
|
|
|
#include "FormVCLog.h"
|
|
|
|
|
2000-08-11 14:42:20 +00:00
|
|
|
#include "FormDocument.h"
|
2001-03-19 15:38:22 +00:00
|
|
|
#include "FormMathsPanel.h"
|
2000-09-25 15:59:27 +00:00
|
|
|
#include "FormParagraph.h"
|
2000-08-03 12:56:25 +00:00
|
|
|
#include "FormPreferences.h"
|
2000-07-11 15:08:54 +00:00
|
|
|
#include "FormTabular.h"
|
2000-06-12 11:55:12 +00:00
|
|
|
|
2000-11-10 17:29:47 +00:00
|
|
|
|
2000-06-12 11:55:12 +00:00
|
|
|
Dialogs::Dialogs(LyXView * lv)
|
|
|
|
{
|
2001-07-13 14:03:48 +00:00
|
|
|
add(new GUIAboutlyx<FormAboutlyx, xformsBC>(*lv, *this));
|
2001-03-15 13:37:04 +00:00
|
|
|
add(new GUIBibitem<FormBibitem, xformsBC>(*lv, *this));
|
2001-03-19 16:37:01 +00:00
|
|
|
add(new GUIBibtex<FormBibtex, xformsBC>(*lv, *this));
|
2001-03-21 13:27:03 +00:00
|
|
|
add(new GUICharacter<FormCharacter, xformsBC>(*lv, *this));
|
|
|
|
add(new GUICitation<FormCitation, xformsBC>(*lv, *this));
|
2001-03-23 17:09:34 +00:00
|
|
|
add(new GUIError<FormError, xformsBC>(*lv, *this));
|
2001-08-06 14:55:02 +00:00
|
|
|
add(new GUIERT<FormERT, xformsBC>(*lv, *this));
|
2001-03-30 09:51:46 +00:00
|
|
|
add(new GUIExternal<FormExternal, xformsBC>(*lv, *this));
|
2002-02-27 09:59:52 +00:00
|
|
|
add(new GUIForks<FormForks, xformsBC>(*lv, *this));
|
2001-03-28 13:11:08 +00:00
|
|
|
add(new GUIGraphics<FormGraphics, xformsBC>(*lv, *this));
|
2001-03-23 17:09:34 +00:00
|
|
|
add(new GUIInclude<FormInclude, xformsBC>(*lv, *this));
|
2001-03-28 13:11:08 +00:00
|
|
|
add(new GUIIndex<FormIndex, xformsBC>(*lv, *this));
|
2001-03-20 10:14:03 +00:00
|
|
|
add(new GUILog<FormLog, xformsBC>(*lv, *this));
|
2001-03-27 16:03:28 +00:00
|
|
|
add(new GUIMinipage<FormMinipage, xformsBC>(*lv, *this));
|
2001-07-30 11:56:00 +00:00
|
|
|
add(new GUIFloat<FormFloat, xformsBC>(*lv, *this));
|
2001-03-27 16:03:28 +00:00
|
|
|
add(new GUIPreamble<FormPreamble, xformsBC>(*lv, *this));
|
2001-03-27 10:43:10 +00:00
|
|
|
add(new GUIPrint<FormPrint, xformsBC>(*lv, *this));
|
2001-03-26 13:16:57 +00:00
|
|
|
add(new GUIRef<FormRef, xformsBC>(*lv, *this));
|
2001-03-26 15:25:37 +00:00
|
|
|
add(new GUISearch<FormSearch, xformsBC>(*lv, *this));
|
2001-10-09 15:20:10 +00:00
|
|
|
add(new GUIShowFile<FormShowFile, xformsBC>(*lv, *this));
|
2001-07-13 11:50:39 +00:00
|
|
|
add(new GUISpellchecker<FormSpellchecker, xformsBC>(*lv, *this));
|
2001-03-26 15:25:37 +00:00
|
|
|
add(new GUITabularCreate<FormTabularCreate, xformsBC>(*lv, *this));
|
2001-07-29 10:42:11 +00:00
|
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
|
|
add(new GUIThesaurus<FormThesaurus, xformsBC>(*lv, *this));
|
|
|
|
#endif
|
2001-10-09 15:20:10 +00:00
|
|
|
add(new GUITexinfo<FormTexinfo, xformsBC>(*lv, *this));
|
2001-03-30 19:24:28 +00:00
|
|
|
add(new GUIToc<FormToc, xformsBC>(*lv, *this));
|
2001-03-23 18:46:11 +00:00
|
|
|
add(new GUIUrl<FormUrl, xformsBC>(*lv, *this));
|
2001-03-20 10:14:03 +00:00
|
|
|
add(new GUIVCLog<FormVCLog, xformsBC>(*lv, *this));
|
2000-06-12 11:55:12 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
add(new FormDocument(lv, this));
|
2001-03-19 15:38:22 +00:00
|
|
|
add(new FormMathsPanel(lv, this));
|
2001-03-15 13:37:04 +00:00
|
|
|
add(new FormParagraph(lv, this));
|
|
|
|
add(new FormPreferences(lv, this));
|
|
|
|
add(new FormTabular(lv, this));
|
|
|
|
|
2000-06-12 11:55:12 +00:00
|
|
|
// reduce the number of connections needed in
|
|
|
|
// dialogs by a simple connection here.
|
|
|
|
hideAll.connect(hideBufferDependent.slot());
|
|
|
|
}
|