mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
qt2 ert dialog
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2592 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
883717e5ec
commit
79a9fb3265
@ -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:
|
||||
|
@ -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));
|
||||
|
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user