groffstudio

Check-in [0e32df0ae5]
Login
Overview
Comment:[Feature] Added a loading window so you won't think groffstudio would procrastinate.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0e32df0ae59dd4e009b60a42de70a8b85741e5a4ba6e3abf81e913799800106b
User & Date: Cthulhux on 2024-01-11 10:38:22
Other Links: manifest | tags
Context
2024-01-11
10:43
undid showspecialchars (looks bad) check-in: afb9e6e06e user: Cthulhux tags: trunk
10:38
[Feature] Added a loading window so you won't think groffstudio would procrastinate. check-in: 0e32df0ae5 user: Cthulhux tags: trunk
2024-01-10
22:11
updated CHANGES.txt check-in: 530feaae99 user: Cthulhux tags: trunk
Changes

Modified CHANGES.txt from [3bc4eb8855] to [e8b4b3cfa7].

1
2
3
4
5
6
7
8
9
10

11
12
13
14
15
16
17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18










+







Version 0.13.0
2024-01-??

[Feature] Support for hdtbl.
[Changed] Build extras and build preprocessors are now listed in a multi-select box.
[Improved] If no error has occurred, the log file will contain a success message.
[Improved] The default font looked gross on macOS. This should be better now.
[Bugfix] Calling troff over the system default shell now, potentially finding more paths.
[Improved] BuildDocument uses a simpler execution approach now.
[Feature] macOS Cmd+X/C/V are supported now.
[Feature] Added a loading window so you won't think groffstudio would procrastinate.

-------------------------------

Version 0.12.0
2022-03-14

[Feature] If the installed version of troff is not detected as groff, a warning is displayed.

Modified src/groffstudio.lpi from [4ca94d1e21] to [914ef8da32].

19
20
21
22
23
24
25
26

27
28
29
30
31
32
33
19
20
21
22
23
24
25

26
27
28
29
30
31
32
33







-
+







        <Resource_0 FileName="..\LICENSE" Type="RCDATA" ResourceName="LICENSE"/>
      </Resources>
    </General>
    <VersionInfo>
      <UseVersionInfo Value="True"/>
      <AutoIncrementBuild Value="True"/>
      <MinorVersionNr Value="13"/>
      <BuildNr Value="2"/>
      <BuildNr Value="4"/>
      <Attributes pvaPreRelease="True"/>
      <StringTable ProductName="groffstudio"/>
    </VersionInfo>
    <BuildModes>
      <Item Name="Default" Default="True"/>
    </BuildModes>
    <PublishOptions>
73
74
75
76
77
78
79








80
81
82
83
84
85
86
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94







+
+
+
+
+
+
+
+







        <Filename Value="buildoutputwindow.pas"/>
        <IsPartOfProject Value="True"/>
        <ComponentName Value="BuildStatusWindow"/>
        <HasResources Value="True"/>
        <ResourceBaseClass Value="Form"/>
        <UnitName Value="BuildOutputWindow"/>
      </Unit>
      <Unit>
        <Filename Value="splashscreen.pas"/>
        <IsPartOfProject Value="True"/>
        <ComponentName Value="Splashscreen"/>
        <HasResources Value="True"/>
        <ResourceBaseClass Value="Form"/>
        <UnitName Value="Splashscreen"/>
      </Unit>
    </Units>
  </ProjectOptions>
  <CompilerOptions>
    <Version Value="11"/>
    <PathDelim Value="\"/>
    <Target>
      <Filename Value="groffstudio"/>

Modified src/groffstudio.lpr from [15b92cbe85] to [6bd99be7bf].

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
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

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+










-
-
+
+
-



+
+
+




+
+
+
+
+
+
+

+
+



program groffstudio;

{
  The contents of this file are subject to the terms of the
  Common Development and Distribution License, Version 1.1 only
  (the "License").  You may not use this file except in compliance
  with the License.

  See the file LICENSE in this distribution for details.
  A copy of the CDDL is also available via the Internet at
  https://spdx.org/licenses/CDDL-1.1.html

  When distributing Covered Code, include this CDDL HEADER in each
  file and include the contents of the LICENSE file from this
  distribution.
}

{$mode objfpc}{$H+}

