Changeset 38 for trunk/LazFuckIDE.lpr


Ignore:
Timestamp:
Feb 19, 2012, 10:29:55 AM (12 years ago)
Author:
chronos
Message:
  • Modified: Used manual docked forms for better code separation.
  • Modified: Used tabbed layout with PageControl and TabSheets for better usability.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LazFuckIDE.lpr

    r37 r38  
    99  {$ENDIF}
    1010  Interfaces, // this includes the LCL widgetset
    11   Forms, UApplicationInfo, UTarget, UTargetC, UTargetDelphi,
     11   Forms, UApplicationInfo, UTarget, UTargetC, UTargetDelphi,
    1212  UTargetInterpretter, UTargetPHP, UFormCPU, UFormMain,
    1313  UFormOptions, CoolTranslator, Common,
    14   TemplateGenerics, UFormTargets, UFormOutput, UFormInput, UFormMemory;
     14  TemplateGenerics, UFormTargets, UFormOutput, UFormInput, UFormMemory,
     15UFormMessages;
    1516
    1617{$R *.res}
     
    2122  Application.Initialize;
    2223  Application.CreateForm(TMainForm, MainForm);
    23   Application.CreateForm(TInterpreterForm, InterpreterForm);
     24  Application.CreateForm(TFormCPU, FormCPU);
    2425  Application.CreateForm(TOptionsForm, OptionsForm);
    2526  Application.CreateForm(TFormCompilers, FormCompilers);
    26   Application.CreateForm(TForm1, Form1);
    27   Application.CreateForm(TForm2, Form2);
    28   Application.CreateForm(TForm3, Form3);
     27  Application.CreateForm(TFormOutput, FormOutput);
     28  Application.CreateForm(TFormInput, FormInput);
     29  Application.CreateForm(TFormMemory, FormMemory);
     30  Application.CreateForm(TFormMesssages, FormMesssages);
    2931  Application.Run;
    3032end.
Note: See TracChangeset for help on using the changeset viewer.