Ignore:
Timestamp:
Nov 23, 2023, 10:42:57 PM (6 months ago)
Author:
chronos
Message:
  • Added: Settings form.
  • Added: Configurable theme and interface language.
  • Modified: Improved user interface.
  • Added: Allow to select what should be visible as main start up form.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ByteArray/ByteArray.lpr

    r50 r57  
    11program ByteArray;
    2 
    3 {$mode objfpc}{$H+}
    42
    53uses
    64  {$IFDEF UNIX}
    7   cthreads,
     5  cthreads, clocale,
    86  {$ENDIF}
    97  {$IFDEF HASAMIGA}
     
    1210  Interfaces, SysUtils,// this includes the LCL widgetset
    1311  Forms, FormMain, FormConsole, FormDevice, FormScreen, FormDisassembler,
    14   FormAssembler, Cpu, BigInt, Channel, Common.Memory, FrameBuffer, Device, Storage,
    15   DeviceMapper, Machine, Disassembler, Instructions, Parser, Message, Assembler,
    16   Serial, Mouse, FormSourceEditor, FormMessages, FormMemory, FormStorage, Common
     12  FormAssembler, Cpu, BigInt, Channel, Common.Memory, FrameBuffer, Device,
     13  Storage, DeviceMapper, Machine, Disassembler, Instructions, Parser, Message,
     14  Assembler, Serial, Mouse, FormSourceEditor, FormMessages, FormMemory,
     15  FormStorage, Common, FormSettings, Core, FormDebugger
    1716  { you can add units after this };
    1817
     
    3433  Application.Scaled:=True;
    3534  Application.Initialize;
     35  Application.CreateForm(TCore, Core.Core);
    3636  Application.CreateForm(TFormMain, FormMain.FormMain);
    3737  Application.Run;
Note: See TracChangeset for help on using the changeset viewer.