mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-25 12:09:16 +02:00
MWE:
+ Added view callstack menu item git-svn-id: trunk@1653 -
This commit is contained in:
parent
887c7fdc1f
commit
9f6e67ba6f
@ -89,6 +89,7 @@ const
|
||||
ecViewUnits = ecUserFirst + 309;
|
||||
ecViewForms = ecUserFirst + 310;
|
||||
ecToggleLocals = ecUserFirst + 311;
|
||||
ecToggleCallStack = ecUserFirst + 312;
|
||||
|
||||
ecBuild = ecUserFirst + 400;
|
||||
ecRun = ecUserFirst + 401;
|
||||
@ -468,6 +469,7 @@ begin
|
||||
ecToggleBreakPoints: Result:= 'view breakpoints';
|
||||
ecToggleDebuggerOut: Result:= 'view debugger output';
|
||||
ecToggleLocals: Result := 'view local variables';
|
||||
ecToggleCallStack: Result := 'view call stack';
|
||||
ecViewUnits: Result:= 'view units';
|
||||
ecViewForms: Result:= 'view forms';
|
||||
|
||||
@ -1198,6 +1200,7 @@ begin
|
||||
Add(C,'Toggle view Watches',ecToggleWatches,VK_W,[ssCtrl,ssAlt],VK_UNKNOWN,[]);
|
||||
Add(C,'Toggle view Breakpoints',ecToggleBreakPoints,VK_B,[ssCtrl,ssAlt],VK_UNKNOWN,[]);
|
||||
Add(C,'Toggle view Local Variables',ecToggleLocals,VK_L,[ssCtrl,ssAlt],VK_UNKNOWN,[]);
|
||||
Add(C,'Toggle view Call Stack',ecToggleCallStack,VK_S,[ssCtrl,ssAlt],VK_UNKNOWN,[]);
|
||||
Add(C,'Toggle view Debugger Output',ecToggleDebuggerOut,VK_UNKNOWN,[],VK_UNKNOWN,[]);
|
||||
Add(C,'View Units',ecViewUnits,VK_F12,[ssCtrl],VK_UNKNOWN,[]);
|
||||
Add(C,'View Forms',ecViewForms,VK_F12,[ssShift],VK_UNKNOWN,[]);
|
||||
|
@ -106,6 +106,7 @@ ResourceString
|
||||
lisMenuViewWatches = 'Watches';
|
||||
lisMenuViewBreakPoints = 'BreakPoints';
|
||||
lisMenuViewLocalVariables = 'Local Variables';
|
||||
lisMenuViewCallStack = 'Call Stack';
|
||||
lisMenuViewDebugOutput = 'Debug output';
|
||||
lisMenuNewProject = 'New Project';
|
||||
lisMenuOpenProject = 'Open Project';
|
||||
|
@ -1405,6 +1405,11 @@ begin
|
||||
itmViewLocals.Name:='itmViewLocals';
|
||||
itmViewLocals.Caption := lisMenuViewLocalVariables;
|
||||
itmViewDebugWindows.Add(itmViewLocals);
|
||||
|
||||
itmViewCallStack := TMenuItem.Create(Self);
|
||||
itmViewCallStack.Name:='itmViewCallStack';
|
||||
itmViewCallStack.Caption := lisMenuViewCallStack;
|
||||
itmViewDebugWindows.Add(itmViewCallStack);
|
||||
|
||||
itmViewDebugOutput := TMenuItem.Create(Self);
|
||||
itmViewDebugOutput.Name:='itmViewDebugOutput';
|
||||
@ -6321,6 +6326,10 @@ end.
|
||||
|
||||
{ =============================================================================
|
||||
$Log$
|
||||
Revision 1.290 2002/04/30 15:01:05 lazarus
|
||||
MWE:
|
||||
+ Added view callstack menu item
|
||||
|
||||
Revision 1.289 2002/04/28 14:10:27 lazarus
|
||||
MG: fixes for saving resource files
|
||||
|
||||
|
@ -143,6 +143,7 @@ type
|
||||
itmViewwatches: TMenuItem;
|
||||
itmViewBreakpoints: TMenuItem;
|
||||
itmViewLocals: TMenuItem;
|
||||
itmViewCallStack: TMenuItem;
|
||||
itmViewDebugOutput: TMenuItem;
|
||||
|
||||
itmProjectNew: TMenuItem;
|
||||
|
Loading…
Reference in New Issue
Block a user