uses
  {$IFDEF UNIX}
  cthreads,
  {$ENDIF}
  {$IFDEF HASAMIGA}
  athreads,
  {$ENDIF}
  Interfaces, // this includes the LCL widgetset
  Forms, lazcontrols, Unit1, Helpers, BuildOutputWindow
  Interfaces,
  Forms, lazcontrols, Unit1, Helpers, BuildOutputWindow, Splashscreen;
  { you can add units after this };

{$R *.res}

var
  Splash: TSplashscreenWindow;

begin
  RequireDerivedFormResource:=True;
  Application.Scaled:=True;
  Application.Initialize;
  
  { Load the loading screen }
  Splash := TSplashscreenWindow.Create(Application);
  Splash.Show;
  Splash.Update;
  Application.ProcessMessages;
  
  Application.CreateForm(TMainForm, MainForm);
  
  Splash.Close;
  Application.Run;
end.

Added src/splashscreen.lfm version [1492917ff1].





















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
object SplashscreenWindow: TSplashscreenWindow
  Left = 493
  Height = 80
  Top = 160
  Width = 168
  BorderStyle = bsNone
  Caption = 'preparing'
  ClientHeight = 80
  ClientWidth = 168
  FormStyle = fsSplash
  object Label1: TLabel
    Left = 16
    Height = 37
    Top = 16
    Width = 141
    Caption = 'preparing ...'
    Font.Height = -27
    ParentFont = False
  end
end

Added src/splashscreen.pas version [a952d1c450].











































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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
unit Splashscreen;

{
  The contents of this file are subject to the terms of the
  Common Development and Distribution License, Version 1.1 only
  (the "License").  You may not use this file except in compliance
  with the License.

  See the file LICENSE in this distribution for details.
  A copy of the CDDL is also available via the Internet at
  https://spdx.org/licenses/CDDL-1.1.html

  When distributing Covered Code, include this CDDL HEADER in each
  file and include the contents of the LICENSE file from this
  distribution.
}

{$mode ObjFPC}{$H+}

interface

uses
  Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls;

type

  { TSplashscreenWindow }

  TSplashscreenWindow = class(TForm)
    Label1: TLabel;
  private

  public

  end;

implementation

{$R *.lfm}

end.

Modified src/unit1.lfm from [e73da8b864] to [22616aa782].

1
2
3
4
5
6
7
8
9
10

11
12
13
14
15
16


17
18
19
20
21
22
23
1
2
3
4
5
6
7
8
9

10
11
12
13
14


15
16
17
18
19
20
21
22
23









-
+




-
-
+
+







object MainForm: TMainForm
  Left = 1073
  Height = 692
  Top = 99
  Width = 847
  Caption = 'groffstudio'
  ClientHeight = 692
  ClientWidth = 847
  DefaultMonitor = dmPrimary
  LCLVersion = '3.99.0.0'
  Position = poScreenCenter
  OnClose = FormClose
  OnCreate = FormCreate
  object MainStatusBar: TStatusBar
    Left = 0
    Height = 18
    Top = 674
    Height = 23
    Top = 669
    Width = 847
    Panels = <    
      item
        Text = 'file name with save status'
        Width = 200
      end    
      item
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
81
82
83
84
85
86
87


88
89

90
91
92
93
94
95
96


97
98

99
100
101
102
103
104
105


106
107

108
109
110
111
112
113
114


115
116

117
118
119
120
121
122
123


124
125

126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145

146
147
148

149
150
151
152
153
154
155


156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173


174
175
176
177
178
179
180
181
182
183
184
185
186
187

188
189

190
191
192
193
194
195
196
197
198
199

200
201

202
203
204
205
206
207
208
209
210
211
212
213
214




215
216
217
218
219
220
221
222
223
224

225
226

227
228
229
230
231
232
233
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
81
82
83
84
85


86
87
88

89
90
91
92
93
94


95
96
97

98
99
100
101
102
103


104
105
106

107
108
109
110
111
112


113
114
115

116
117
118
119
120
121


122
123
124

125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144

145
146
147

148
149
150
151
152
153


154
155
156
157
158
159
160
161
162
163
164
165
166
167
168

169
170


171
172
173
174
175
176
177
178
179
180
181

182
183
184

185
186

187
188
189
190
191
192
193
194
195
196

197
198

