mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-03 22:58:22 +02:00
25 lines
375 B
ObjectPascal
25 lines
375 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';
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|