]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gnome/Dialogs.C
fix problem with nroff detection, remove dead code with old floats, bogus message...
[lyx.git] / src / frontends / gnome / Dialogs.C
index 8886d5187b34792030f9b05588e8c00082b9a61c..85a44ae0cf888009597856c06b8f4c1ec49ad3c6 100644 (file)
 #include "gettext.h"
 
 #include "Dialogs.h"
+#include "BufferView.h"
 #include "gnomeBC.h"
 
-#include "ControlSplash.h"
 #include "ControlBibitem.h"
 #include "ControlBibtex.h"
 #include "ControlCharacter.h"
 #include "ControlCitation.h"
-#include "ControlCopyright.h"
-#include "ControlCredits.h"
 #include "ControlError.h"
 #include "ControlInclude.h"
 #include "ControlLog.h"
 #include "ControlUrl.h"
 #include "ControlVCLog.h"
-
+#include "ControlTabularCreate.h"
 #include "GUI.h"
 
 #include "FormUrl.h"
-#include "FormCredits.h"
-#include "FormCopyright.h"
 #include "FormError.h"
-
+#include "FormTabularCreate.h"
 /*
 #include "FormBibitem.h"
 #include "FormBibtex.h"
@@ -59,7 +55,6 @@
 #include "FormPrint.h"
 #include "FormRef.h"
 #include "FormSearch.h"
-#include "FormSplash.h"
 #include "FormTabular.h"
 #include "FormTabularCreate.h"
 #include "FormToc.h"
@@ -74,13 +69,10 @@ SigC::Signal0<void> Dialogs::redrawGUI;
 Dialogs::Dialogs(LyXView * lv)
 {
        add(new GUIUrl<FormUrl, gnomeBC>(*lv, *this));
-       add(new GUICredits<FormCredits, gnomeBC>(*lv, *this));
-       add(new GUICopyright<FormCopyright, gnomeBC>(*lv, *this));
        add(new GUIError<FormError, gnomeBC>(*lv, *this));
+       add(new GUITabularCreate<FormTabularCreate, gnomeBC>(*lv, *this));
 
 /*     
-       splash_.reset(new FormSplash(lv, this));
-
        add(new GUIBibitem<FormBibitem, xformsBC>(*lv, *this));
        add(new GUIBibtex<FormBibtex, xformsBC>(*lv, *this));
        add(new GUICharacter<FormCharacter, xformsBC>(*lv, *this));
@@ -103,7 +95,6 @@ Dialogs::Dialogs(LyXView * lv)
        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));
@@ -182,10 +173,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.