199
200
201
202
203
204
205
206
207
208




209
210
211
212
213
214
215
216
217
218
219
220
221

222
223

224
225
226
227
228
229
230
231







-
-
+
+




-
-
+
+





-
-
+
+



-
+

-
+





-
+


-
+











-
-
+
+

-
+





-
-
+
+

-
+





-
-
+
+

-
+





-
-
+
+

-
+





-
-
+
+

-
+



















-
+


-
+





-
-
+
+













-


-
-
+
+









-



-
+

-
+









-
+

-
+









-
-
-
-
+
+
+
+









-
+

-
+







    ActivePage = tsEdit
    Anchors = [akTop, akLeft, akRight, akBottom]
    Style = tsFlatButtons
    TabIndex = 0
    TabOrder = 1
    object tsEdit: TTabSheet
      Caption = 'edit a groff document'
      ClientHeight = 626
      ClientWidth = 821
      ClientHeight = 631
      ClientWidth = 819
      ParentFont = False
      object GroupBox1: TGroupBox
        Left = 10
        Height = 66
        Top = 555
        Width = 801
        Top = 560
        Width = 799
        Align = alBottom
        BorderSpacing.Left = 10
        BorderSpacing.Right = 10
        BorderSpacing.Bottom = 5
        Caption = 'build'
        ClientHeight = 39
        ClientWidth = 791
        ClientHeight = 46
        ClientWidth = 795
        TabOrder = 0
        object Label1: TLabel
          Left = 184
          Height = 16
          Height = 15
          Top = -4
          Width = 83
          Width = 72
          Caption = 'macro to use:'
          ParentColor = False
        end
        object cmbMacro: TComboBox
          Left = 184
          Height = 20
          Height = 23
          Top = 16
          Width = 100
          ItemHeight = 19
          ItemHeight = 15
          Items.Strings = (
            'man'
            'me'
            'mm'
            'mom'
            'ms'
          )
          TabOrder = 0
          Text = '[ select ]'
        end
        object Label2: TLabel
          Left = 659
          Height = 16
          Left = 672
          Height = 15
          Top = -4
          Width = 87
          Width = 78
          Anchors = [akTop, akRight]
          Caption = 'output format:'
          ParentColor = False
        end
        object rdPs: TRadioButton
          Left = 655
          Height = 18
          Left = 673
          Height = 19
          Top = 16
          Width = 85
          Width = 71
          Anchors = [akTop, akRight]
          Caption = 'PostScript'
          TabOrder = 1
        end
        object rdPdf: TRadioButton
          Left = 738
          Height = 18
          Left = 753
          Height = 19
          Top = 16
          Width = 50
          Width = 39
          Anchors = [akTop, akRight]
          Caption = 'PDF'
          TabOrder = 2
        end
        object Label3: TLabel
          Left = 400
          Height = 16
          Left = 419
          Height = 15
          Top = -4
          Width = 91
          Width = 76
          Anchors = [akTop, akRight]
          Caption = 'preprocessors:'
          ParentColor = False
        end
        object Label4: TLabel
          Left = 533
          Height = 16
          Left = 544
          Height = 15
          Top = -4
          Width = 41
          Width = 34
          Anchors = [akTop, akRight]
          Caption = 'extras:'
          ParentColor = False
        end
        object btnBuild: TButton
          Left = 0
          Height = 29
          Top = 10
          Width = 75
          Caption = 'build'
          Color = clLime
          Enabled = False
          Font.Style = [fsBold, fsItalic]
          ParentFont = False
          TabOrder = 3
          OnClick = btnBuildClick
        end
        object chkLogFile: TCheckBox
          Left = 80
          Height = 18
          Height = 19
          Hint = 'If enabled, a log file containing the groff output will be placed alongside the source document.'
          Top = 16
          Width = 79
          Width = 68
          Caption = 'log to file'
          Enabled = False
          TabOrder = 4
        end
        object chkBoxPreprocessors: TCheckComboBox
          Left = 415
          Height = 20
          Left = 419
          Height = 22
          Top = 15
          Width = 100
          Anchors = [akTop, akRight]
          ItemHeight = 16
          Items.Strings = (
            'chem'
            'eqn'
            'grn'
            'pic'
            'refer'
            'tbl'
          )
          TabOrder = 5
          Text = '0'
        end
        object chkBoxExtras: TCheckComboBox
          Left = 540
          Height = 20
          Left = 544
          Height = 22
          Top = 15
          Width = 100
          Anchors = [akTop, akRight]
          ItemHeight = 16
          Items.Strings = (
            'hdtbl'
            'Pdfmark'
          )
          TabOrder = 6
          Text = '0'
        end
      end
      object btnSaveGroff: TButton
        Left = 736
        Left = 734
        Height = 28
        Top = 523
        Top = 528
        Width = 75
        Anchors = [akRight, akBottom]
        Caption = 'save'
        Font.Style = [fsBold]
        ParentFont = False
        TabOrder = 1
        OnClick = btnSaveGroffClick
      end
      object btnLoadGroff: TButton
        Left = 655
        Left = 653
        Height = 28
        Top = 523
        Top = 528
        Width = 75
        Anchors = [akRight, akBottom]
        Caption = 'load'
        Font.Style = [fsBold]
        ParentFont = False
        TabOrder = 2
        OnClick = btnLoadGroffClick
      end
      object Label5: TLabel
        Left = 128
        Height = 16
        Top = 535
        Width = 509
        Left = 197
        Height = 15
        Top = 541
        Width = 438
        Anchors = [akRight, akBottom]
        Caption = 'note that everything build-related will be stored in the document''s storage directory'
        Font.Color = clBlue
        Font.Style = [fsItalic]
        ParentColor = False
        ParentFont = False
      end
      inline SynEdit1: TSynEdit
        Left = 10
        Height = 518
        Height = 523
        Top = 0
        Width = 801
        Width = 799
        Anchors = [akTop, akLeft, akRight, akBottom]
        Font.CharSet = 4
        Font.Height = -13
        Font.Name = 'Andale Mono'
        Font.Pitch = fpFixed
        Font.Quality = fqCleartypeNatural
        ParentColor = False
