more guii moving around.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4192 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-05-23 15:43:25 +00:00
parent f49f5945e5
commit 98b254c810
20 changed files with 41 additions and 20 deletions

View File

@ -17,7 +17,7 @@
#include "BufferView.h" #include "BufferView.h"
#include "BufferView_pimpl.h" #include "BufferView_pimpl.h"
#include "lyxtext.h" #include "lyxtext.h"
#include "lyxscreen.h" #include "frontends/screen.h"
BufferView::BufferView(LyXView * o, int xpos, int ypos, BufferView::BufferView(LyXView * o, int xpos, int ypos,

View File

@ -16,7 +16,7 @@
#include "lyxtext.h" #include "lyxtext.h"
#include "frontends/LyXView.h" #include "frontends/LyXView.h"
#include "bufferlist.h" #include "bufferlist.h"
#include "lyxscreen.h" #include "frontends/screen.h"
#include "LaTeX.h" #include "LaTeX.h"
#include "BufferView_pimpl.h" #include "BufferView_pimpl.h"
#include "language.h" #include "language.h"

View File

@ -5,8 +5,8 @@
#endif #endif
#include "BufferView_pimpl.h" #include "BufferView_pimpl.h"
#include "WorkArea.h" #include "frontends/WorkArea.h"
#include "lyxscreen.h" #include "frontends/screen.h"
#include "lyxtext.h" #include "lyxtext.h"
#include "lyxrow.h" #include "lyxrow.h"
#include "paragraph.h" #include "paragraph.h"

View File

@ -6,7 +6,8 @@
#include "BufferView.h" #include "BufferView.h"
#include "commandtags.h" #include "commandtags.h"
#include "frontends/Timeout.h" #include "frontends/Timeout.h"
#include "WorkArea.h" // FIXME remove me
#include "frontends/WorkArea.h"
#include "box.h" #include "box.h"
#include "insets/insetspecialchar.h" #include "insets/insetspecialchar.h"
#include "support/types.h" #include "support/types.h"

View File

@ -91,8 +91,6 @@ lyx_SOURCES = \
Thesaurus.h \ Thesaurus.h \
ToolbarDefaults.C \ ToolbarDefaults.C \
ToolbarDefaults.h \ ToolbarDefaults.h \
WorkArea.C \
WorkArea.h \
box.h \ box.h \
box.C \ box.C \
broken_headers.h \ broken_headers.h \
@ -163,13 +161,10 @@ lyx_SOURCES = \
lyxlex.h \ lyxlex.h \
lyxlex_pimpl.C \ lyxlex_pimpl.C \
lyxlex_pimpl.h \ lyxlex_pimpl.h \
lyxlookup.C \
lyxlookup.h \
lyxrc.C \ lyxrc.C \
lyxrc.h \ lyxrc.h \
lyxrow.C \ lyxrow.C \
lyxrow.h \ lyxrow.h \
lyxscreen.h \
lyxserver.C \ lyxserver.C \
lyxserver.h \ lyxserver.h \
lyxtext.h \ lyxtext.h \
@ -186,7 +181,6 @@ lyx_SOURCES = \
paragraph.h \ paragraph.h \
paragraph_pimpl.C \ paragraph_pimpl.C \
paragraph_pimpl.h \ paragraph_pimpl.h \
screen.C \
sp_base.h \ sp_base.h \
sp_spell.C \ sp_spell.C \
sp_ispell.h \ sp_ispell.h \

View File

@ -1,3 +1,12 @@
2002-05-23 John Levon <moz@compsoc.man.ac.uk>
* WorkArea.h:
* WorkArea.C:
* Makefile.am: move here
* screen.h:
* screen.C: move here
2002-05-23 John Levon <moz@compsoc.man.ac.uk> 2002-05-23 John Levon <moz@compsoc.man.ac.uk>
* Liason.C: * Liason.C:

View File

@ -33,4 +33,8 @@ libfrontends_la_SOURCES = \
Toolbar.C \ Toolbar.C \
Toolbar.h \ Toolbar.h \
LyXView.C \ LyXView.C \
LyXView.h LyXView.h \
WorkArea.C \
WorkArea.h \
screen.C \
screen.h

View File

@ -21,7 +21,7 @@
#include "version.h" // lyx_version #include "version.h" // lyx_version
#if FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5) #if FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5)
#include "lyxlookup.h" #include "frontends/xforms/lyxlookup.h"
#endif #endif
#include "support/filetools.h" // LibFileSearch #include "support/filetools.h" // LibFileSearch

View File

@ -11,16 +11,16 @@
#include <config.h> #include <config.h>
#ifdef __GNUG__ #ifdef __GNUG__
#pragma implementation "lyxscreen.h" #pragma implementation
#endif #endif
#include <algorithm> #include <algorithm>
#include "lyxscreen.h" #include "screen.h"
#include "lyxtext.h" #include "lyxtext.h"
#include "lyxrow.h" #include "lyxrow.h"
#include "frontends/Painter.h" #include "frontends/Painter.h"
#include "WorkArea.h" #include "frontends/WorkArea.h"
#include "buffer.h" #include "buffer.h"
#include "BufferView.h" #include "BufferView.h"
#include "font.h" #include "font.h"

View File

@ -1,3 +1,10 @@
2002-05-23 John Levon <moz@compsoc.man.ac.uk>
* XFormsView.C:
* lyxlookup.h:
* lyxlookup.C:
* Makefile.am: move here
2002-05-23 John Levon <moz@compsoc.man.ac.uk> 2002-05-23 John Levon <moz@compsoc.man.ac.uk>
* DropDown.h: * DropDown.h:

View File

@ -196,6 +196,8 @@ libxforms_la_SOURCES = \
GUIRunTime.C \ GUIRunTime.C \
input_validators.C \ input_validators.C \
input_validators.h \ input_validators.h \
lyxlookup.C \
lyxlookup.h \
MathsSymbols.C \ MathsSymbols.C \
MathsSymbols.h \ MathsSymbols.h \
Menubar_pimpl.C \ Menubar_pimpl.C \

View File

@ -16,7 +16,7 @@
#include "XFormsView.h" #include "XFormsView.h"
#if FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5) #if FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5)
#include "lyxlookup.h" #include "frontends/xforms/lyxlookup.h"
#endif #endif
#include "minibuffer.h" #include "minibuffer.h"
#include "debug.h" #include "debug.h"

View File

@ -1,3 +1,7 @@
2002-05-23 John Levon <moz@compsoc.man.ac.uk>
* insettext.C: screen moved
2002-05-23 John Levon <moz@compsoc.man.ac.uk> 2002-05-23 John Levon <moz@compsoc.man.ac.uk>
* insetbib.C: * insetbib.C:

View File

@ -35,7 +35,7 @@
#include "lyxrc.h" #include "lyxrc.h"
#include "intl.h" #include "intl.h"
#include "trans_mgr.h" #include "trans_mgr.h"
#include "lyxscreen.h" #include "frontends/screen.h"
#include "gettext.h" #include "gettext.h"
#include "lyxfunc.h" #include "lyxfunc.h"
#include "ParagraphParameters.h" #include "ParagraphParameters.h"

View File

@ -27,7 +27,7 @@
#include "lyxrc.h" #include "lyxrc.h"
#include "gettext.h" #include "gettext.h"
#if FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5) #if FL_REVISION < 89 || (FL_REVISION == 89 && FL_FIXLEVEL < 5)
#include "lyxlookup.h" #include "frontends/xforms/lyxlookup.h"
#endif #endif
#include "bufferlist.h" #include "bufferlist.h"
#include "ColorHandler.h" #include "ColorHandler.h"

View File

@ -21,10 +21,10 @@
#include "lyxrc.h" #include "lyxrc.h"
#include "frontends/LyXView.h" #include "frontends/LyXView.h"
#include "frontends/Painter.h" #include "frontends/Painter.h"
#include "frontends/screen.h"
#include "tracer.h" #include "tracer.h"
#include "font.h" #include "font.h"
#include "encoding.h" #include "encoding.h"
#include "lyxscreen.h"
#include "bufferview_funcs.h" #include "bufferview_funcs.h"
#include "BufferView.h" #include "BufferView.h"
#include "language.h" #include "language.h"