]> git.lyx.org Git - features.git/commitdiff
qt2 ert dialog
authorJohn Levon <levon@movementarian.org>
Sun, 26 Aug 2001 19:18:45 +0000 (19:18 +0000)
committerJohn Levon <levon@movementarian.org>
Sun, 26 Aug 2001 19:18:45 +0000 (19:18 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2592 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt2/ChangeLog
src/frontends/qt2/Dialogs.C
src/frontends/qt2/Makefile.dialogs

index d3846a53cf4e1c83de1c6749044ddb2e66865735..b786c1d5b33f358ee6b61f4c88d07480f7170bc1 100644 (file)
@@ -1,3 +1,11 @@
+2001-08-26  John Levon  <moz@compsoc.man.ac.uk>
+
+       * Dialogs.C:
+       * Makefile.dialogs:
+       * QERT.[Ch]:
+       * QERTDialog.[Ch]:
+       * ui/QERTDialog.ui: add ERT dialog
 2001-08-26  John Levon  <moz@compsoc.man.ac.uk>
 
        * Dialogs.C:
index a1e8293cd8361ecebe53782490f17df41645694c..3b29f453ea20a435943f4395a3ac4a2b7e1b9c08 100644 (file)
@@ -18,6 +18,7 @@
 #include "QCharacterDialog.h"
 #include "QCitationDialog.h"
 #include "QErrorDialog.h"
+#include "QERTDialog.h"
 #include "QIndexDialog.h"
 #include "QRefDialog.h"
 #include "QURLDialog.h"
@@ -28,6 +29,7 @@
 #include "QCharacter.h"
 #include "QCitation.h"
 #include "QError.h"
+#include "QERT.h"
 #include "QIndex.h"
 #include "QParagraph.h"
 #include "QPrint.h"
@@ -50,6 +52,7 @@
 #include "controllers/ControlCharacter.h"
 #include "controllers/ControlCitation.h"
 #include "controllers/ControlError.h"
+#include "controllers/ControlERT.h"
 #include "controllers/ControlIndex.h"
 #include "controllers/ControlRef.h"
 #include "controllers/ControlSplash.h"
@@ -57,7 +60,6 @@
 #if 0
 #include "controllers/ControlButtons.h"
 #include "controllers/ControlCitation.h"
-#include "controllers/ControlERT.h"
 #include "controllers/ControlExternal.h"
 #include "controllers/ControlFloat.h"
 #include "controllers/ControlGraphics.h"
@@ -93,6 +95,7 @@ Dialogs::Dialogs(LyXView * lv)
        add(new GUIBibtex<QBibtex, Qt2BC>(*lv, *this));
        add(new GUICharacter<QCharacter, Qt2BC>(*lv, *this));
        add(new GUIError<QError, Qt2BC>(*lv, *this)); 
+       add(new GUIERT<QERT, Qt2BC>(*lv, *this)); 
        add(new GUIIndex<QIndex, Qt2BC>(*lv, *this));
        add(new GUIRef<QRef, Qt2BC>(*lv, *this));
        add(new GUIUrl<QURL, Qt2BC>(*lv, *this));
index 3080e1f9a626831cf53fd54db48dd6101c531cf8..5b8bec850f03d38f0f34a296d889f0419fc95fe7 100644 (file)
@@ -8,6 +8,7 @@ DIALOGS = \
        QCitation \
        QDocument \
        QError \
+       QERT \
        QIndex \
        QParagraph \
        QPrint \
@@ -33,6 +34,8 @@ DIALOGSOURCES = \
        QDocument.C QDocumentDialog.C \
        QError.h QErrorDialog.h \
        QError.C QErrorDialog.C \
+       QERT.h QERTDialog.h \
+       QERT.C QERTDialog.C \
        QIndex.h QIndexDialog.h \
        QIndex.C QIndexDialog.C \
        QParagraph.h QParagraphDialog.h \
@@ -60,6 +63,7 @@ MOCDIALOGS = \
        QCitationDialog_moc.C \
        QDocumentDialog_moc.C \
        QErrorDialog_moc.C \
+       QERTDialog_moc.C \
        QIndexDialog_moc.C \
        QParagraphDialog_moc.C \
        QPrintDialog_moc.C \
@@ -85,6 +89,8 @@ UIDIALOGS = \
        QDocumentDialogBase.C \
        QErrorDialogBase.C \
        QErrorDialogBase.h \
+       QERTDialogBase.C \
+       QERTDialogBase.h \
        QIndexDialogBase.h \
        QIndexDialogBase.C \
        QParagraphDialogBase.h \
@@ -110,6 +116,7 @@ UIMOCDIALOGS = \
        QCitationDialogBase_moc.C \
        QDocumentDialogBase_moc.C \
        QErrorDialogBase_moc.C \
+       QERTDialogBase_moc.C \
        QIndexDialogBase_moc.C \
        QParagraphDialogBase_moc.C \
        QPrintDialogBase_moc.C \