File: dockedstrconsts.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (80 lines) | stat: -rw-r--r-- 3,812 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
unit DockedStrConsts;

{$mode objfpc}{$H+}

interface

uses
  // LCL
  ComCtrls;

resourceString
  SCode                       = 'Code';
  SDesigner                   = 'Form';
  SAnchors                    = 'Anchors';
  SAllowSizingCaption         = 'Allow size changing';
  SAllowSizingHint            = 'Grips can change size in Anchor Editor';
  SAnchorControlBorderCaption = 'Border Around Control';
  SAnchorControlColorCaption  = 'Control Background';
  SAnchorTabVisibleCaption    = 'Show Anchors Tab';
  SAnchorTabVisibleHint       = 'Show Anchor Editor';
  SAnchorTargetColorCaption   = 'Anchor Target';
  SAnchorTopColorCaption      = 'Top Anchor';
  SAnchorLeftColorCaption     = 'Left Anchor';
  SAnchorRightColorCaption    = 'Right Anchor';
  SAnchorBottomColorCaption   = 'Bottom Anchor';
  SAttachControl              = 'Attach Control';
  SAttachPoint                = 'Attach Control Sides';
  SAttachSide                 = 'Attach Control Side';
  SCaptionDockedFormEditor    = 'Docked Form Editor';
  SCaptureDistanceCaption     = 'Capture Distance';
  SCaptureDistanceHint        = 'Minimal distance to capture a control with mouse';
  SCircularDependency         = 'This will create a circular dependency.';
  SColorsCaption              = 'Colors';
  SDetachControl              = 'Detach Control';
  SDetachPoint                = 'Detach Control Sides';
  SDetachSide                 = 'Detach Control Side';
  SForceRefreshingCaption     = 'Force Refreshing At Sizing';
  SForceRefreshingHint        = 'Force refreshing form when user is sizing it';
  SMouseBorderFactorCaption   = 'Mouse cursor factor for BorderSpacing property';
  SMouseBorderFactorHint      = 'Mouse cursor factor is used to set small values of BorderSpacing property more precisely';
  SResizerColorCaption        = 'Resizer Color';
  SResizerColorHint           = 'Color of resizer bars';
  STabPositionCaption         = 'Tab Position';
  STabPositionHint            = 'Position of Code, Form, Anchors tabs';
  STreatAlignCaption          = 'Automatically treat Align properties';
  STreatAlignHint             = 'Automatically replace Align properties with appropriate Anchors';
  STreatBorderCaption         = 'Automatically treat BorderSpacing properties';
  STreatBorderHint            = 'Automatically replace BorderSpacing.Around properties of controls and adapt BorderSpacing.Left/Right/Top/Bottom if needed';
  SWarningCaption             = 'Warning';

  STabPositionTop             = 'Top';
  STabPositionBottom          = 'Bottom';
  STabPositionLeft            = 'Left';
  STabPositionRight           = 'Right';

  SArgumentOutOfRange         = 'Argument out of range.';
  setupDesignerClassic = 'Classic Form Editor (floating):';
  setupDesignerFloat = 'The form editor shows the edited form as a normal window.';
  setupDesignerModern = 'Modern Form Editor (docked/tabbed):';
  setupDesignerDocked = 'The form editor is part of the IDE''s source editor (tabbed interface).';
  setupDesignerInfo = 'The "classic" designer can be positioned on your screen independent of ' +
    'other parts of the IDE. The "modern" docked designer will be embedded into the ' +
    'source-edit window, and you will have a tab to toggle between source and form. ' +
    'You can open a 2nd source-edit window to see both at the same time.';
  setupMultiWindowIDEOption = 'You can change this in the IDE options under: "Docked Form Editor"';
  SEnableDockedDsgner = 'Show the form-editor as (docked) tab in the editor window (Requires IDE restart)';
  SIDELayout = 'IDE Layout';
  SFormEditor = 'Form editor / Designer';

const
  STabPosition: array [Low(TTabPosition)..High(TTabPosition)] of String = (
    STabPositionTop,
    STabPositionBottom,
    STabPositionLeft,
    STabPositionRight);

implementation

end.