2011-09-10 00:58:47 +00:00
|
|
|
unit gameconfigform;
|
2011-09-07 17:58:54 +00:00
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2011-09-10 00:58:47 +00:00
|
|
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls;
|
2011-09-07 17:58:54 +00:00
|
|
|
|
|
|
|
type
|
2011-09-10 00:58:47 +00:00
|
|
|
|
|
|
|
{ TForm1 }
|
|
|
|
|
2011-09-07 17:58:54 +00:00
|
|
|
TForm1 = class(TForm)
|
2011-09-10 00:58:47 +00:00
|
|
|
btnLoad: TButton;
|
|
|
|
btnWordlist: TButton;
|
|
|
|
comboGameType: TComboBox;
|
|
|
|
comboSound: TComboBox;
|
|
|
|
comboMusic: TComboBox;
|
|
|
|
comboLevel: TComboBox;
|
|
|
|
lblGameType: TLabel;
|
|
|
|
listWordlist: TLabel;
|
|
|
|
lblSettings: TLabel;
|
|
|
|
lblSound: TLabel;
|
|
|
|
lblMusic: TLabel;
|
|
|
|
lblLevel: TLabel;
|
|
|
|
lblCredits: TLabel;
|
|
|
|
ltbWordlist: TListBox;
|
|
|
|
memoGameType: TMemo;
|
|
|
|
memoCredits: TMemo;
|
2011-09-07 17:58:54 +00:00
|
|
|
private
|
|
|
|
{ private declarations }
|
|
|
|
public
|
|
|
|
{ public declarations }
|
2011-09-10 00:58:47 +00:00
|
|
|
end;
|
2011-09-07 17:58:54 +00:00
|
|
|
|
|
|
|
var
|
2011-09-10 00:58:47 +00:00
|
|
|
Form1: TForm1;
|
2011-09-07 17:58:54 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R *.lfm}
|
|
|
|
|
|
|
|
end.
|
|
|
|
|