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 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 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
|
unit frmpas2jsbrowserprojectoptions;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ButtonPanel,
Spin, strpas2jsdesign;
const
WBBoolCreateHTML = 0;
WBBoolMainHTML = 1;
WBBoolRunOnReady = 2;
WBBoolShowUncaughtExceptions = 3;
WBBoolUseBrowserApp = 4;
WBBoolUseWASI = 5;
WBBoolUseBrowserConsole = 6;
WBBoolUseModule = 7;
WBBoolRunLocation = 8;
WBBoolRunServerAtPort = 9;
WBBoolRunBrowserWithURL = 10;
WBBoolRunDefault = 11;
type
{ TWebBrowserProjectOptionsForm }
TWebBrowserProjectOptionsForm = class(TForm)
BPHelpOptions: TButtonPanel;
CBCreateHTML: TCheckBox;
CBMaintainPage: TCheckBox;
CBRunLocationOnSWS: TComboBox;
CBRunOnReady: TCheckBox;
CBRunServerURL: TComboBox;
CBShowUncaughtExceptions: TCheckBox;
CBUseBrowserApp: TCheckBox;
CBUseBrowserConsole: TCheckBox;
CBUseModule: TCheckBox;
CBUseWASI: TCheckBox;
edtWasmProgram: TEdit;
RBRunLocationOnSWS: TRadioButton;
RBRunBrowserWithURL: TRadioButton;
RBRunDefault: TRadioButton;
RBRunServerAt: TRadioButton;
RunGroupBox: TGroupBox;
SERunPort: TSpinEdit;
procedure CBCreateHTMLChange(Sender: TObject);
procedure CBUseBrowserAppChange(Sender: TObject);
procedure CBUseHTTPServerChange(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure RBRunLocationOnSWSChange(Sender: TObject);
procedure RBRunDefaultChange(Sender: TObject);
procedure RBRunServerAtChange(Sender: TObject);
procedure RBRunBrowserWithURLChange(Sender: TObject);
private
function GetB(AIndex: Integer): Boolean;
function GetLocation: string;
function GetServerPort: Word;
function GetURL: String;
function GetWasmProgramURL: String;
procedure SetB(AIndex: Integer; AValue: Boolean);
procedure SetLocation(const AValue: string);
procedure SetServerPort(AValue: Word);
procedure SetURL(AValue: String);
procedure SetWasmProgramURL(AValue: String);
procedure UpdateHTMLControls;
procedure UpdateBrowserAppControls;
procedure UpdateRunControls;
public
procedure HideWASM; virtual;
procedure HideModule; virtual;
procedure HideRunOnReady; virtual;
procedure HideUseBrowserApp; virtual;
procedure HideRunHTTPServer; virtual;
procedure HideRunLocation; virtual;
property CreateHTML : Boolean Index WBBoolCreateHTML read GetB Write SetB;
property MaintainHTML : Boolean Index WBBoolMainHTML read GetB Write SetB;
property UseRunOnReady : Boolean Index WBBoolRunOnReady read GetB Write SetB;
property ShowUncaughtExceptions : Boolean Index WBBoolShowUncaughtExceptions read GetB Write SetB;
property UseBrowserApp : Boolean Index WBBoolUseBrowserApp read GetB Write SetB;
property UseWASI : Boolean Index WBBoolUseWASI read GetB Write SetB;
property WasmProgramURL : String Read GetWasmProgramURL Write SetWasmProgramURL;
property UseBrowserConsole : Boolean Index WBBoolUseBrowserConsole read GetB Write SetB;
property UseModule : Boolean Index WBBoolUseModule read GetB Write SetB;
property RunLocation : Boolean Index WBBoolRunLocation read GetB Write SetB;
property Location : string Read GetLocation Write SetLocation;
property RunServerAtPort : Boolean Index WBBoolRunServerAtPort read GetB Write SetB;
property ServerPort : Word Read GetServerPort Write SetServerPort;
property RunBrowserWithURL : Boolean Index WBBoolRunBrowserWithURL read GetB Write SetB;
property URL : String Read GetURL Write SetURL;
property RunDefault : Boolean Index WBBoolRunDefault read GetB Write SetB;
end;
var
WebBrowserProjectOptionsForm: TWebBrowserProjectOptionsForm;
implementation
{$R *.lfm}
{ TWebBrowserProjectOptionsForm }
procedure TWebBrowserProjectOptionsForm.CBCreateHTMLChange(Sender: TObject);
Procedure DOCB(CB : TCheckbox);
begin
CB.Enabled:=CBCreateHTML.Checked;
if not CB.Enabled then
CB.Checked:=False;
end;
begin
UpdateHTMLControls;
DoCB(CBMaintainPage);
DoCB(CBRunOnReady);
end;
procedure TWebBrowserProjectOptionsForm.CBUseBrowserAppChange(Sender: TObject);
begin
UpdateBrowserAppControls;
end;
procedure TWebBrowserProjectOptionsForm.CBUseHTTPServerChange(Sender: TObject);
begin
end;
procedure TWebBrowserProjectOptionsForm.UpdateBrowserAppControls;
begin
CBUseWASI.Enabled:=UseBrowserApp;
edtWasmProgram.Enabled:=UseBrowserApp;
end;
procedure TWebBrowserProjectOptionsForm.FormCreate(Sender: TObject);
begin
// localize
Caption:=pjsdPas2JSBrowserProjectOptions;
CBCreateHTML.Caption:=pjsdCreateInitialHTMLPage;
CBMaintainPage.Caption:=pjsdMaintainHTMLPage;
CBRunOnReady.Caption:=pjsdRunRTLWhenAllPageResourcesAreFullyLoaded;
CBShowUncaughtExceptions.Caption:=pjsdLetRTLShowUncaughtExceptions;
CBUseBrowserApp.Caption:=pjsdUseBrowserApplicationObject;
CBUseWASI.Caption:=pjsdUseWASIApplicationObject;
edtWasmProgram.TextHint:=pjsWasiProgramFileTextHint;
CBUseBrowserConsole.Caption:=pjsdUseBrowserConsoleUnitToDisplayWritelnOutput;
CBUseModule.Caption:=pjsCreateAJavascriptModuleInsteadOfAScript;
RunGroupBox.Caption:=pjsdRun;
RBRunLocationOnSWS.Caption:=pjsdLocationOnSimpleWebServer;
RBRunLocationOnSWS.Hint:=pjsdTheSimpleWebServerIsAutomaticallyStartedOnRunTheLo;
RBRunServerAt.Caption:=pjsdStartHTTPServerOnPort;
RBRunBrowserWithURL.Caption:=pjsdUseThisURLToStartApplication;
RBRunBrowserWithURL.Hint:=pjsdUseThisWhenYouStartYourOwnHttpServer;
RBRunDefault.Caption:=pjsExecuteRunParameters;
CBCreateHTMLChange(self);
end;
procedure TWebBrowserProjectOptionsForm.RBRunLocationOnSWSChange(
Sender: TObject);
begin
UpdateRunControls;
end;
procedure TWebBrowserProjectOptionsForm.RBRunDefaultChange(Sender: TObject);
begin
UpdateRunControls;
end;
procedure TWebBrowserProjectOptionsForm.RBRunServerAtChange(Sender: TObject);
begin
UpdateRunControls;
end;
procedure TWebBrowserProjectOptionsForm.RBRunBrowserWithURLChange(Sender: TObject);
begin
UpdateRunControls;
end;
function TWebBrowserProjectOptionsForm.GetB(AIndex: Integer): Boolean;
begin
Case Aindex of
WBBoolCreateHTML : Result:=CBCreateHTML.Checked;
WBBoolMainHTML : Result:=CBMaintainPage.Checked;
WBBoolRunOnReady : Result:=CBRunOnReady.Checked;
WBBoolShowUncaughtExceptions : Result:=CBShowUncaughtExceptions.Checked;
WBBoolUseBrowserApp : Result:=CBUseBrowserApp.Checked;
WBBoolUseWASI : Result:=cbUseWASI.Checked;
WBBoolUseBrowserConsole : Result:=CBUseBrowserConsole.Checked;
WBBoolUseModule : Result:=cbUseModule.Checked;
WBBoolRunLocation : Result:=RBRunLocationOnSWS.Checked;
WBBoolRunServerAtPort : Result:=RBRunServerAt.Checked;
WBBoolRunBrowserWithURL : Result:=RBRunBrowserWithURL.Checked;
WBBoolRunDefault : Result:=RBRunDefault.Checked;
else
Result:=False;
end;
end;
function TWebBrowserProjectOptionsForm.GetLocation: string;
begin
Result:=CBRunLocationOnSWS.Text;
end;
function TWebBrowserProjectOptionsForm.GetServerPort: Word;
begin
Result:=SERunPort.Value;
end;
function TWebBrowserProjectOptionsForm.GetURL: String;
begin
Result:=CBRunServerURL.Text;
end;
function TWebBrowserProjectOptionsForm.GetWasmProgramURL: String;
begin
Result:=edtWasmProgram.Text;
end;
procedure TWebBrowserProjectOptionsForm.SetB(AIndex: Integer; AValue: Boolean);
begin
Case Aindex of
WBBoolCreateHTML : begin CBCreateHTML.Checked:=AValue; UpdateHTMLControls; end;
WBBoolMainHTML : CBMaintainPage.Checked:=AValue;
WBBoolRunOnReady : CBRunOnReady.Checked:=AValue;
WBBoolShowUncaughtExceptions : CBShowUncaughtExceptions.Checked:=AValue;
WBBoolUseBrowserConsole : CBUseBrowserConsole.Checked:=AValue;
WBBoolUseBrowserApp : begin CBUseBrowserApp.Checked:=AValue; UpdateBrowserAppControls; end;
WBBoolUseWASI : begin cbUseWASI.Checked:=AValue; UpdateBrowserAppControls; end;
WBBoolUseModule : cbUseModule.Checked:=AValue;
WBBoolRunLocation : begin RBRunLocationOnSWS.Checked:=AValue; UpdateRunControls; end;
WBBoolRunServerAtPort : begin RBRunServerAt.Checked:=AValue; UpdateRunControls; end;
WBBoolRunBrowserWithURL : begin RBRunBrowserWithURL.Checked:=AValue; UpdateRunControls; end;
WBBoolRunDefault : begin RBRunDefault.Checked:=AValue; UpdateRunControls; end;
end;
end;
procedure TWebBrowserProjectOptionsForm.SetLocation(const AValue: string);
begin
CBRunLocationOnSWS.Text:=AValue;
end;
procedure TWebBrowserProjectOptionsForm.SetServerPort(AValue: Word);
begin
SERunPort.Value:=AValue;
end;
procedure TWebBrowserProjectOptionsForm.SetURL(AValue: String);
begin
CBRunServerURL.Text:=AValue;
end;
procedure TWebBrowserProjectOptionsForm.SetWasmProgramURL(AValue: String);
begin
edtWasmProgram.Text:=aValue;
end;
procedure TWebBrowserProjectOptionsForm.UpdateHTMLControls;
var
aEnabled: Boolean;
begin
aEnabled:=CBCreateHTML.Checked;
CBMaintainPage.Enabled:=aEnabled;
CBRunOnReady.Enabled:=aEnabled;
CBShowUncaughtExceptions.Enabled:=aEnabled;
CBUseBrowserConsole.Enabled:=aEnabled;
end;
procedure TWebBrowserProjectOptionsForm.UpdateRunControls;
begin
CBRunLocationOnSWS.Enabled:=RBRunLocationOnSWS.Enabled and RBRunLocationOnSWS.Checked;
SERunPort.Enabled:=RBRunServerAt.Enabled and RBRunServerAt.Checked;
CBRunServerURL.Enabled:=RBRunBrowserWithURL.Enabled and RBRunBrowserWithURL.Checked;
end;
procedure TWebBrowserProjectOptionsForm.HideWASM;
begin
CBUseWASI.Visible:=false;
edtWasmProgram.Visible:=false;
end;
procedure TWebBrowserProjectOptionsForm.HideModule;
begin
CBUseModule.Visible:=false;
end;
procedure TWebBrowserProjectOptionsForm.HideRunOnReady;
begin
CBRunOnReady.Visible:=false;
end;
procedure TWebBrowserProjectOptionsForm.HideUseBrowserApp;
begin
CBUseBrowserApp.Visible:=false;
end;
procedure TWebBrowserProjectOptionsForm.HideRunHTTPServer;
begin
RunGroupBox.Visible:=false;
end;
procedure TWebBrowserProjectOptionsForm.HideRunLocation;
begin
RBRunServerAt.Checked:=true;
RBRunLocationOnSWS.Visible:=false;
CBRunLocationOnSWS.Visible:=false;
end;
end.
|