mirror of https://gitlab.com/basile.b/dexed.git
add a context menu to the editor status bar
This commit is contained in:
parent
170743116e
commit
2bf823e685
|
@ -1,11 +1,12 @@
|
||||||
# v3.9.19
|
# v3.9.19-dev
|
||||||
|
|
||||||
## Enhancements
|
## Enhancements
|
||||||
|
|
||||||
- Completion, changed defaults so that `.` does not validate but instead close, leaving typed text as-is.
|
- Completion, changed defaults so that `.` does not validate but instead close, leaving typed text as-is.
|
||||||
To apply changes, set editopr option `closeCompletionCharsWithSpace` to `*+-/^=~><%.` and `closeCompletionChars` to `,;)}]!`.
|
To apply the changes on on exisint installation, set editor option `closeCompletionCharsWithSpace` to `*+-/^=~><%.` and `closeCompletionChars` to `,;)}]!`.
|
||||||
- Completion, while menu opened, <key>Backspace</key> had for effect to also delete next char.
|
- Completion, while menu opened, <key>Backspace</key> had for effect to also delete next char.
|
||||||
This was an old workaround that has no reason to be maintained anymore.
|
This was an old workaround that has no reason to be maintained anymore.
|
||||||
|
- Editor status bar, added a context menu with casually useful actions related to the editor filename (open containing folder, copy file name, cd in terminal, etc.)
|
||||||
|
|
||||||
## Bugs fixed
|
## Bugs fixed
|
||||||
|
|
||||||
|
|
|
@ -20,8 +20,8 @@ inherited EditorWidget: TEditorWidget
|
||||||
ClientWidth = 465
|
ClientWidth = 465
|
||||||
object editorStatus: TStatusBar[0]
|
object editorStatus: TStatusBar[0]
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 21
|
Height = 19
|
||||||
Top = 375
|
Top = 377
|
||||||
Width = 465
|
Width = 465
|
||||||
BorderSpacing.Bottom = 2
|
BorderSpacing.Bottom = 2
|
||||||
Panels = <
|
Panels = <
|
||||||
|
@ -50,6 +50,7 @@ inherited EditorWidget: TEditorWidget
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
inherited toolbar: TDexedToolBar
|
inherited toolbar: TDexedToolBar
|
||||||
|
Height = 30
|
||||||
Width = 457
|
Width = 457
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -281,4 +282,24 @@ inherited EditorWidget: TEditorWidget
|
||||||
OnClick = MenuItem8Click
|
OnClick = MenuItem8Click
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
object mnuCurFile: TPopupMenu[4]
|
||||||
|
Left = 216
|
||||||
|
Top = 16
|
||||||
|
object mnuCurFileShowInMiniExpl: TMenuItem
|
||||||
|
Caption = 'Show in mini explorer'
|
||||||
|
OnClick = mnuCurFileShowInMiniExplClick
|
||||||
|
end
|
||||||
|
object mnuCurFileShellOpen: TMenuItem
|
||||||
|
Caption = 'Open containing folder'
|
||||||
|
OnClick = mnuCurFileShellOpenClick
|
||||||
|
end
|
||||||
|
object mnuCurrFileCdInConsole: TMenuItem
|
||||||
|
Caption = 'cd in terminal'
|
||||||
|
OnClick = mnuCurrFileCdInConsoleClick
|
||||||
|
end
|
||||||
|
object mnuCurFileCopyName: TMenuItem
|
||||||
|
Caption = 'Copy filename'
|
||||||
|
OnClick = mnuCurFileCopyNameClick
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -10,7 +10,7 @@ uses
|
||||||
SynPluginSyncroEdit, SynEdit, SynHighlighterMulti, AnchorDocking, u_dialogs,
|
SynPluginSyncroEdit, SynEdit, SynHighlighterMulti, AnchorDocking, u_dialogs,
|
||||||
u_widget, u_interfaces, u_synmemo, u_dlang, u_common, u_dcd, u_observer,
|
u_widget, u_interfaces, u_synmemo, u_dlang, u_common, u_dcd, u_observer,
|
||||||
u_sharedres, u_controls, u_writableComponent, u_dsgncontrols, LMessages,
|
u_sharedres, u_controls, u_writableComponent, u_dsgncontrols, LMessages,
|
||||||
SynEditTypes;
|
SynEditTypes, Clipbrd;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
|
@ -62,6 +62,10 @@ type
|
||||||
MenuItem14: TMenuItem;
|
MenuItem14: TMenuItem;
|
||||||
MenuItem15: TMenuItem;
|
MenuItem15: TMenuItem;
|
||||||
MenuItem16: TMenuItem;
|
MenuItem16: TMenuItem;
|
||||||
|
mnuCurFileCopyName: TMenuItem;
|
||||||
|
mnuCurFileShowInMiniExpl: TMenuItem;
|
||||||
|
mnuCurFileShellOpen: TMenuItem;
|
||||||
|
mnuCurrFileCdInConsole: TMenuItem;
|
||||||
mnuEdTabWidth2: TMenuItem;
|
mnuEdTabWidth2: TMenuItem;
|
||||||
mnuEdTabWidth3: TMenuItem;
|
mnuEdTabWidth3: TMenuItem;
|
||||||
mnuEdTabWidth4: TMenuItem;
|
mnuEdTabWidth4: TMenuItem;
|
||||||
|
@ -107,8 +111,13 @@ type
|
||||||
macRecorder: TSynMacroRecorder;
|
macRecorder: TSynMacroRecorder;
|
||||||
editorStatus: TStatusBar;
|
editorStatus: TStatusBar;
|
||||||
mnuEditor: TPopupMenu;
|
mnuEditor: TPopupMenu;
|
||||||
|
mnuCurFile: TPopupMenu;
|
||||||
procedure FormShortCut(var Msg: TLMKey; var Handled: Boolean);
|
procedure FormShortCut(var Msg: TLMKey; var Handled: Boolean);
|
||||||
procedure FormShow(Sender: TObject);
|
procedure FormShow(Sender: TObject);
|
||||||
|
procedure mnuCurFileCopyNameClick(Sender: TObject);
|
||||||
|
procedure mnuCurFileShellOpenClick(Sender: TObject);
|
||||||
|
procedure mnuCurFileShowInMiniExplClick(Sender: TObject);
|
||||||
|
procedure mnuCurrFileCdInConsoleClick(Sender: TObject);
|
||||||
procedure mnuedDdocTmpClick(Sender: TObject);
|
procedure mnuedDdocTmpClick(Sender: TObject);
|
||||||
procedure mnuedGotolineClick(Sender: TObject);
|
procedure mnuedGotolineClick(Sender: TObject);
|
||||||
procedure mnuedNextWarnClick(Sender: TObject);
|
procedure mnuedNextWarnClick(Sender: TObject);
|
||||||
|
@ -171,6 +180,7 @@ type
|
||||||
procedure focusedEditorChanged;
|
procedure focusedEditorChanged;
|
||||||
procedure memoCmdProcessed(Sender: TObject; var Command: TSynEditorCommand; var AChar: TUTF8Char; Data: pointer);
|
procedure memoCmdProcessed(Sender: TObject; var Command: TSynEditorCommand; var AChar: TUTF8Char; Data: pointer);
|
||||||
procedure setDetectModuleName(value: boolean);
|
procedure setDetectModuleName(value: boolean);
|
||||||
|
procedure statusBarContextPopup(Sender: TObject; MousePos: TPoint; var Handled: Boolean);
|
||||||
//
|
//
|
||||||
procedure docNew(document: TDexedMemo);
|
procedure docNew(document: TDexedMemo);
|
||||||
procedure docClosing(document: TDexedMemo);
|
procedure docClosing(document: TDexedMemo);
|
||||||
|
@ -427,6 +437,7 @@ begin
|
||||||
editorStatus.Panels[2].Width := ScaleX(125, 96);
|
editorStatus.Panels[2].Width := ScaleX(125, 96);
|
||||||
editorStatus.Panels[3].Width := ScaleX(105, 96);
|
editorStatus.Panels[3].Width := ScaleX(105, 96);
|
||||||
editorStatus.Panels[4].Width := ScaleX(2000, 96);
|
editorStatus.Panels[4].Width := ScaleX(2000, 96);
|
||||||
|
editorStatus.OnContextPopup := @statusBarContextPopup;
|
||||||
|
|
||||||
fTokList := TLexTokenList.Create;
|
fTokList := TLexTokenList.Create;
|
||||||
|
|
||||||
|
@ -1085,6 +1096,50 @@ begin
|
||||||
fDoc.Visible:=true;
|
fDoc.Visible:=true;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TEditorWidget.statusBarContextPopup(Sender: TObject; MousePos: TPoint; var Handled: Boolean);
|
||||||
|
begin
|
||||||
|
handled := false;
|
||||||
|
if fDoc.fileName.fileExists then
|
||||||
|
begin
|
||||||
|
handled := true;
|
||||||
|
if editorStatus.GetPanelIndexAt(MousePos.X, MousePos.Y).equals(4) then
|
||||||
|
begin
|
||||||
|
MousePos := editorStatus.ClientToScreen(MousePos);
|
||||||
|
mnuCurFile.PopUp(MousePos.X, MousePos.Y);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TEditorWidget.mnuCurFileCopyNameClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
if fDoc.fileName.fileExists then
|
||||||
|
Clipboard.AsText := fDoc.fileName;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TEditorWidget.mnuCurFileShellOpenClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
if fDoc.fileName.fileExists then
|
||||||
|
shellOpen(fDoc.fileName.extractFileDir, false);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TEditorWidget.mnuCurFileShowInMiniExplClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
if fDoc.fileName.fileExists then
|
||||||
|
getExplorer().browse(fDoc.fileName.extractFileDir);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TEditorWidget.mnuCurrFileCdInConsoleClick(Sender: TObject);
|
||||||
|
var
|
||||||
|
t: ITerminal;
|
||||||
|
begin
|
||||||
|
if fDoc.fileName.fileExists then
|
||||||
|
begin
|
||||||
|
t := getTerminal();
|
||||||
|
if assigned(t) then
|
||||||
|
t.cd(fDoc.fileName.extractFileDir);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TEditorWidget.mnuedGotolineClick(Sender: TObject);
|
procedure TEditorWidget.mnuedGotolineClick(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
if fDoc.isAssigned then
|
if fDoc.isAssigned then
|
||||||
|
|
|
@ -379,6 +379,14 @@ type
|
||||||
function currentLocation: string;
|
function currentLocation: string;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
(**
|
||||||
|
* Single service related to build-in file explorer.
|
||||||
|
*)
|
||||||
|
ITerminal = interface(ISingleService)
|
||||||
|
// does a cd
|
||||||
|
procedure cd(const location: string);
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
(**
|
(**
|
||||||
* Single service provided by the options editor.
|
* Single service provided by the options editor.
|
||||||
|
@ -499,6 +507,7 @@ type
|
||||||
function getMainMenu: IMainMenu; inline;
|
function getMainMenu: IMainMenu; inline;
|
||||||
function getCodeFormatting: ICodeFormatting; inline;
|
function getCodeFormatting: ICodeFormatting; inline;
|
||||||
function getLifeTimeManager: ILifetimeManager; inline;
|
function getLifeTimeManager: ILifetimeManager; inline;
|
||||||
|
function getTerminal: ITerminal; inline;
|
||||||
|
|
||||||
const
|
const
|
||||||
DCompiler2String: array[DCompiler] of string = ('dmd', 'gdc', 'gdmd', 'ldc', 'ldmd',
|
DCompiler2String: array[DCompiler] of string = ('dmd', 'gdc', 'gdmd', 'ldc', 'ldmd',
|
||||||
|
@ -676,6 +685,11 @@ function getLifeTimeManager: ILifetimeManager; inline;
|
||||||
begin
|
begin
|
||||||
exit(EntitiesConnector.getSingleService('ILifetimeManager') as ILifetimeManager);
|
exit(EntitiesConnector.getSingleService('ILifetimeManager') as ILifetimeManager);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function getTerminal: ITerminal; inline;
|
||||||
|
begin
|
||||||
|
exit(EntitiesConnector.getSingleService('ITerminal') as ITerminal);
|
||||||
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
function usingCompilerInfo(value: DCompiler; translateToWrapper: boolean): string;
|
function usingCompilerInfo(value: DCompiler; translateToWrapper: boolean): string;
|
||||||
|
|
|
@ -39,6 +39,7 @@ inherited TermWidget: TTermWidget
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
inherited toolbar: TDexedToolBar
|
inherited toolbar: TDexedToolBar
|
||||||
|
Height = 30
|
||||||
Width = 666
|
Width = 666
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -70,7 +70,7 @@ type
|
||||||
|
|
||||||
{ TTermWidget }
|
{ TTermWidget }
|
||||||
|
|
||||||
TTermWidget = class(TDexedWidget, IDocumentObserver, IProjectObserver, IMiniExplorerObserver)
|
TTermWidget = class(TDexedWidget, IDocumentObserver, IProjectObserver, IMiniExplorerObserver, ITerminal)
|
||||||
Panel1: TPanel;
|
Panel1: TPanel;
|
||||||
ScrollBar1: TScrollBar;
|
ScrollBar1: TScrollBar;
|
||||||
procedure ContentPaint(Sender: TObject);
|
procedure ContentPaint(Sender: TObject);
|
||||||
|
@ -108,6 +108,10 @@ type
|
||||||
procedure SetVisible(Value: boolean); override;
|
procedure SetVisible(Value: boolean); override;
|
||||||
|
|
||||||
public
|
public
|
||||||
|
|
||||||
|
function singleServiceName: string;
|
||||||
|
procedure cd(const location: string);
|
||||||
|
|
||||||
constructor create(aOwner: TComponent); override;
|
constructor create(aOwner: TComponent); override;
|
||||||
destructor destroy; override;
|
destructor destroy; override;
|
||||||
end;
|
end;
|
||||||
|
@ -272,6 +276,7 @@ begin
|
||||||
fOpts.loadFromFile(f);
|
fOpts.loadFromFile(f);
|
||||||
|
|
||||||
EntitiesConnector.addObserver(fOpts);
|
EntitiesConnector.addObserver(fOpts);
|
||||||
|
EntitiesConnector.addSingleService(self);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
destructor TTermWidget.destroy;
|
destructor TTermWidget.destroy;
|
||||||
|
@ -304,6 +309,16 @@ begin
|
||||||
fDisableScrollBarSync := false;
|
fDisableScrollBarSync := false;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TTermWidget.cd(const location: string);
|
||||||
|
begin
|
||||||
|
checkDirectory(location);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TTermWidget.singleServiceName: string;
|
||||||
|
begin
|
||||||
|
result := 'ITerminal';
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TTermWidget.SetVisible(Value: boolean);
|
procedure TTermWidget.SetVisible(Value: boolean);
|
||||||
begin
|
begin
|
||||||
inherited;
|
inherited;
|
||||||
|
|
Loading…
Reference in New Issue