groffstudio

Check-in [f6741c12c7]
Login
Overview
Comment:groffstudio 0.10.0: Large build process revamp, featuring log output to a file, and some bugfixes.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | release-0.10.0
Files: files | file ages | folders
SHA3-256: f6741c12c7c1c22c2bfd5609310d5e06c4d8d97f96f27741b284027094937481
User & Date: Cthulhux on 2022-03-10 14:48:30
Other Links: manifest | tags
Context
2022-03-10
15:14
[Bugfix] When editing an unsaved document, the status panel will (correctly) display '[unsaved file]' now. check-in: abbf41a4a7 user: Cthulhux tags: trunk
14:48
groffstudio 0.10.0: Large build process revamp, featuring log output to a file, and some bugfixes. check-in: f6741c12c7 user: Cthulhux tags: trunk, release-0.10.0
04:32
Removed outdated comment. check-in: 07e7ab3732 user: Cthulhux tags: trunk
Changes

Modified CHANGES.txt from [56d538b5c0] to [cbc60e910f].










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











Version 0.10.0
2022-03-10

[Feature] Log file creation.
[Changed] Replaced the build output window by a status window.
[Bugfix] Windows builds erroneously showed "-1" in the update status field.
[Bugfix] Building a document without a macro package works now.


Version 0.9.9.1
2022-03-10

[Feature] macOS builds are working now.
[Feature] First macOS release.


Version 0.9.9.0
2022-02-24

[Feature] First working version.

Modified README.md from [a2e59cdc0b] to [a848d1beb0].

1
2
3
4
5
6
7

8
9
10
11
12
13
14
1
2
3
4
5
6

7
8
9
10
11
12
13
14






-
+







# groffstudio: An IDE for groff.

You know what was missing with `groff`? A good alternative to TeXstudio. Here we go.

## Screenshot