732
733
734
735
736
737
738
739
740


741
742
743

744
745

746
747
748
749
750

751
752

753
754
755
756
757
758
759
760
761

762
763

764
765
766
767
768
769

770
771

772
773
774
775
776
777
778
779


780
781
782
783
784


785
786
787
788
789
790
791


792
793
794
795

796
797

798
799
800
801
802
803

804
805

806
807
808
809
810
811
812
813

814
815
816
817
818
819
820
821
822
823
824
825

826
827

828
829
830
831
832
833
834
835
836

837
838

839
840
841
842
843
844

845
846

847
848
849
850
851
852
853
854

855
856

857
858
859
860
861
862
863
864
865
866
867

868
869

870
871
872
873
874
875
876
877

878
879

880
881
882
883
884
885
886
887


888
889
890

891
892

893
894
895
896
897
898
899
900
901

902
903

904
905
906
907
908
909

910
911

912
913
914
915
916
917
918
919

920
921

922
923
924
925
926
927
928
929

930
931

932
933
934
935
936
937
938
939
940
941

942
943
944
945
946
947
948
949

950
951

952
953
954
955
956
957
958
959
960
961
962

963
964

965
966
967
968
969
970
971
972
973
974
975

976
977

978
979
980
981
982
983
984
730
731
732
733
734
735
736


737
738
739
740

741
742

743
744
745
746
747

748
749

750
751
752
753
754
755
756
757
758

759
760

761
762
763
764
765
766

767
768

769
770
771
772
773
774
775


776
777
778
779
780


781
782
783
784
785
786
787


788
789
790
791
792

793
794

795
796
797
798
799
800

801
802

803
804
805
806
807
808
809
810

811
812
813
814
815
816
817
818
819
820
821
822

823
824

825
826
827
828
829
830
831
832
833

834
835

836
837
838
839
840
841

842
843

844
845
846
847
848
849
850
851

852
853

854
855
856
857
858
859
860
861
862
863
864

865
866

867
868
869
870
871
872
873
874

875
876

877
878
879
880
881
882
883


884
885
886
887

888
889

890
891
892
893
894
895
896
897
898

899
900

901
902
903
904
905
906

907
908

909
910
911
912
913
914
915
916

917
918

919
920
921
922
923
924
925
926

927
928

929
930
931
932
933
934
935
936
937
938

