gambas-source-code/app/examples/Multimedia/WaveGenerator/.src/FMain.form
Benoît Minisini c6a9cd69c2 [EXAMPLES]
* NEW: Add examples again. I hope correctly this time.


git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-12-12 19:58:52 +00:00

61 lines
1.3 KiB
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(0,0,62,20)
Text = ("Wave generator")
Icon = Picture["audio-headphones.png"]
Arrangement = Arrange.Vertical
Spacing = True
Margin = True
{ Panel1 HBox
MoveScaled(2,2,59,4)
{ Label1 Label
MoveScaled(0,0,11,4)
Text = ("Frequency")
}
{ sldFrequency Slider
MoveScaled(14,0,44,4)
Expand = True
MaxValue = 1000
}
}
{ Panel2 HBox
MoveScaled(2,7,59,4)
{ Label2 Label
MoveScaled(0,0,11,4)
Text = ("Volume")
}
{ sldVolume Slider
MoveScaled(14,0,44,4)
Expand = True
MaxValue = 1000
Value = 800
}
}
{ Panel5 Panel
MoveScaled(31,12,13,1)
Expand = True
}
{ Panel3 HBox
MoveScaled(2,14,58,4)
Spacing = True
{ cmbType ComboBox
MoveScaled(0,0,27,4)
ReadOnly = True
List = [("Sine"), ("Square"), ("Saw"), ("Triangle"), ("Silence"), ("White uniform noise"), ("Pink noise"), ("Sine table"), ("Periodic ticks"), ("White gaussian noise"), ("Red brownian noise"), ("Blue noise"), ("Violet noise")]
}
{ lblFrequency Label
MoveScaled(27,0,13,4)
Text = ("440 Hz")
Alignment = Align.Right
}
{ Panel4 Panel
MoveScaled(28,0,3,4)
Expand = True
}
{ btnPlay Button
MoveScaled(41,0,16,4)
Text = ("Play / Stop")
}
}
}