![Screenshot](https://i.imgur.com/ispa8x4.png)
![Screenshot](screenshot.png)

## Features

* Written in Lazarus (Free Pascal).
  * Should be cross-platform (but Windows support is mediocre yet).
* Can produce PS and PDF files.
* Can handle some macros.

Added screenshot.png version [cd9f05a268].

cannot compute difference between binary files

Modified src/buildoutputwindow.lfm from [299cb4c68e] to [30a0891c83].

1
2
3
4
5




6
7
8
9
10
11
12
13
14
15
16
17
18













19
20
1




2
3
4
5
6












7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

-
-
-
-
+
+
+
+

-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+


object BuildStatusWindow: TBuildStatusWindow
  Left = 2050
  Height = 367
  Top = 149
  Width = 432
  Left = 493
  Height = 80
  Top = 160
  Width = 168
  BorderStyle = bsDialog
  Caption = 'build output'
  ClientHeight = 367
  ClientWidth = 432
  LCLVersion = '2.2.0.4'
  object mBuildOutput: TMemo
    Left = 0
    Height = 367
    Top = 0
    Width = 432
    Align = alClient
    ScrollBars = ssAutoBoth
    TabOrder = 0
  Caption = 'building'
  ClientHeight = 80
  ClientWidth = 168
  LCLVersion = '2.3.0.0'
  object Label1: TLabel
    Left = 32
    Height = 37
    Top = 16
    Width = 117
    Caption = 'building...'
    Font.Height = -27
    ParentColor = False
    ParentFont = False
  end
end

Modified src/buildoutputwindow.pas from [e92472a1a9] to [ea372bf0cc].

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








83
84
85
86
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






81
82
83
84
85
86
87
88
89





90
91
92
93
94
95
96
97
98
99
100
101







-
+



-
+





-





-
+


+
-
+
+


-
+

-











-
-
+
+
+
+

+
+
-
-
+
+
+
+
+
+
+

-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+




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

type

  { TBuildStatusWindow }

  TBuildStatusWindow = class(TForm)
    mBuildOutput: TMemo;
    Label1: TLabel;
  private

  public
    function BuildDocument(CommandLine: String): Boolean;
    function BuildDocument(CommandLine: String; LogFile: String): Boolean;

  end;

var
  OutputText: String;
  BuildStatusWindow: TBuildStatusWindow;

implementation

{$R *.lfm}

function TBuildStatusWindow.BuildDocument(CommandLine: String): Boolean;
function TBuildStatusWindow.BuildDocument(CommandLine: String; LogFile: String): Boolean;
var
  p: TProcess;
  n: LongInt;
  AStringList: TStringList;
  str: String;
  lh: TextFile;
begin
  p := TProcess.Create(nil);
  p.Options := p.Options + [poWaitOnExit, poUsePipes];
  p.Options := p.Options + [poUsePipes, poStderrToOutPut];

  AStringList := TStringList.Create;
{$IFDEF WINDOWS}
  p.Executable := 'cmd';
  p.Parameters.Add('/c');
{$ENDIF}
{$IFDEF UNIX}
  p.Executable := 'sh';
  p.Parameters.Add('-c');
{$ENDIF}
  p.Parameters.Add(CommandLine);
  p.Execute;

  AStringList.LoadFromStream(p.Output);
  p.Free;
  if LogFile <> '' then
  begin
    AssignFile(lh, LogFile);
    Rewrite(lh);

    while p.Running do
    begin
  mBuildOutput.Text := AStringList.Text;
  AStringList.Free;
      n := p.Output.Read(str, 2048);
      if n > 0 then
      begin
        writeln(lh, str);
      end
      else Sleep(100);
    end;

  if Length(mBuildOutput.Text) = 0 then begin
    // We don't have any output. We can close the window.
    BuildStatusWindow.Close;
    result := True
  end
  else begin
    { We might have some buffer contents left. }
    repeat
      n := p.Output.Read(str, 2048);
      if n > 0 then
      begin
        writeln(lh, str);
      end;
    until n <= 0;

    // There was some output. Chances are that warnings occurred.
    // Keep it shown.
    // TODO: This does not always work well...
    result := False
  end;
    CloseFile(lh);
  end;

  result := p.ExitStatus > 0;
  p.Free;

  { Close the status window: }
  Close;
end;

end.

Modified src/groffstudio.lpi from [3a55aa8a78] to [9193541535].

18
19
20
21
22
23
24
25

26
27
28
29
30
31
32
33
34
18
19
20
21
22
23
24

25


26
27
28
29
30
31
32







-
+
-
-







      <Resources Count="1">
        <Resource_0 FileName="..\LICENSE" Type="RCDATA" ResourceName="LICENSE"/>
      </Resources>
    </General>
    <VersionInfo>
      <UseVersionInfo Value="True"/>
      <AutoIncrementBuild Value="True"/>
      <MinorVersionNr Value="9"/>
      <MinorVersionNr Value="10"/>
      <RevisionNr Value="9"/>
      <BuildNr Value="1"/>
      <Attributes pvaPreRelease="True"/>
      <StringTable ProductName="groffstudio"/>
    </VersionInfo>
    <BuildModes>
      <Item Name="Default" Default="True"/>
    </BuildModes>
    <PublishOptions>

Deleted src/groffstudio.lps version [0be9739d67].

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





























































































































































































































-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
  <ProjectSession>
    <PathDelim Value="\"/>
    <Version Value="12"/>
    <BuildModes Active="Default"/>
    <Units>
      <Unit>
        <Filename Value="groffstudio.lpr"/>
        <IsPartOfProject Value="True"/>
        <EditorIndex Value="-1"/>
        <CursorPos X="60" Y="17"/>
        <UsageCount Value="264"/>
      </Unit>
      <Unit>
        <Filename Value="unit1.pas"/>
        <IsPartOfProject Value="True"/>
        <ComponentName Value="MainForm"/>
        <HasResources Value="True"/>
        <ResourceBaseClass Value="Form"/>
        <UnitName Value="Unit1"/>
        <IsVisibleTab Value="True"/>
        <TopLine Value="414"/>
        <CursorPos X="23" Y="431"/>
        <UsageCount Value="264"/>
        <Loaded Value="True"/>
        <LoadedDesigner Value="True"/>
      </Unit>
      <Unit>
        <Filename Value="helpers.pas"/>
        <IsPartOfProject Value="True"/>
        <UnitName Value="Helpers"/>
        <EditorIndex Value="2"/>
        <TopLine Value="10"/>
        <CursorPos X="40" Y="42"/>
        <UsageCount Value="257"/>
        <Loaded Value="True"/>
      </Unit>
      <Unit>
        <Filename Value="buildoutputwindow.pas"/>
        <IsPartOfProject Value="True"/>
        <ComponentName Value="BuildStatusWindow"/>
        <HasResources Value="True"/>
        <ResourceBaseClass Value="Form"/>
        <UnitName Value="BuildOutputWindow"/>
        <EditorIndex Value="1"/>
        <TopLine Value="61"/>
        <CursorPos X="39" Y="66"/>
        <UsageCount Value="246"/>
        <Loaded Value="True"/>
        <LoadedDesigner Value="True"/>
      </Unit>
      <Unit>
        <Filename Value="..\..\..\..\..\Applications\Lazarus\lcl\lcltype.pp"/>
        <UnitName Value="LCLType"/>
        <EditorIndex Value="-1"/>
        <TopLine Value="5"/>
        <CursorPos X="42" Y="18"/>
        <UsageCount Value="121"/>
      </Unit>
      <Unit>
        <Filename Value="..\..\..\..\..\Applications\Lazarus\components\rtticontrols\rttigrids.pas"/>
        <UnitName Value="RTTIGrids"/>
        <EditorIndex Value="-1"/>
        <TopLine Value="1234"/>
        <CursorPos X="3" Y="1247"/>
        <UsageCount Value="10"/>
      </Unit>
      <Unit>
        <Filename Value="..\..\..\..\..\Applications\Lazarus\lcl\interfaces\fpgui\fpguicrosshelpers.pas"/>
        <EditorIndex Value="-1"/>
        <CursorPos X="5" Y="10"/>
        <UsageCount Value="10"/>
      </Unit>
      <Unit>
        <Filename Value="..\..\..\..\..\Applications\Lazarus\components\ideintf\columndlg.pp"/>
        <UnitName Value="ColumnDlg"/>
        <EditorIndex Value="-1"/>
        <TopLine Value="417"/>
        <CursorPos X="5" Y="430"/>
        <UsageCount Value="10"/>
      </Unit>
      <Unit>
        <Filename Value="..\..\..\..\..\Applications\Lazarus\components\codetools\basiccodetools.pas"/>
        <UnitName Value="BasicCodeTools"/>
        <EditorIndex Value="-1"/>
        <TopLine Value="10"/>
        <CursorPos X="65" Y="23"/>
        <UsageCount Value="10"/>
      </Unit>
      <Unit>
        <Filename Value="..\..\..\..\..\usr\local\share\fpcsrc\3.2.0\packages\fcl-net\src\sslbase.pp"/>
        <EditorIndex Value="-1"/>
        <CursorPos X="55" Y="11"/>
        <UsageCount Value="10"/>
      </Unit>
    </Units>
    <JumpHistory HistoryIndex="28">
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="227" Column="28" TopLine="211"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="225" Column="54" TopLine="211"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="227" Column="54" TopLine="213"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="223" Column="48" TopLine="214"/>
      </Position>
      <Position>
        <Filename Value="buildoutputwindow.pas"/>
        <Caret Column="23"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="272" Column="49" TopLine="249"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="34" Column="31" TopLine="15"/>
      </Position>
      <Position>
        <Filename Value="buildoutputwindow.pas"/>
        <Caret Line="53" Column="21" TopLine="23"/>
      </Position>
      <Position>
        <Filename Value="buildoutputwindow.pas"/>
        <Caret Line="50" Column="28" TopLine="23"/>
      </Position>
      <Position>
        <Filename Value="buildoutputwindow.pas"/>
        <Caret Line="51" Column="20" TopLine="23"/>
      </Position>
      <Position>
        <Filename Value="buildoutputwindow.pas"/>
        <Caret Line="53" Column="24" TopLine="22"/>
      </Position>
      <Position>
        <Filename Value="buildoutputwindow.pas"/>
        <Caret Line="55" Column="8" TopLine="39"/>
      </Position>
      <Position>
        <Filename Value="buildoutputwindow.pas"/>
        <Caret Line="44" Column="7" TopLine="36"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="227" Column="40" TopLine="207"/>
      </Position>
      <Position>
        <Filename Value="buildoutputwindow.pas"/>
        <Caret Line="66" Column="39" TopLine="49"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="106" Column="9" TopLine="90"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="29" Column="25" TopLine="21"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="221" Column="44" TopLine="208"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="222" Column="39" TopLine="221"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="29" Column="37" TopLine="13"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="221" Column="5" TopLine="219"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="114" Column="9" TopLine="89"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="430" Column="17" TopLine="409"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="241" Column="6" TopLine="219"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="196" Column="75" TopLine="175"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="230" Column="68" TopLine="209"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="274" Column="29" TopLine="252"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="196" Column="75" TopLine="184"/>
      </Position>
      <Position>
        <Filename Value="unit1.pas"/>
        <Caret Line="436" Column="48" TopLine="414"/>
      </Position>
    </JumpHistory>
    <RunParams>
      <FormatVersion Value="2"/>
      <Modes ActiveMode=""/>
    </RunParams>
  </ProjectSession>
</CONFIG>

Modified src/unit1.lfm from [41c07b026a] to [38c6a3be4b].

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
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
234
235
236
237




238
239
240
241
242
243
244
245
246
247

248
249

250
251
252
253
254
255
256
257
258
259

260
261
262
263
264
265
266
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
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

234
235
236
237
238
239
240
241
242
243




244
245
246
247
248
249
250
251
252
253
254
255
256

257
258

259
260
261
262
263
264
265
266
267
268

269
270
271
272
273
274
275
276

-
+

-
-
+
+


-
+





-
-
-
+
+
+



















-
+







-
-
+
+



-
-
-
+
+
+





-
+




-
+

-
+





-
-
+
+

-
+











-
-
+
+

-
+





-
-
-
-
+
+
+
+






-
-
-
-
+
+
+
+






-
-
+
+

-
+





-
-
-
-
+
+
+
+





-
-
-
-
+
+
+
+





-
-
-
-
+
+
+
+





-
-
-
-
+
+
+
+





-
-
-
-
+
+
+
+





-
-
-
-
+
+
+
+





-
-
+
+

-
+





-
-
-
-
+
+
+
+






-
+

-
+









+
+
+
+
+
+
+
+
+
-
+
+

-
+

-
+









-
+

-
+









-
-
-
-
+
+
+
+









-
+

-
+









-
+







object MainForm: TMainForm
  Left = 819
  Left = 976
  Height = 692
  Top = 147
  Width = 861
  Top = 91
  Width = 857
  Caption = 'groffstudio'
  ClientHeight = 692
  ClientWidth = 861
  ClientWidth = 857
  OnClose = FormClose
  OnCreate = FormCreate
  LCLVersion = '2.3.0.0'
  object MainStatusBar: TStatusBar
    Left = 0
    Height = 18
    Top = 674
    Width = 861
    Height = 23
    Top = 669
    Width = 857
    Panels = <    
      item
        Text = 'file name with save status'
        Width = 200
      end    
      item
        Text = 'build successful?'
        Width = 120
      end    
      item
        Text = 'update available'
        Width = 120
      end>
    SimplePanel = False
  end
  object ExtendedNotebook1: TExtendedNotebook
    Left = 10
    Height = 662
    Top = 8
    Width = 841
    Width = 837
    ActivePage = tsEdit
    Anchors = [akTop, akLeft, akRight, akBottom]
    Style = tsFlatButtons
    TabIndex = 0
    TabOrder = 1
    object tsEdit: TTabSheet
      Caption = 'edit a groff document'
      ClientHeight = 632
      ClientWidth = 835
      ClientHeight = 631
      ClientWidth = 829
      ParentFont = False
      object GroupBox1: TGroupBox
        Left = 10
        Height = 65
        Top = 562
        Width = 815
        Height = 74
        Top = 552
        Width = 809
        Align = alBottom
        BorderSpacing.Left = 10
        BorderSpacing.Right = 10
        BorderSpacing.Bottom = 5
        Caption = 'build'
        ClientHeight = 46
        ClientHeight = 54
        ClientWidth = 805
        TabOrder = 0
        object Label1: TLabel
          Left = 112
          Height = 16
          Height = 15
          Top = -4
          Width = 83
          Width = 72
          Caption = 'macro to use:'
          ParentColor = False
        end
        object cmbMacro: TComboBox
          Left = 112
          Height = 20
          Top = 14
          Height = 23
          Top = 20
          Width = 100
          ItemHeight = 19
          ItemHeight = 15
          Items.Strings = (
            'man'
            'me'
            'mm'
            'mom'
            'ms'
          )
          TabOrder = 0
          Text = '[ select ]'
        end
        object Label2: TLabel
          Left = 673
          Height = 16
          Left = 682
          Height = 15
          Top = -4
          Width = 87
          Width = 78
          Anchors = [akTop, akRight]
          Caption = 'output format:'
          ParentColor = False
        end
        object rdPs: TRadioButton
          Left = 670
          Height = 18
          Top = 14
          Width = 85
          Left = 684
          Height = 19
          Top = 24
          Width = 71
          Anchors = [akTop, akRight]
          Caption = 'PostScript'
          OnChange = rdPsChange
          TabOrder = 1
        end
        object rdPdf: TRadioButton
          Left = 753
          Height = 18
          Top = 14
          Width = 50
          Left = 764
          Height = 19
          Top = 24
          Width = 39
          Anchors = [akTop, akRight]
          Caption = 'PDF'
          OnChange = rdPdfChange
          TabOrder = 2
        end
        object Label3: TLabel
          Left = 285
          Height = 16
          Left = 300
          Height = 15
          Top = -4
          Width = 91
          Width = 76
          Anchors = [akTop, akRight]
          Caption = 'preprocessors:'
          ParentColor = False
        end
        object chkEqn: TCheckBox
          Left = 348
          Height = 18
          Top = 14
          Width = 48
          Left = 358
          Height = 19
          Top = 24
          Width = 38
          Anchors = [akTop, akRight]
          Caption = 'eqn'
          TabOrder = 3
        end
        object chkPic: TCheckBox
          Left = 434
          Height = 18
          Top = 14
          Width = 44
          Left = 444
          Height = 19
          Top = 24
          Width = 34
          Anchors = [akTop, akRight]
          Caption = 'pic'
          TabOrder = 4
        end
        object chkTbl: TCheckBox
          Left = 523
          Height = 18
          Top = 14
          Width = 41
          Left = 532
          Height = 19
          Top = 24
          Width = 32
          Anchors = [akTop, akRight]
          Caption = 'tbl'
          TabOrder = 5
        end
        object chkGrn: TCheckBox
          Left = 392
          Height = 18
          Top = 14
          Width = 46
          Left = 402
          Height = 19
          Top = 24
          Width = 36
          Anchors = [akTop, akRight]
          Caption = 'grn'
          TabOrder = 6
        end
        object chkChem: TCheckBox
          Left = 292
          Height = 18
          Top = 14
          Width = 58
          Left = 302
          Height = 19
          Top = 24
          Width = 48
          Anchors = [akTop, akRight]
          Caption = 'chem'
          TabOrder = 7
        end
        object chkRefer: TCheckBox
          Left = 473
          Height = 18
          Top = 14
          Width = 53
          Left = 484
          Height = 19
          Top = 24
          Width = 42
          Anchors = [akTop, akRight]
          Caption = 'refer'
          TabOrder = 8
        end
        object Label4: TLabel
          Left = 576
          Height = 16
          Left = 583
          Height = 15
          Top = -4
          Width = 41
          Width = 34
          Anchors = [akTop, akRight]
          Caption = 'extras:'
          ParentColor = False
        end
        object chkPdfMark: TCheckBox
          Left = 574
          Height = 18
          Top = 14
          Width = 74
          Left = 585
          Height = 19
          Top = 24
          Width = 63
          Anchors = [akTop, akRight]
          Caption = 'Pdfmark'
          Enabled = False
          TabOrder = 9
        end
        object btnBuild: TButton
          Left = 16
          Left = 1
          Height = 29
          Top = 8
          Top = 0
          Width = 75
          Caption = 'build'
          Color = clLime
          Enabled = False
          Font.Style = [fsBold, fsItalic]
          OnClick = btnBuildClick
          ParentFont = False
          TabOrder = 10
        end
        object chkLogFile: TCheckBox
          Left = 8
          Height = 19
          Hint = 'If enabled, a log file containing the groff output will be placed alongside the source document.'
          Top = 32
          Width = 80
          Caption = 'with log file'
          Enabled = False
          TabOrder = 11
      end
        end
      end
      object btnSaveGroff: TButton
        Left = 750
        Left = 744
        Height = 28
        Top = 531
        Top = 512
        Width = 75
        Anchors = [akRight, akBottom]
        Caption = 'save'
        Font.Style = [fsBold]
        OnClick = btnSaveGroffClick
        ParentFont = False
        TabOrder = 1
      end
      object btnLoadGroff: TButton
        Left = 669
        Left = 663
        Height = 28
        Top = 531
        Top = 512
        Width = 75
        Anchors = [akRight, akBottom]
        Caption = 'load'
        Font.Style = [fsBold]
        OnClick = btnLoadGroffClick
        ParentFont = False
        TabOrder = 2
      end
      object Label5: TLabel
        Left = 142
        Height = 16
        Top = 543
        Width = 509
        Left = 207
        Height = 15
        Top = 525
        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 = 524
        Height = 507
        Top = 0
        Width = 815
        Width = 809
        Anchors = [akTop, akLeft, akRight, akBottom]
        Font.CharSet = 4
        Font.Height = -13
        Font.Name = 'Consolas'
        Font.Pitch = fpFixed
        Font.Quality = fqCleartypeNatural
        ParentColor = False
        ParentFont = False
        TabOrder = 3
        Gutter.Width = 67
        Gutter.Width = 55
        Gutter.MouseActions = <>
        RightGutter.Width = 0
        RightGutter.MouseActions = <>
        Keystrokes = <        
          item
            Command = ecUp
            ShortCut = 38
710
711
712
713
714
715
716
717

718
719
720
721
722
723
724
720
721
722
723
724
725
726

727
728
729
730
731
732
733
734







-
+







        OnChange = SynEdit1Change
        inline SynLeftGutterPartList1: TSynGutterPartList
          object SynGutterMarks1: TSynGutterMarks
            Width = 24
            MouseActions = <>
          end
          object SynGutterLineNumber1: TSynGutterLineNumber
            Width = 27
            Width = 15
            MouseActions = <>
            MarkupInfo.Background = clBtnFace
            MarkupInfo.Foreground = clNone
            DigitCount = 2
            ShowOnlyLineNumbersMultiplesOf = 1
            ZeroStart = False
            LeadingZeros = False
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
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







-
-
+
+


-
+

-
+




-
+

-
+








-
+

-
+






-
-
+
+



-
-
+
+





-
+




-
+

-
+





-
+







            MouseActionsCollapsed = <>
          end
        end
      end
    end
    object tsSettings: TTabSheet
      Caption = 'groffstudio settings'
      ClientHeight = 632
      ClientWidth = 835
      ClientHeight = 631
      ClientWidth = 829
      object chkAutoSaveBuildSettings: TCheckBox
        Left = 0
        Height = 18
        Height = 19
        Top = 16
        Width = 342
        Width = 310
        Caption = 'Save and restore the chosen build settings for next time'
        TabOrder = 0
      end
      object btnSaveSettings: TButton
        Left = 746
        Left = 740
        Height = 25
        Top = 601
        Top = 600
        Width = 91
        Anchors = [akRight, akBottom]
        Caption = 'save settings'
        OnClick = btnSaveSettingsClick
        TabOrder = 1
      end
      object Label14: TLabel
        Left = 0
        Height = 16
        Height = 15
        Top = 48
        Width = 150
        Width = 129
        Caption = 'Yes, that''s all for now. :-)'
        ParentColor = False
      end
    end
    object tsGroff: TTabSheet
      Caption = 'groff version'
      ClientHeight = 632
      ClientWidth = 835
      ClientHeight = 631
      ClientWidth = 829
      object GroupBox2: TGroupBox
        Left = 20
        Height = 57
        Top = 567
        Width = 795
        Top = 566
        Width = 789
        Align = alBottom
        BorderSpacing.Left = 20
        BorderSpacing.Right = 20
        BorderSpacing.Bottom = 8
        Caption = 'groff for Windows'
        ClientHeight = 38
        ClientHeight = 37
        ClientWidth = 785
        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 = 552
          Anchors = [akTop, akLeft, akRight]
          BorderStyle = bsNone
          Enabled = False
          TabOrder = 0
          Text = 'fetching ...'
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
985
986
987
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
985
986
987

988
989

990
991
992
993
994
995
996
997







-
+

-
+








-
+

-
+





-
+

-
+







-
+

-
+










-
+

-
+







-
+

-
+






-
-
+
+


-
+

-
+








-
+

-
+





-
+

-
+







-
+

-
+







-
+

-
+









-
+







-
+

-
+










-
+

-
+










-
+

-
+







          Caption = 'download it'
          OnClick = btnDownloadGroffWindowsClick
          TabOrder = 1
        end
      end
      object Label7: TLabel
        Left = 8
        Height = 32
        Height = 30
        Top = 8
        Width = 823
        Width = 817
        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 = 687
        Width = 681
        Anchors = [akTop, akLeft, akRight]
        BorderStyle = bsNone
        Enabled = False
        TabOrder = 1
      end
      object lblTroffCommandNotFound: TLabel
        Left = 8
        Height = 48
        Height = 45
        Top = 112
        Width = 822
        Width = 816
        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 = 687
        Width = 681
        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 = 632
      ClientWidth = 835
      ClientHeight = 631
      ClientWidth = 829
      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 = 842
        Width = 836
        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

Modified src/unit1.pas from [a7e2ae39a2] to [3005494ec9].

38
39
40
41
42
43
44

45
46
47
48
49
50
51
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52







+








  TMainForm = class(TForm)
    btnSaveGroff: TButton;
    btnLoadGroff: TButton;
    btnBuild: TButton;
    btnDownloadGroffWindows: TButton;
    btnSaveSettings: TButton;
    chkLogFile: TCheckBox;
    chkAutoSaveBuildSettings: TCheckBox;
    chkPdfMark: TCheckBox;
    chkRefer: TCheckBox;
    chkChem: TCheckBox;
    chkGrn: TCheckBox;
    chkTbl: TCheckBox;
    chkPic: TCheckBox;
168
169
170
171
172
173
174

175
176
177
178
179
180
181
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183







+







  // Restore the settings
  iniStorage.Restore;
  storeBuildSettings := iniStorage.ReadBoolean('AutoSaveBuildSettings', False);
  chkAutoSaveBuildSettings.Checked := storeBuildSettings;

  if storeBuildSettings then
  begin
       chkLogFile.Checked := iniStorage.ReadBoolean('BuildLogFile', False);
       cmbMacro.Text := iniStorage.ReadString('BuildChosenMacro', '[ select ]');
       chkChem.Checked := iniStorage.ReadBoolean('BuildUseChem', False);
       chkEqn.Checked := iniStorage.ReadBoolean('BuildUseEqn', False);
       chkGrn.Checked := iniStorage.ReadBoolean('BuildUseGrn', False);
       chkPic.Checked := iniStorage.ReadBoolean('BuildUsePic', False);
       chkRefer.Checked := iniStorage.ReadBoolean('BuildUseRefer', False);
       chkTbl.Checked := iniStorage.ReadBoolean('BuildUseTbl', False);
208
209
210
211
212
213
214
215

216
217
218
219
220
221
222
223
224
210
211
212
213
214
215
216

217


218
219
220
221
222
223
224







-
+
-
-







    reGroffStudioVersion := TRegExpr.Create('studio-win ([\d\.]+) (.*)$');
    reGroffStudioVersion.ModifierM := True;
    if reGroffStudioVersion.Exec(OnlineVersionsFile) then
    begin
      // Compare the two versions - ours and the online one:
      GroffHelpers.VerStrCompare(reGroffStudioVersion.Match[1], FileVerInfo.VersionStrings.Values['FileVersion'], HasVersionUpdate);
      if HasVersionUpdate > 0 then
        MainStatusBar.Panels[2].Text := 'update ' + reGroffStudioVersion.Match[1] + ' available'
        MainStatusBar.Panels[2].Text := 'update ' + reGroffStudioVersion.Match[1] + ' available';
      else
        MainStatusBar.Panels[2].Text := IntToStr(HasVersionUpdate);
    end else MainStatusBar.Panels[2].Text := '';
    {$ELSE}
    // Non-Windows platforms won't need some of that.
    {$IFDEF DARWIN}
    // What's the latest available version?
    MainStatusBar.Panels[2].Text := '';
    try
294
295
296
297
298
299
300

301
302
303
304
305
306
307

308
309
310
311
312
313

314
315
316
317
318
319
320
294
295
296
297
298
299
300
301
302
303
304
305
306
307

308
309
310
311
312
313

314
315
316
317
318
319
320
321







+






-
+





-
+







   {$ENDIF}
end;

procedure TMainForm.btnBuildClick(Sender: TObject);
var
  buildSuccess: Boolean;
  buildOpts: String;
  logFileName: String;
  outputFileName: String;
begin
  // Reset status display:
  MainStatusBar.Panels[1].Text := '';

  BuildWindow := TBuildStatusWindow.Create(Application);
  BuildWindow.ShowModal;
  BuildWindow.Show;

  // Build the parameters:
  buildOpts := 'groff';

  // - Macro:
  buildOpts := buildOpts + ' -' + cmbMacro.SelText;
  if cmbMacro.SelText <> '' then buildOpts := buildOpts + ' -' + cmbMacro.SelText;

  // - Enforce UTF-8:
  buildOpts := buildOpts + ' -Kutf8';

  // - Preprocessors:
  if chkChem.Checked then   buildOpts := buildOpts + ' -chem';
  if chkEqn.Checked then    buildOpts := buildOpts + ' -eqn';
331
332
333
334
335
336
337



338
339

340
341
342
343
344
345
346
332
333
334
335
336
337
338
339
340
341
342

343
344
345
346
347
348
349
350







+
+
+

-
+







  end
  else outputFileName := currentGroffFilePath + '.ps';

  // - Input file:
  buildOpts := buildOpts + ' ' + currentGroffFilePath;
  buildOpts := buildOpts + ' > ' + outputFileName;

  // - Log file:
  if chkLogFile.Checked then logFileName := currentGroffFilePath + '.log';

  // Build:
  buildSuccess := BuildWindow.BuildDocument(buildOpts);
  buildSuccess := BuildWindow.BuildDocument(buildOpts, logFileName);
  if buildSuccess then
    MainStatusBar.Panels[1].Text := 'build successful'
  else
    MainStatusBar.Panels[1].Text := 'build problem';

  FreeAndNil(BuildWindow);
end;
361
362
363
364
365
366
367
368





369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387




388
389
390
391
392
393
394
395
396
397
398

399
400
401
402
403
404
405
365
366
367
368
369
370
371

372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394

395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417







-
+
+
+
+
+


















-
+
+
+
+











+







  begin
    if FileExists(odOpenGroffFile.FileName) then
    begin
      currentGroffFilePath := odOpenGroffFile.FileName;
      currentGroffFileName := ExtractFileName(odOpenGroffFile.FileName);
      SynEdit1.Lines.LoadFromFile(odOpenGroffFile.FileName);

      if hasGroff then btnBuild.Enabled := True;
      if hasGroff then
      begin
        btnBuild.Enabled := True;
        chkLogFile.Enabled := True;
      end;

      // Display the current file:
      MainStatusBar.Panels[0].Text := currentGroffFileName;
    end;
  end;
end;

procedure TMainForm.btnSaveGroffClick(Sender: TObject);
begin
  if FileExists(currentGroffFilePath) then
    // We don't need to open the Save As box every time.
    SynEdit1.Lines.SaveToFile(currentGroffFilePath)
  else if sdSaveGroffFile.Execute then
  begin
    currentGroffFilePath := sdSaveGroffFile.FileName;
    currentGroffFileName := ExtractFileName(currentGroffFilePath);
    SynEdit1.Lines.SaveToFile(sdSaveGroffFile.FileName);

    if hasGroff then btnBuild.Enabled := True;
    if hasGroff then begin
      btnBuild.Enabled := True;
      chkLogFile.Enabled := True;
    end;
  end;

  // Remove the "Changed" mark:
  MainStatusBar.Panels[0].Text := currentGroffFileName;
  unsavedChanges := False;
end;

procedure TMainForm.btnSaveSettingsClick(Sender: TObject);
begin
  // Store the build settings:
  iniStorage.WriteString('BuildChosenMacro', cmbMacro.Text);
  iniStorage.WriteBoolean('BuildLogFile', chkLogFile.Checked);
  iniStorage.WriteBoolean('BuildUseChem', chkChem.Checked);
  iniStorage.WriteBoolean('BuildUseEqn', chkEqn.Checked);
  iniStorage.WriteBoolean('BuildUseGrn', chkGrn.Checked);
  iniStorage.WriteBoolean('BuildUsePic', chkPic.Checked);
  iniStorage.WriteBoolean('BuildUseRefer', chkRefer.Checked);
  iniStorage.WriteBoolean('BuildUseTbl', chkTbl.Checked);
  iniStorage.WriteBoolean('BuildUsePdfMark', chkPdfMark.Checked);