mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 16:59:09 +02:00
IDE: less hints
git-svn-id: trunk@58265 -
This commit is contained in:
parent
eb3384c70e
commit
47c60bcd9e
@ -108,7 +108,6 @@ var
|
|||||||
const
|
const
|
||||||
RESULTSEPARATOR='-----------';
|
RESULTSEPARATOR='-----------';
|
||||||
RESULTEVAL='>>>> ';
|
RESULTEVAL='>>>> ';
|
||||||
RESULTMOD='<<>> ';
|
|
||||||
|
|
||||||
{ TEvaluateDlg }
|
{ TEvaluateDlg }
|
||||||
|
|
||||||
|
@ -83,14 +83,14 @@ type
|
|||||||
FGridData: TStringGrid;
|
FGridData: TStringGrid;
|
||||||
FGridMethods: TStringGrid;
|
FGridMethods: TStringGrid;
|
||||||
FUpdateLock, FUpdateNeeded: Boolean;
|
FUpdateLock, FUpdateNeeded: Boolean;
|
||||||
FTestUpdateLock, FTestUpdateNeeded: Boolean;
|
FTestUpdateLock: Boolean;
|
||||||
FRowClicked: Integer;
|
FRowClicked: Integer;
|
||||||
FHistory: TStringList;
|
FHistory: TStringList;
|
||||||
FHistoryIndex: Integer;
|
FHistoryIndex: Integer;
|
||||||
procedure EvaluateCallback(Sender: TObject; ASuccess: Boolean;
|
procedure EvaluateCallback(Sender: TObject; ASuccess: Boolean;
|
||||||
ResultText: String; ResultDBGType: TDBGType);
|
ResultText: String; ResultDBGType: TDBGType);
|
||||||
procedure EvaluateTestCallback(Sender: TObject; ASuccess: Boolean;
|
procedure EvaluateTestCallback(Sender: TObject; ASuccess: Boolean;
|
||||||
ResultText: String; ResultDBGType: TDBGType);
|
{%H-}ResultText: String; ResultDBGType: TDBGType);
|
||||||
procedure Localize;
|
procedure Localize;
|
||||||
function ShortenedExpression: String;
|
function ShortenedExpression: String;
|
||||||
procedure ContextChanged(Sender: TObject);
|
procedure ContextChanged(Sender: TObject);
|
||||||
|
@ -54,7 +54,8 @@ type
|
|||||||
function ProcessStop: Boolean;
|
function ProcessStop: Boolean;
|
||||||
protected
|
protected
|
||||||
function GetSupportedCommands: TDBGCommands; override;
|
function GetSupportedCommands: TDBGCommands; override;
|
||||||
function RequestCommand(const ACommand: TDBGCommand; const AParams: array of const; const ACallback: TMethod): Boolean; override;
|
function RequestCommand(const ACommand: TDBGCommand; const AParams: array of const;
|
||||||
|
const {%H-}ACallback: TMethod): Boolean; override;
|
||||||
public
|
public
|
||||||
class function Caption: String; override;
|
class function Caption: String; override;
|
||||||
class function NeedsExePath: boolean; override;
|
class function NeedsExePath: boolean; override;
|
||||||
|
@ -62,7 +62,7 @@ var
|
|||||||
|
|
||||||
function SetupMainIDEInstance: boolean; // false if this is a secondary instance
|
function SetupMainIDEInstance: boolean; // false if this is a secondary instance
|
||||||
function GetPidFile: string;
|
function GetPidFile: string;
|
||||||
function IsLazarusPIDRunning(aPID: int64): boolean;
|
function IsLazarusPIDRunning({%H-}aPID: int64): boolean;
|
||||||
function GetRemoteControlFilename: string;
|
function GetRemoteControlFilename: string;
|
||||||
procedure CleanUpPIDFile;
|
procedure CleanUpPIDFile;
|
||||||
|
|
||||||
|
@ -11112,10 +11112,8 @@ procedure TMainIDE.SrcNotebookShowHintForSource(SrcEdit: TSourceEditor;
|
|||||||
|
|
||||||
var
|
var
|
||||||
ActiveUnitInfo: TUnitInfo;
|
ActiveUnitInfo: TUnitInfo;
|
||||||
BaseURL, SmartHintStr, Expression, DebugEval, DebugEvalDerefer: String;
|
BaseURL, SmartHintStr, Expression: String;
|
||||||
DBGType,DBGTypeDerefer: TDBGType;
|
|
||||||
HasHint: Boolean;
|
HasHint: Boolean;
|
||||||
p: SizeInt;
|
|
||||||
Opts: TDBGEvaluateFlags;
|
Opts: TDBGEvaluateFlags;
|
||||||
AtomStartPos, AtomEndPos: integer;
|
AtomStartPos, AtomEndPos: integer;
|
||||||
AtomRect: TRect;
|
AtomRect: TRect;
|
||||||
|
Loading…
Reference in New Issue
Block a user