]> 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 38cb4a15d321e75a5c73a370648c0a4b5121fca8..5bc247bcde7a1a8da3e259764c2962779ed7f279 100644 (file)
 #endif
 
 #include "Dialogs.h"
-#include "BufferView.h"
-
-#include "xformsBC.h"
-
-#include "ControlAboutlyx.h"
-#include "ControlBibitem.h"
-#include "ControlBibtex.h"
-#include "ControlCharacter.h"
-#include "ControlCitation.h"
-#include "ControlError.h"
-#include "ControlERT.h"
-#include "ControlExternal.h"
-#include "ControlFloat.h"
-#include "ControlGraphics.h"
-#include "insets/insetgraphicsParams.h"
-#include "ControlInclude.h"
-#include "ControlIndex.h"
-#include "ControlLog.h"
-#include "ControlMinipage.h"
-#include "ControlPreamble.h"
-#include "ControlPrint.h"
-#include "ControlRef.h"
-#include "ControlSearch.h"
-#include "ControlSpellchecker.h"
-#include "ControlTabularCreate.h"
-#include "ControlThesaurus.h"
-#include "ControlToc.h"
-#include "ControlUrl.h"
-#include "ControlVCLog.h"
 
 #include "GUI.h"
+#include "xformsBC.h"
 
 #include "combox.h"       // needed for clean destruction of boost::scoped_ptr
 #include "form_aboutlyx.h"
@@ -69,6 +41,7 @@
 #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 "FormPrint.h"
 #include "FormRef.h"
 #include "FormSearch.h"
+#include "FormShowFile.h"
 #include "FormSpellchecker.h"
 #include "FormTabularCreate.h"
+#include "FormTexinfo.h" 
 #include "FormThesaurus.h" 
 #include "FormToc.h"
 #include "FormUrl.h"
@@ -128,11 +103,13 @@ Dialogs::Dialogs(LyXView * lv)
        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));