939
940
941
942
943
944
945
946

947
948

949
950
951
952
953
954
955
956
957
958
959

960
961

962
963
964
965
966
967
968
969
970
971
972

973
974

975
976
977
978
979
980
981
982







-
-
+
+


-
+

-
+




-
+

-
+








-
+

-
+





-
+

-
+






-
-
+
+



-
-
+
+





-
-
+
+



-
+

-
+





-
+

-
+







-
+











-
+

-
+








-
+

-
+





-
+

-
+







-
+

-
+










-
+

-
+







-
+

-
+






-
-
+
+


-
+

-
+








-
+

-
+





-
+

-
+







-
+

-
+







-
+

-
+









-
+







-
+

-
+










-
+

-
+










-
+

-
+







            MouseActionsCollapsed = <>
          end
        end
      end
    end
    object tsSettings: TTabSheet
      Caption = 'groffstudio settings'
      ClientHeight = 626
      ClientWidth = 821
      ClientHeight = 631
      ClientWidth = 819
      object chkAutoSaveBuildSettings: TCheckBox
        Left = 0
        Height = 18
        Height = 19
        Top = 16
        Width = 341
        Width = 309
        Caption = 'save and restore the chosen build settings for next time'
        TabOrder = 0
      end
      object btnSaveSettings: TButton
        Left = 732
        Left = 730
        Height = 25
        Top = 595
        Top = 600
        Width = 91
        Anchors = [akRight, akBottom]
        Caption = 'save settings'
        TabOrder = 1
        OnClick = btnSaveSettingsClick
      end
      object Label14: TLabel
        Left = 0
        Height = 16
        Height = 15
        Top = 80
        Width = 150
        Width = 129
        Caption = 'yes, that''s all for now. :-)'
        ParentColor = False
      end
      object chkUpdateCheckOnStart: TCheckBox
        Left = 0
        Height = 18
        Height = 19
        Top = 40
        Width = 190
        Width = 169
        Caption = 'check for updates on startup'
        TabOrder = 2
      end
    end
    object tsGroff: TTabSheet
      Caption = 'groff version'
      ClientHeight = 626
      ClientWidth = 821
      ClientHeight = 631
      ClientWidth = 819
      object GroupBox2: TGroupBox
        Left = 20
        Height = 57
        Top = 561
        Width = 781
        Top = 566
        Width = 779
        Align = alBottom
        BorderSpacing.Left = 20
        BorderSpacing.Right = 20
        BorderSpacing.Bottom = 8
        Caption = 'groff for Windows'
        ClientHeight = 30
        ClientWidth = 771
        ClientHeight = 37
        ClientWidth = 775
        TabOrder = 0
        object Label6: TLabel
          Left = 8
          Height = 16
          Height = 15
          Top = 8
          Width = 125
          Width = 108
          Caption = 'latest version online:'
          ParentColor = False
        end
        object edtOnlineGroffVersionWindows: TEdit
          Left = 136
          Height = 17
          Height = 15
          Top = 8
          Width = 538
          Width = 542
          Anchors = [akTop, akLeft, akRight]
          BorderStyle = bsNone
          Enabled = False
          TabOrder = 0
          Text = 'fetching ...'
        end
        object btnDownloadGroffWindows: TButton
          Left = 682
          Left = 686
          Height = 25
          Top = 5
          Width = 80
          Anchors = [akTop, akRight]
          Caption = 'download it'
          TabOrder = 1
          OnClick = btnDownloadGroffWindowsClick
        end
      end
      object Label7: TLabel
        Left = 8
        Height = 32
        Height = 30
        Top = 8
        Width = 809
        Width = 807
        Anchors = [akTop, akLeft, akRight]
        Caption = 'as you might guess, groffstudio requires a working installation of groff. this page performs the basic checks for you. note that on windows, everything is harder than it should. :-)'
        Constraints.MaxHeight = 582
        ParentColor = False
        WordWrap = True
      end
      object Label9: TLabel
        Left = 8
        Height = 16
        Height = 15
        Top = 56
        Width = 81
        Width = 70
        Caption = 'groff version:'
        ParentColor = False
      end
      object edtGroffInstalledVersion: TEdit
        Left = 144
        Height = 17
        Height = 15
        Top = 56
        Width = 673
        Width = 671
        Anchors = [akTop, akLeft, akRight]
        BorderStyle = bsNone
        Enabled = False
        TabOrder = 1
      end
      object lblTroffCommandNotFound: TLabel
        Left = 8
        Height = 48
        Height = 45
        Top = 112
        Width = 808
        Width = 806
        Anchors = [akTop, akLeft, akRight]
        Caption = 'groff was not found. in order to use groffstudio, you absolutely need groff in your PATH variable. on unix and unix-like systems, you''ll need to edit the $PATH variable. on windows, i warmly recommend the Rapid Environment Editor for that.'#13#10'please exit groffstudio at your nearest convenience and adjust your PATH variables. then try again.'
        Font.Color = clRed
        ParentColor = False
        ParentFont = False
        Visible = False
        WordWrap = True
      end
      object edtGroffstudioInstalledVersion: TEdit
        Left = 144
        Height = 17
        Height = 15
        Top = 77
        Width = 673
        Width = 671
        Anchors = [akTop, akLeft, akRight]
        BorderStyle = bsNone
        Enabled = False
        TabOrder = 2
      end
      object Label10: TLabel
        Left = 8
        Height = 16
        Height = 15
        Top = 77
        Width = 118
        Width = 103
        Caption = 'groffstudio version:'
        ParentColor = False
      end
    end
    object tsAbout: TTabSheet
      Caption = 'about groffstudio'
      ClientHeight = 626
      ClientWidth = 821
      ClientHeight = 631
      ClientWidth = 819
      object lblAboutProductName: TLabel
        Left = 0
        Height = 53
        Height = 61
        Top = 16
        Width = 297
        Width = 315
        Caption = 'groffstudio x.y.z'
        Font.Color = clBlue
        Font.Height = -45
        ParentColor = False
        ParentFont = False
      end
      object Label8: TLabel
        Left = 20
        Height = 16
        Height = 15
        Top = 80
        Width = 246
        Width = 217
        Caption = 'brought to you by tux0r and contributors'
        ParentColor = False
      end
      object Label11: TLabel
        Left = 0
        Height = 16
        Height = 15
        Top = 128
        Width = 53
        Width = 45
        Caption = 'Website:'
        Font.Style = [fsItalic]
        ParentColor = False
        ParentFont = False
      end
      object Label12: TLabel
        Left = 0
        Height = 16
        Height = 15
        Top = 152
        Width = 69
        Width = 57
        Caption = 'Repository:'
        Font.Style = [fsItalic]
        ParentColor = False
        ParentFont = False
      end
      object Label13: TLabel
        Left = 0
        Height = 16
        Height = 15
        Top = 176
        Width = 119
        Width = 99
        Caption = 'Repository (mirror):'
        Font.Style = [fsItalic]
        ParentColor = False
        ParentFont = False
      end
      object mLicense: TMemo
        Left = 0
        Height = 418
        Top = 216
        Width = 828
        Width = 826
        Anchors = [akTop, akLeft, akRight]
        ScrollBars = ssAutoBoth
        TabOrder = 0
      end
      object lblWebsite: TLabel
        Cursor = crHandPoint
        Left = 120
        Height = 16
        Height = 15
        Top = 128
        Width = 113
        Width = 99
        Caption = 'groff.tuxproject.de'
        Font.Color = clBlue
        Font.Style = [fsUnderline]
        ParentColor = False
        ParentFont = False
        OnClick = lblWebsiteClick
      end
      object lblFossilRepo: TLabel
        Cursor = crHandPoint
        Left = 120
        Height = 16
        Height = 15
        Top = 152
        Width = 140
        Width = 121
        Caption = 'code.rosaelefanten.org'
        Font.Color = clBlue
        Font.Style = [fsUnderline]
        ParentColor = False
        ParentFont = False
        OnClick = lblFossilRepoClick
      end
      object lblGithubRepo: TLabel
        Cursor = crHandPoint
        Left = 120
        Height = 16
        Height = 15
        Top = 176
        Width = 68
        Width = 62
        Caption = 'github.com'
        Font.Color = clBlue
        Font.Style = [fsUnderline]
        ParentColor = False
        ParentFont = False
        OnClick = lblGithubRepoClick
      end