Changeset 12 for trunk/UMainForm.lfm


Ignore:
Timestamp:
Feb 11, 2012, 4:32:27 PM (12 years ago)
Author:
chronos
Message:
  • Added: Display source code caret position in statusbar.
  • Modified: Optimized jump speed using precreated direct jump table.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        33LazFuckIDE.lps
        44backup
         5LazFuckIDE
  • trunk/UMainForm.lfm

    r11 r12  
    11object MainForm: TMainForm
    2   Left = 258
     2  Left = 286
    33  Height = 465
    4   Top = 121
     4  Top = 140
    55  Width = 643
    66  Caption = 'LazFuck'
    7   ClientHeight = 446
     7  ClientHeight = 440
    88  ClientWidth = 643
    99  Menu = MainMenu1
     
    1313  OnShow = FormShow
    1414  LCLVersion = '0.9.31'
     15  WindowState = wsMaximized
    1516  object MemoSource: TMemo
    1617    Left = 0
    17     Height = 370
     18    Height = 363
    1819    Top = 56
    1920    Width = 643
     
    2223    Font.Name = 'Courier New'
    2324    OnChange = MemoSourceChange
     25    OnKeyDown = MemoSourceKeyDown
     26    OnKeyPress = MemoSourceKeyPress
     27    OnKeyUp = MemoSourceKeyUp
     28    OnMouseDown = MemoSourceMouseDown
    2429    ParentFont = False
    2530    ScrollBars = ssAutoBoth
     
    2833  object StatusBar1: TStatusBar
    2934    Left = 0
    30     Height = 20
    31     Top = 426
     35    Height = 21
     36    Top = 419
    3237    Width = 643
    33     Panels = <>
     38    Panels = <   
     39      item
     40        Width = 70
     41      end   
     42      item
     43        Width = 70
     44      end   
     45      item
     46        Width = 80
     47      end>
     48    SimplePanel = False
    3449  end
    3550  object ToolBar1: TToolBar
     
    630645      Caption = 'Compiled'
    631646      OnExecute = AViewCompiledExecute
     647    end
     648    object AInterpretterStepInto: TAction
     649      Caption = 'Step into'
     650    end
     651    object AInterpretterStopOver: TAction
     652      Caption = 'Step over'
     653    end
     654    object AInterpretterRunToCursor: TAction
     655      Caption = 'Run to cursor'
     656    end
     657    object AInterpretterStepOut: TAction
     658      Caption = 'Step out'
     659    end
     660    object ABreakpointSet: TAction
     661      Caption = 'Breakpoint set'
     662    end
     663    object ABreakpointUnset: TAction
     664      Caption = 'Unset breakpoint'
    632665    end
    633666  end
Note: See TracChangeset for help on using the changeset viewer.