File: prefs.lfm

package info (click to toggle)
mricron 0.20140804.1~dfsg.1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,508 kB
  • sloc: pascal: 114,876; sh: 49; makefile: 35
file content (155 lines) | stat: -rwxr-xr-x 3,164 bytes parent folder | download | duplicates (3)
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
object PrefForm: TPrefForm
  Left = 932
  Height = 456
  Top = 200
  Width = 393
  ActiveControl = ResliceCheck
  BorderIcons = [biSystemMenu]
  BorderStyle = bsDialog
  Caption = 'Preferences'
  ClientHeight = 456
  ClientWidth = 393
  Constraints.MaxHeight = 456
  Constraints.MaxWidth = 393
  Constraints.MinHeight = 456
  Constraints.MinWidth = 393
  OnCreate = FormCreate
  OnShow = FormShow
  Position = poScreenCenter
  LCLVersion = '1.0.12.0'
  object GroupBox1: TGroupBox
    Left = 8
    Height = 280
    Top = 8
    Width = 368
    Caption = 'Image Display'
    ClientHeight = 258
    ClientWidth = 360
    TabOrder = 0
    object Label1: TLabel
      Left = 120
      Height = 17
      Top = 71
      Width = 190
      Caption = 'Maximum Dimension [Voxels]'
      ParentColor = False
    end
    object Label2: TLabel
      Left = 120
      Height = 17
      Top = 113
      Width = 120
      Caption = 'Rendering Threads'
      ParentColor = False
    end
    object Label3: TLabel
      Left = 120
      Height = 17
      Top = 145
      Width = 161
      Caption = 'Decimal places Displayed'
      ParentColor = False
    end
    object ResliceCheck: TCheckBox
      Left = 15
      Height = 18
      Top = 9
      Width = 210
      Caption = 'Reorient images when loading'
      OnClick = ResliceCheckClick
      TabOrder = 0
    end
    object MaxDimEdit: TSpinEdit
      Left = 14
      Height = 16
      Top = 64
      Width = 100
      MaxValue = 4096
      MinValue = 256
      TabOrder = 1
      Value = 256
    end
    object ThreadEdit: TSpinEdit
      Left = 14
      Height = 16
      Top = 101
      Width = 100
      MaxValue = 4096
      MinValue = 1
      TabOrder = 2
      Value = 1
    end
    object SigDigEdit: TSpinEdit
      Left = 14
      Height = 16
      Top = 138
      Width = 100
      MaxValue = 32
      TabOrder = 3
    end
    object OrthoCheck: TCheckBox
      Left = 43
      Height = 18
      Top = 37
      Width = 240
      Caption = 'Rotate to nearest orthogonal angle'
      TabOrder = 4
    end
    object SingleRowCheck: TCheckBox
      Left = 15
      Height = 18
      Top = 208
      Width = 174
      Caption = 'All slices on a single row'
      TabOrder = 5
    end
  end
  object GroupBox2: TGroupBox
    Left = 8
    Height = 64
    Top = 296
    Width = 368
    Caption = 'Drawing'
    ClientHeight = 42
    ClientWidth = 360
    TabOrder = 1
    object ThinPenCheck: TCheckBox
      Left = 15
      Height = 18
      Top = 16
      Width = 75
      Caption = 'Thin Pen'
      TabOrder = 0
    end
  end
  object OKBtn: TButton
    Left = 296
    Height = 25
    Top = 416
    Width = 75
    BorderSpacing.InnerBorder = 4
    Caption = 'OK'
    OnClick = OKBtnClick
    TabOrder = 2
  end
  object CancelBtn: TButton
    Left = 192
    Height = 25
    Top = 416
    Width = 75
    BorderSpacing.InnerBorder = 4
    Caption = 'Cancel'
    OnClick = CancelBtnClick
    TabOrder = 3
  end
  object XBarClr: TButton
    Left = 26
    Height = 25
    Top = 197
    Width = 178
    BorderSpacing.InnerBorder = 4
    Caption = 'Choose Cross-Bar Color'
    OnClick = XBarClrClick
    TabOrder = 4
  end
end