mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:17:52 +02:00
32 lines
679 B
ObjectPascal
32 lines
679 B
ObjectPascal
unit StrMiniMap;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
const
|
|
SConfigFile = 'minimap.xml';
|
|
|
|
KeyEnabled = 'Enabled';
|
|
KeyAlignLeft = 'AlignLeft';
|
|
KeyWidth = 'Width';
|
|
KeyViewWindowColor = 'ViewWindowColor';
|
|
KeyViewWindowTextColor = 'ViewWindowTextColor';
|
|
KeyInitialFontSize = 'InitialFontSize';
|
|
|
|
resourcestring
|
|
SMinimapConfigTitle = 'Minimap';
|
|
SShowMinimap = 'Show minimap';
|
|
SPutMapLeftOfEditorRe = 'Put minimap left of editor (requires IDE restart for '
|
|
+'existing tabs)';
|
|
SMapWidth = 'Minimap width';
|
|
SInitialFontSize = 'Initial font size';
|
|
SViewWindowColor = 'View window color';
|
|
SViewWindowTextColor = 'View window text color';
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|