Ignore:
Timestamp:
Feb 19, 2012, 12:03:21 AM (12 years ago)
Author:
chronos
Message:
  • Added: Function to show execution point in code if program is paused.
  • Added: Some partial stepping implementation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UMainForm.lfm

    r34 r35  
    590590        Action = AProgramRunToCursor
    591591      end
     592      object MenuItem31: TMenuItem
     593        Action = AProgramShowExecutionPoint
     594      end
    592595    end
    593596    object MenuItem24: TMenuItem
     
    821824      Caption = 'Step into'
    822825      ImageIndex = 15
     826      OnExecute = AProgramStepIntoExecute
    823827      ShortCut = 118
    824828    end
     
    827831      Caption = 'Step over'
    828832      ImageIndex = 17
     833      OnExecute = AProgramStepOverExecute
    829834      ShortCut = 119
    830835    end
     
    833838      Caption = 'Run to cursor'
    834839      ImageIndex = 14
     840      OnExecute = AProgramRunToCursorExecute
    835841      ShortCut = 115
    836842    end
     
    839845      Caption = 'Step out'
    840846      ImageIndex = 16
     847      OnExecute = AProgramStepOutExecute
    841848      ShortCut = 8311
    842849    end
     
    876883      Caption = 'Show position in target'
    877884      OnExecute = AShowTargetPositionExecute
     885      ShortCut = 16393
    878886    end
    879887    object AShowSourcePosition: TAction
    880888      Caption = 'Show position in source'
    881889      OnExecute = AShowSourcePositionExecute
     890      ShortCut = 16393
     891    end
     892    object AProgramShowExecutionPoint: TAction
     893      Category = 'Program'
     894      Caption = 'Show execution point'
     895      OnExecute = AProgramShowExecutionPointExecute
    882896    end
    883897  end
Note: See TracChangeset for help on using the changeset viewer.