]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/Dialogs.C
try this for distinguishing inner and outer tabs
[lyx.git] / src / frontends / xforms / Dialogs.C
index 0aaea3fcf9f342d039ac1cbb82c9396e6e6b8f11..6bbabbe2e76ed0539c85edc188e2320c99e7d3d9 100644 (file)
@@ -1,44 +1,77 @@
+/* This file is part of
+ * ======================================================
+ *
+ *           LyX, The Document Processor
+ *
+ *           Copyright 1995 Matthias Ettrich
+ *           Copyright 1995-2000 The LyX Team.
+ *
+ * ======================================================
+ */
+
 #include <config.h>
-#include FORMS_H_LOCATION
 
 #include "Dialogs.h"
+#include "FormBibitem.h"
+#include "FormBibtex.h"
 #include "FormCitation.h"
 #include "FormCopyright.h"
 #include "FormDocument.h"
 #include "FormError.h"
 #include "FormGraphics.h"
+#include "FormInclude.h"
 #include "FormIndex.h"
+#include "FormLog.h"
 #include "FormParagraph.h"
+#include "FormPreamble.h"
 #include "FormPreferences.h"
 #include "FormPrint.h"
 #include "FormRef.h"
+#include "FormSplash.h"
 #include "FormTabular.h"
+#include "FormTabularCreate.h"
 #include "FormToc.h"
 #include "FormUrl.h"
+#include "FormVCLog.h"
 
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
+using std::endl;
+
 // temporary till ported
 extern void ShowCredits();
 
 
+// Signal enabling all visible popups to be redrawn if so desired.
+// E.g., when the GUI colours have been remapped.
+Signal0<void> Dialogs::redrawGUI;
+
+
 Dialogs::Dialogs(LyXView * lv)
 {
+       dialogs_.push_back(new FormBibitem(lv, this));
+       dialogs_.push_back(new FormBibtex(lv, this));
        dialogs_.push_back(new FormCitation(lv, this));
        dialogs_.push_back(new FormCopyright(lv, this));
        dialogs_.push_back(new FormDocument(lv, this));
        dialogs_.push_back(new FormError(lv, this));
        dialogs_.push_back(new FormGraphics(lv, this));
+       dialogs_.push_back(new FormInclude(lv, this));
        dialogs_.push_back(new FormIndex(lv, this));
+       dialogs_.push_back(new FormLog(lv, this));
        dialogs_.push_back(new FormParagraph(lv, this));
+       dialogs_.push_back(new FormPreamble(lv, this));
        dialogs_.push_back(new FormPreferences(lv, this));
        dialogs_.push_back(new FormPrint(lv, this));
        dialogs_.push_back(new FormRef(lv, this));
+       dialogs_.push_back(new FormSplash(lv, this));
        dialogs_.push_back(new FormTabular(lv, this));
+       dialogs_.push_back(new FormTabularCreate(lv, this));
        dialogs_.push_back(new FormToc(lv, this));
        dialogs_.push_back(new FormUrl(lv, this));
+       dialogs_.push_back(new FormVCLog(lv, this));
 
        showCredits.connect(slot(ShowCredits));
 
@@ -47,6 +80,7 @@ Dialogs::Dialogs(LyXView * lv)
        hideAll.connect(hideBufferDependent.slot());
 }
 
+
 Dialogs::~Dialogs()
 {
        for (vector<DialogBase *>::iterator iter = dialogs_.begin();