From 1b6bcf5faecb708b48076dc21f5d05bbf7df51e6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20Gullik=20Bj=C3=B8nnes?= Date: Wed, 29 May 2002 15:21:23 +0000 Subject: [PATCH] =?utf8?q?2002-05-29=20=20Lars=20Gullik=20Bj=EF=BF=BDnnes?= =?utf8?q?=20=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Dialogs.C (Dialogs): simplify creation of dialog objects a bit. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4278 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/xforms/ChangeLog | 18 +++++--- src/frontends/xforms/Dialogs.C | 84 ++++++++++++++++++++++------------ 2 files changed, 67 insertions(+), 35 deletions(-) diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index 876387cd47..a8607c4e19 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,14 +1,18 @@ +2002-05-29 Lars Gullik Bjønnes + + * Dialogs.C (Dialogs): simplify creation of dialog objects a bit. + 2002-05-28 Jean-Marc Lasgouttes * FormDocument.C (input): set preamble too when saving default - template. + template. 2002-05-26 John Levon * Makefile.am: * XWorkArea.h: * XWorkArea.C: moved here - + 2002-05-24 John Levon * ColorHandler.h: @@ -21,14 +25,14 @@ * Makefile.am: * xfont_metrics.C: changes from above - + 2002-05-23 John Levon * Makefile.am: * XPainter.C: * xfont_metrics.h: * xfont_metrics.C: moved font metrics code - + 2002-05-24 Juergen Vigna * FormMathsBitmap.C: include local includes first (selfcontainment) @@ -40,7 +44,7 @@ * lyxlookup.h: * lyxlookup.C: * Makefile.am: move here - + 2002-05-23 John Levon * DropDown.h: @@ -61,13 +65,13 @@ * XFormsView.h: * XFormsView.C: LyXView is now in frontends/, XFormsView moved to here - + 2002-05-23 John Levon * Makefile.am: * XPainter.h: * XPainter.C: move Painter here - + 2002-05-22 Lars Gullik Bjønnes * Menubar_pimpl.C: add scoped_ptr.hpp diff --git a/src/frontends/xforms/Dialogs.C b/src/frontends/xforms/Dialogs.C index e2edfd3f64..09692f00b0 100644 --- a/src/frontends/xforms/Dialogs.C +++ b/src/frontends/xforms/Dialogs.C @@ -92,36 +92,64 @@ bool Dialogs::tooltipsEnabled() Dialogs::Dialogs(LyXView * lv) { - add(new GUIAboutlyx(*lv, *this)); - add(new GUIBibitem(*lv, *this)); - add(new GUIBibtex(*lv, *this)); - add(new GUICharacter(*lv, *this)); - add(new GUICitation(*lv, *this)); - add(new GUIError(*lv, *this)); - add(new GUIERT(*lv, *this)); - add(new GUIExternal(*lv, *this)); - add(new GUIForks(*lv, *this)); - add(new GUIGraphics(*lv, *this)); - add(new GUIInclude(*lv, *this)); - add(new GUIIndex(*lv, *this)); - add(new GUILog(*lv, *this)); - add(new GUIMinipage(*lv, *this)); - add(new GUIFloat(*lv, *this)); - add(new GUIPreamble(*lv, *this)); - add(new GUIPrint(*lv, *this)); - add(new GUIRef(*lv, *this)); - add(new GUISearch(*lv, *this)); - add(new GUISendto(*lv, *this)); - add(new GUIShowFile(*lv, *this)); - add(new GUISpellchecker(*lv, *this)); - add(new GUITabularCreate(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); #ifdef HAVE_LIBAIKSAURUS - add(new GUIThesaurus(*lv, *this)); + add(new GUI(*lv, *this)); #endif - add(new GUITexinfo(*lv, *this)); - add(new GUIToc(*lv, *this)); - add(new GUIUrl(*lv, *this)); - add(new GUIVCLog(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); + add(new GUI(*lv, *this)); add(new FormDocument(lv, this)); add(new FormMathsPanel(lv, this)); -- 2.39.2