mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-03 08:28:25 +00:00
font loader / color handler move
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4204 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2dabaa33de
commit
962a0c5585
@ -1,3 +1,18 @@
|
|||||||
|
2002-05-24 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
|
* ColorHandler.h:
|
||||||
|
* ColorHandler.C:
|
||||||
|
* FontInfo.h:
|
||||||
|
* FontInfo.C: moved to frontends/xforms/
|
||||||
|
|
||||||
|
* FontLoader.h:
|
||||||
|
* FontLoader.C: moved into frontends for GUIIzation
|
||||||
|
|
||||||
|
* Makefile.am:
|
||||||
|
* lyx_gui.C:
|
||||||
|
* lyxfont.C:
|
||||||
|
* lyxfunc.C: changes from above
|
||||||
|
|
||||||
2002-05-24 John Levon <moz@compsoc.man.ac.uk>
|
2002-05-24 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
* LColor.C: remove spurious X include
|
* LColor.C: remove spurious X include
|
||||||
|
@ -50,8 +50,6 @@ lyx_SOURCES = \
|
|||||||
Bullet.h \
|
Bullet.h \
|
||||||
Chktex.C \
|
Chktex.C \
|
||||||
Chktex.h \
|
Chktex.h \
|
||||||
ColorHandler.C \
|
|
||||||
ColorHandler.h \
|
|
||||||
CutAndPaste.C \
|
CutAndPaste.C \
|
||||||
CutAndPaste.h \
|
CutAndPaste.h \
|
||||||
DepTable.C \
|
DepTable.C \
|
||||||
@ -60,10 +58,6 @@ lyx_SOURCES = \
|
|||||||
FloatList.h \
|
FloatList.h \
|
||||||
Floating.C \
|
Floating.C \
|
||||||
Floating.h \
|
Floating.h \
|
||||||
FontInfo.C \
|
|
||||||
FontInfo.h \
|
|
||||||
FontLoader.C \
|
|
||||||
FontLoader.h \
|
|
||||||
FuncStatus.C \
|
FuncStatus.C \
|
||||||
FuncStatus.h \
|
FuncStatus.h \
|
||||||
LColor.C \
|
LColor.C \
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2002-05-24 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
|
* Makefile.am:
|
||||||
|
* font_loader.h: placeholder
|
||||||
|
|
||||||
|
* screen.C: use placeholder
|
||||||
|
|
||||||
2002-05-23 John Levon <moz@compsoc.man.ac.uk>
|
2002-05-23 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
* Makefile.am:
|
* Makefile.am:
|
||||||
|
@ -36,6 +36,7 @@ libfrontends_la_SOURCES = \
|
|||||||
LyXView.h \
|
LyXView.h \
|
||||||
WorkArea.C \
|
WorkArea.C \
|
||||||
WorkArea.h \
|
WorkArea.h \
|
||||||
|
font_loader.h \
|
||||||
font_metrics.h \
|
font_metrics.h \
|
||||||
screen.C \
|
screen.C \
|
||||||
screen.h
|
screen.h
|
||||||
|
3
src/frontends/font_loader.h
Normal file
3
src/frontends/font_loader.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
// very temporary
|
||||||
|
|
||||||
|
#include "xforms/xfont_loader.h"
|
@ -25,7 +25,7 @@
|
|||||||
#include "BufferView.h"
|
#include "BufferView.h"
|
||||||
#include "font_metrics.h"
|
#include "font_metrics.h"
|
||||||
#include "insets/insettext.h"
|
#include "insets/insettext.h"
|
||||||
#include "ColorHandler.h"
|
#include "frontends/xforms/ColorHandler.h"
|
||||||
#include "language.h"
|
#include "language.h"
|
||||||
|
|
||||||
using std::max;
|
using std::max;
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
2002-05-24 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
|
* ColorHandler.h:
|
||||||
|
* ColorHandler.C:
|
||||||
|
* FontInfo.h:
|
||||||
|
* FontInfo.C: moved here
|
||||||
|
|
||||||
|
* xfont_loader.h:
|
||||||
|
* xfont_loader.C: moved here
|
||||||
|
|
||||||
|
* Makefile.am:
|
||||||
|
* xfont_metrics.C: changes from above
|
||||||
|
|
||||||
2002-05-23 John Levon <moz@compsoc.man.ac.uk>
|
2002-05-23 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
* Makefile.am:
|
* Makefile.am:
|
||||||
|
@ -23,6 +23,8 @@ libxforms_la_SOURCES = \
|
|||||||
bmtable.h \
|
bmtable.h \
|
||||||
Color.C \
|
Color.C \
|
||||||
Color.h \
|
Color.h \
|
||||||
|
ColorHandler.C \
|
||||||
|
ColorHandler.h \
|
||||||
combox.C \
|
combox.C \
|
||||||
combox.h \
|
combox.h \
|
||||||
Dialogs.C \
|
Dialogs.C \
|
||||||
@ -31,6 +33,8 @@ libxforms_la_SOURCES = \
|
|||||||
FeedbackController.C \
|
FeedbackController.C \
|
||||||
FeedbackController.h \
|
FeedbackController.h \
|
||||||
FileDialog.C \
|
FileDialog.C \
|
||||||
|
FontInfo.C \
|
||||||
|
FontInfo.h \
|
||||||
FormFiledialog.h \
|
FormFiledialog.h \
|
||||||
FormFiledialog.C \
|
FormFiledialog.C \
|
||||||
form_filedialog.C \
|
form_filedialog.C \
|
||||||
@ -214,6 +218,8 @@ libxforms_la_SOURCES = \
|
|||||||
XFormsView.h \
|
XFormsView.h \
|
||||||
XPainter.C \
|
XPainter.C \
|
||||||
XPainter.h \
|
XPainter.h \
|
||||||
|
xfont_loader.C \
|
||||||
|
xfont_loader.h \
|
||||||
xfont_metrics.C \
|
xfont_metrics.C \
|
||||||
xfont_metrics.h \
|
xfont_metrics.h \
|
||||||
xforms_helpers.C \
|
xforms_helpers.C \
|
||||||
|
@ -12,10 +12,10 @@
|
|||||||
#include <cmath> // fabs()
|
#include <cmath> // fabs()
|
||||||
|
|
||||||
#ifdef __GNUG__
|
#ifdef __GNUG__
|
||||||
#pragma implementation "FontLoader.h"
|
#pragma implementation
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "FontLoader.h"
|
#include "xfont_loader.h"
|
||||||
#include "FontInfo.h"
|
#include "FontInfo.h"
|
||||||
#include "gettext.h"
|
#include "gettext.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
#include "support/lstrings.h"
|
#include "support/lstrings.h"
|
||||||
#include "xfont_metrics.h"
|
#include "xfont_metrics.h"
|
||||||
#include "FontLoader.h"
|
#include "xfont_loader.h"
|
||||||
#include "lyxrc.h"
|
#include "lyxrc.h"
|
||||||
#include "encoding.h"
|
#include "encoding.h"
|
||||||
#include "language.h"
|
#include "language.h"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-05-24 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
|
* GraphicsImageXPM.C: ColorHandler moved
|
||||||
|
|
||||||
2002-05-24 Juergen Vigna <jug@sad.it>
|
2002-05-24 Juergen Vigna <jug@sad.it>
|
||||||
|
|
||||||
* GraphicsCache.h:
|
* GraphicsCache.h:
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
#include "GraphicsImageXPM.h"
|
#include "GraphicsImageXPM.h"
|
||||||
#include "GraphicsParams.h"
|
#include "GraphicsParams.h"
|
||||||
#include "ColorHandler.h"
|
#include "frontends/xforms/ColorHandler.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "frontends/GUIRunTime.h" // x11Display, x11Screen
|
#include "frontends/GUIRunTime.h" // x11Display, x11Screen
|
||||||
#include "support/filetools.h" // IsFileReadable
|
#include "support/filetools.h" // IsFileReadable
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
#include "frontends/xforms/lyxlookup.h"
|
#include "frontends/xforms/lyxlookup.h"
|
||||||
#endif
|
#endif
|
||||||
#include "bufferlist.h"
|
#include "bufferlist.h"
|
||||||
#include "ColorHandler.h"
|
#include "frontends/xforms/ColorHandler.h"
|
||||||
|
|
||||||
#include "frontends/GUIRunTime.h"
|
#include "frontends/GUIRunTime.h"
|
||||||
#include "frontends/xforms/xforms_helpers.h" // for XformColor
|
#include "frontends/xforms/xforms_helpers.h" // for XformColor
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#include "lyxrc.h"
|
#include "lyxrc.h"
|
||||||
#include "lyxlex.h"
|
#include "lyxlex.h"
|
||||||
#include "language.h"
|
#include "language.h"
|
||||||
#include "FontLoader.h"
|
#include "frontends/font_loader.h"
|
||||||
#include "support/lstrings.h"
|
#include "support/lstrings.h"
|
||||||
#include "bufferparams.h" // stateText
|
#include "bufferparams.h" // stateText
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#include "lyxrow.h"
|
#include "lyxrow.h"
|
||||||
#include "bufferlist.h"
|
#include "bufferlist.h"
|
||||||
#include "BufferView.h"
|
#include "BufferView.h"
|
||||||
#include "ColorHandler.h"
|
#include "frontends/xforms/ColorHandler.h"
|
||||||
#include "lyxserver.h"
|
#include "lyxserver.h"
|
||||||
#include "intl.h"
|
#include "intl.h"
|
||||||
#include "lyx_main.h"
|
#include "lyx_main.h"
|
||||||
@ -41,7 +41,7 @@
|
|||||||
#include "converter.h"
|
#include "converter.h"
|
||||||
#include "exporter.h"
|
#include "exporter.h"
|
||||||
#include "importer.h"
|
#include "importer.h"
|
||||||
#include "FontLoader.h"
|
#include "frontends/font_loader.h"
|
||||||
#include "TextCache.h"
|
#include "TextCache.h"
|
||||||
#include "lyxfind.h"
|
#include "lyxfind.h"
|
||||||
#include "undo_funcs.h"
|
#include "undo_funcs.h"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-05-24 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
|
* math_support.C: font loader moved
|
||||||
|
|
||||||
2002-05-24 John Levon <moz@compsoc.man.ac.uk>
|
2002-05-24 John Levon <moz@compsoc.man.ac.uk>
|
||||||
|
|
||||||
* formulabase.C:
|
* formulabase.C:
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
#include "math_support.h"
|
#include "math_support.h"
|
||||||
#include "lyxfont.h"
|
#include "lyxfont.h"
|
||||||
#include "FontLoader.h"
|
#include "frontends/font_loader.h"
|
||||||
#include "frontends/font_metrics.h"
|
#include "frontends/font_metrics.h"
|
||||||
#include "math_cursor.h"
|
#include "math_cursor.h"
|
||||||
#include "math_defs.h"
|
#include "math_defs.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user