globals.pas

来自「Delphi的另一款钢琴软件」· PAS 代码 · 共 31 行

PAS
31
字号
unit Globals;

interface

const
  ProgramKey = 'Software\Woozle\Powerseq 3';

  DirectoriesKey = 'Directories';
  PropertiesKey = 'Properties';
  InputPortsKey = 'Input Ports';
  OutputPortsKey = 'Output Ports';

  MidiFilePathValue = 'MIDI File Path';
  InstrumentPathValue = 'Instrument Path';

  ShowHintsValue = 'Show Hints';
  InitialTracksheetValue = 'Initial Tracksheet';
  AutoSynchronizeValue = 'Auto Synchronize';
  DragNoteVolumeValue = 'Drag Note Volume';
  DefaultOutputPortValue = 'Default Port';
  BoostPriorityValue = 'Boost Playback Priority';

var
  ShowInitialTracksheet : boolean;
  AutoSynchronize : boolean;


implementation

end.
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?