summaryrefslogtreecommitdiff
path: root/examples/gui/concepttest/compileroptform.frm
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@users.sourceforge.net>2007-04-15 21:40:32 +0000
committerGraeme Geldenhuys <graemeg@users.sourceforge.net>2007-04-15 21:40:32 +0000
commit6300ada280f4d84ca6246d00d2d205f5dbd90e0e (patch)
tree6dcacb75f197aa7ba3edcae285697f5d923da9ba /examples/gui/concepttest/compileroptform.frm
parent49971f1c1bc3b71ca149cd7ea0da3d6fb53dff10 (diff)
downloadfpGUI-6300ada280f4d84ca6246d00d2d205f5dbd90e0e.tar.xz
Fixed the rest of the GUI examples to work since we did a widget class renaming a while back.
Diffstat (limited to 'examples/gui/concepttest/compileroptform.frm')
-rw-r--r--examples/gui/concepttest/compileroptform.frm42
1 files changed, 21 insertions, 21 deletions
diff --git a/examples/gui/concepttest/compileroptform.frm b/examples/gui/concepttest/compileroptform.frm
index 054601db..708f2e09 100644
--- a/examples/gui/concepttest/compileroptform.frm
+++ b/examples/gui/concepttest/compileroptform.frm
@@ -8,43 +8,43 @@ object CompilerOptForm: TCompilerOptForm
Orientation = Vertical
Spacing = 4
object Box4: TFBoxLayout
- object grpBox1: TGroupBox
+ object grpBox1: TFGroupBox
Text = 'Unit Style:'
object grpBox1VBox1: TFBoxLayout
Orientation = Vertical
- object cbSmartLink: TCheckbox
+ object cbSmartLink: TFCheckbox
Checked = True
Text = 'Smart Linkable (-CX)'
end
end
end
- object grpBox2: TGroupBox
+ object grpBox2: TFGroupBox
Text = 'Checks:'
object grpBox2VBox1: TFBoxLayout
Orientation = Vertical
- object rbIO: TRadioButton
+ object rbIO: TFRadioButton
Checked = True
Text = 'I/O (-Ci)'
end
- object rbOverflow: TRadioButton
+ object rbOverflow: TFRadioButton
Checked = True
Text = 'Overflow (-Co)'
end
- object rbRange: TRadioButton
+ object rbRange: TFRadioButton
Checked = True
Text = 'Range (-Cr)'
end
- object rbStack: TRadioButton
+ object rbStack: TFRadioButton
Checked = True
Text = 'Stack (-Ct)'
end
end
end
- object grpBox3: TGroupBox
+ object grpBox3: TFGroupBox
Text = 'Heap Size (-Ch):'
object grpBox3VBox1: TFBoxLayout
Orientation = Vertical
- object edHeapSize: TEdit
+ object edHeapSize: TFEdit
Text = '0'
CanExpandWidth = False
end
@@ -52,23 +52,23 @@ object CompilerOptForm: TCompilerOptForm
end
end
object Box5: TFBoxLayout
- object grpBox4: TGroupBox
+ object grpBox4: TFGroupBox
Text = 'Generate:'
object grpBox4VBox1: TFBoxLayout
Orientation = Vertical
- object rbNormal: TRadioButton
+ object rbNormal: TFRadioButton
Text = 'Normal Code (none)'
end
- object rbFaster: TRadioButton
+ object rbFaster: TFRadioButton
Checked = True
Text = 'Faster Code (-OG)'
end
- object rbSmaller: TRadioButton
+ object rbSmaller: TFRadioButton
Text = 'Smaller Code (-Og)'
end
end
end
- object grpBox5: TGroupBox
+ object grpBox5: TFGroupBox
Text = 'Target Platform:'
CanExpandHeight = True
object grpBox5VBox1: TFBoxLayout
@@ -87,28 +87,28 @@ object CompilerOptForm: TCompilerOptForm
end
end
object Box6: TFBoxLayout
- object grpBox6: TGroupBox
+ object grpBox6: TFGroupBox
Text = 'Optimizations:'
object grpBox6VBox1: TFBoxLayout
Orientation = Vertical
CanExpandWidth = True
- object rbLevel0: TRadioButton
+ object rbLevel0: TFRadioButton
Text = 'Level 0 (no extra Optimizations) (none)'
end
- object rbLevel1: TRadioButton
+ object rbLevel1: TFRadioButton
Checked = True
Text = 'Level 1 (Quick Optimizations) (-O1)'
end
- object rbLevel2: TRadioButton
+ object rbLevel2: TFRadioButton
Text = 'Level 2 (Level 1 + Slower Optimizations) (-O2)'
end
- object rbLevel3: TRadioButton
+ object rbLevel3: TFRadioButton
Text = 'Level 3 (Level 2 + Uncertain) (-O3)'
end
- object rbKeepVarReg: TCheckbox
+ object rbKeepVarReg: TFCheckbox
Text = 'Keep certain variables in registers (-Or)'
end
- object rbUncOpt: TCheckbox
+ object rbUncOpt: TFCheckbox
Text = 'Uncertain Optimizations (-Ou)'
end
end