--- ../lyx-1.4.0/src/lyxrc.h 2005-03-25 16:27:30.000000000 +0100 +++ src/lyxrc.h 2005-12-19 07:55:22.000000000 +0100 @@ -116,6 +116,11 @@ RC_SCREEN_FONT_SIZES, RC_SCREEN_FONT_TYPEWRITER, RC_SCREEN_FONT_TYPEWRITER_FOUNDRY, + RC_SCREEN_GEOMETRY_HEIGHT, + RC_SCREEN_GEOMETRY_WIDTH, + RC_SCREEN_GEOMETRY_XPOS, + RC_SCREEN_GEOMETRY_XYSAVED, + RC_SCREEN_GEOMETRY_YPOS, RC_SCREEN_ZOOM, RC_SERVERPIPE, RC_SET_COLOR, @@ -384,6 +389,17 @@ * The string is input, stored and output in native format. */ std::string path_prefix; + + /// True if xpos/ypos are specified in preferences + bool geometry_xysaved; + /// XPosition of MainWindow + int geometry_xpos; + /// YPosition of MainWindow + int geometry_ypos; + /// Width of MainWindow + int geometry_width; + /// Height of MainWindow + int geometry_height; };