From: John Levon Date: Sun, 26 Aug 2001 19:18:45 +0000 (+0000) Subject: qt2 ert dialog X-Git-Tag: 1.6.10~20753 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=79a9fb32655bb8986d1239f350156ecf48815e55;p=features.git qt2 ert dialog git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2592 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt2/ChangeLog b/src/frontends/qt2/ChangeLog index d3846a53cf..b786c1d5b3 100644 --- a/src/frontends/qt2/ChangeLog +++ b/src/frontends/qt2/ChangeLog @@ -1,3 +1,11 @@ +2001-08-26 John Levon + + * Dialogs.C: + * Makefile.dialogs: + * QERT.[Ch]: + * QERTDialog.[Ch]: + * ui/QERTDialog.ui: add ERT dialog + 2001-08-26 John Levon * Dialogs.C: diff --git a/src/frontends/qt2/Dialogs.C b/src/frontends/qt2/Dialogs.C index a1e8293cd8..3b29f453ea 100644 --- a/src/frontends/qt2/Dialogs.C +++ b/src/frontends/qt2/Dialogs.C @@ -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(*lv, *this)); add(new GUICharacter(*lv, *this)); add(new GUIError(*lv, *this)); + add(new GUIERT(*lv, *this)); add(new GUIIndex(*lv, *this)); add(new GUIRef(*lv, *this)); add(new GUIUrl(*lv, *this)); diff --git a/src/frontends/qt2/Makefile.dialogs b/src/frontends/qt2/Makefile.dialogs index 3080e1f9a6..5b8bec850f 100644 --- a/src/frontends/qt2/Makefile.dialogs +++ b/src/frontends/qt2/Makefile.dialogs @@ -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 \