remove support for Laz versions < 2.2

This commit is contained in:
Basile Burg 2022-06-17 16:01:51 +02:00
parent 4eabd7e65b
commit f2d18f718d
6 changed files with 8 additions and 63 deletions

View File

@ -3,19 +3,23 @@ program dexed;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
uses uses
{$IFDEF UNIX}//{$IFDEF UseCThreads} {$IFDEF UNIX}
cthreads, cthreads,
{$ENDIF}//{$ENDIF} {$ENDIF}
Interfaces, Forms, lazcontrols, runtimetypeinfocontrols, anchordockpkg, Interfaces, Forms, lazcontrols, runtimetypeinfocontrols, anchordockpkg,
tachartlazaruspkg, u_sharedres, u_dexed_d, u_observer, u_libman, tachartlazaruspkg, u_sharedres, u_dexed_d, u_observer, u_libman,
u_symstring, u_tools, u_dcd, u_main, u_writableComponent, u_symstring, u_tools, u_dcd, u_main, u_writableComponent,
u_inspectors, u_editoroptions, u_dockoptions, u_shortcutseditor, u_mru, u_inspectors, u_editoroptions, u_dockoptions, u_shortcutseditor, u_mru,
u_processes, u_dialogs, u_dubprojeditor, u_controls, u_dfmt, u_processes, u_dialogs, u_dubprojeditor, u_controls, u_dfmt,
u_lcldragdrop, u_stringrange, u_dlangmaps, u_projgroup, u_projutils, u_lcldragdrop, u_stringrange, u_dlangmaps, u_projgroup, u_projutils,
u_d2synpresets, u_dbgitf, u_ddemangle, u_dubproject, u_d2synpresets, u_dbgitf, u_ddemangle, u_dubproject, LCLVersion,
u_halstead, u_diff, u_profileviewer, u_semver, u_term, u_simpleget, u_halstead, u_diff, u_profileviewer, u_semver, u_term, u_simpleget,
u_makeproject; u_makeproject;
{$if lcl_fullversion < 2020000}
{$ERROR Lazarus version >= 2.2 required}
{$endif}
{$R *.res} {$R *.res}
begin begin

View File

@ -50,9 +50,7 @@ begin
HideHeaderCaptionForFloatingCheckBox.OnChange := @doChanged; HideHeaderCaptionForFloatingCheckBox.OnChange := @doChanged;
FlattenHeadersCheckBox.OnChange := @doChanged; FlattenHeadersCheckBox.OnChange := @doChanged;
FilledHeadersCheckBox.OnChange := @doChanged; FilledHeadersCheckBox.OnChange := @doChanged;
{$if lcl_fullversion >= 2020000}
FloatingWindowsOnTop.Visible := false; FloatingWindowsOnTop.Visible := false;
{$endif}
// //
HeaderStyleComboBox.OnChange := @doChanged; HeaderStyleComboBox.OnChange := @doChanged;
// //

View File

@ -1747,23 +1747,13 @@ var
s: TAnchorDockSplitter; s: TAnchorDockSplitter;
h: TAnchorDockHostSite; h: TAnchorDockHostSite;
begin begin
{$if lcl_fullversion >= 2020000}
DockMaster.MainDockForm := self; DockMaster.MainDockForm := self;
{$endif}
fDockingIsInitialized := true; fDockingIsInitialized := true;
if not reset then if not reset then
begin begin
DockMaster.MakeDockSite(Self, [akBottom], admrpChild); DockMaster.MakeDockSite(Self, [akBottom], admrpChild);
DockMaster.OnShowOptions := @ShowAnchorDockOptions; DockMaster.OnShowOptions := @ShowAnchorDockOptions;
{$if lcl_fullversion < 2020000}
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
{$WARNING Support will be removed after Lazarus 2.2.2 release}
DockMaster.HeaderStyle := adhsPoints;
{$else}
DockMaster.HeaderStyle := 'Points'; DockMaster.HeaderStyle := 'Points';
{$endif}
DockMaster.HideHeaderCaptionFloatingControl := true; DockMaster.HideHeaderCaptionFloatingControl := true;
// makes widget dockable // makes widget dockable
for i := 0 to fWidgList.Count-1 do for i := 0 to fWidgList.Count-1 do
@ -3765,25 +3755,10 @@ begin
layoutUpdateMenu; layoutUpdateMenu;
end; end;
{$if lcl_fullversion < 2020000}
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
{$WARNING Support will be removed after Lazarus 2.2.2 release}
procedure TMainForm.updateFloatingWidgetOnTop(onTop: boolean);
var
widg: TDexedWidget;
const
fstyle: array[boolean] of TFormStyle = (fsNormal, fsStayOnTop);
begin
for widg in fWidgList do if widg.Parent.isAssigned and
widg.Parent.Parent.isNotAssigned and widg.isDockable then
TForm(widg.Parent).FormStyle := fstyle[onTop];
end;
{$else}
procedure TMainForm.updateFloatingWidgetOnTop(onTop: boolean); procedure TMainForm.updateFloatingWidgetOnTop(onTop: boolean);
begin begin
DockMaster.FloatingWindowsOnTop := onTop; DockMaster.FloatingWindowsOnTop := onTop;
end; end;
{$endif}
procedure TMainForm.snapTopSplitterToMenu; procedure TMainForm.snapTopSplitterToMenu;
var var

View File

@ -391,7 +391,6 @@ type
property syncroEdit: TSynPluginSyncroEdit read fSyncEdit; property syncroEdit: TSynPluginSyncroEdit read fSyncEdit;
property isDSource: boolean read fIsDSource; property isDSource: boolean read fIsDSource;
property isTemporary: boolean read getIfTemp; property isTemporary: boolean read getIfTemp;
property TextView;
// //
property transparentGutter: boolean read fTransparentGutter write setGutterTransparent; property transparentGutter: boolean read fTransparentGutter write setGutterTransparent;
property isProjectDescription: boolean read fIsProjectDescription write fIsProjectDescription; property isProjectDescription: boolean read fIsProjectDescription write fIsProjectDescription;
@ -846,15 +845,7 @@ begin
begin begin
// - CollapsedLineForFoldAtLine() does not handle the sub-folding. // - CollapsedLineForFoldAtLine() does not handle the sub-folding.
// - TextView visibility is increased so this is not the standard way of getting the infos. // - TextView visibility is increased so this is not the standard way of getting the infos.
{$if lcl_fullversion < 2020000}
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
{$WARNING Support will be removed after Lazarus 2.2.2 release}
start := fMemo.TextView.CollapsedLineForFoldAtLine(i);
{$else}
start := TSynEditFoldedView(fMemo.TextViewsManager.SynTextViewByClass[TSynEditFoldedView]).CollapsedLineForFoldAtLine(i); start := TSynEditFoldedView(fMemo.TextViewsManager.SynTextViewByClass[TSynEditFoldedView]).CollapsedLineForFoldAtLine(i);
{$endif}
if start.equals(-1) then if start.equals(-1) then
continue; continue;
if start = prev then if start = prev then
@ -886,13 +877,7 @@ begin
itm := TFoldCache(fFolds.Items[i]); itm := TFoldCache(fFolds.Items[i]);
if not itm.isCollapsed then if not itm.isCollapsed then
continue; continue;
{$if lcl_fullversion < 2020000}
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
{$WARNING Support will be removed after Lazarus 2.2.2 release}
fMemo.TextView.FoldAtLine(itm.lineIndex-1);
{$else}
TSynEditFoldedView(fMemo.TextViewsManager.SynTextViewByClass[TSynEditFoldedView]).FoldAtLine(itm.lineIndex-1); TSynEditFoldedView(fMemo.TextViewsManager.SynTextViewByClass[TSynEditFoldedView]).FoldAtLine(itm.lineIndex-1);
{$endif}
end; end;
fMemo.SelStart := fCaretPosition; fMemo.SelStart := fCaretPosition;
@ -1174,14 +1159,7 @@ begin
fTempFileName := GetTempDir(false) + 'temp_' + uniqueObjStr(self) + '.d'; fTempFileName := GetTempDir(false) + 'temp_' + uniqueObjStr(self) + '.d';
fFilename := newdocPageCaption; fFilename := newdocPageCaption;
fModified := false; fModified := false;
{$if lcl_fullversion < 2020000}
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
{$WARNING Support will be removed after Lazarus 2.2.2 release}
TextBuffer.AddNotifyHandler(senrUndoRedoAdded, @changeNotify);
{$else}
TextViewsManager.SynTextView[0].AddNotifyHandler(senrUndoRedoAdded, @changeNotify); TextViewsManager.SynTextView[0].AddNotifyHandler(senrUndoRedoAdded, @changeNotify);
{$endif}
Gutter.MarksPart.Visible:=false; Gutter.MarksPart.Visible:=false;

View File

@ -87,22 +87,14 @@ var
markRect: TRect; markRect: TRect;
mark : TSynEditMark; mark : TSynEditMark;
i, h, w : integer; i, h, w : integer;
{$if lcl_fullversion >= 2020000}
iRange: TLineRange; iRange: TLineRange;
{$endif}
begin begin
Result := False; Result := False;
aFirstCustomColumnIdx := 0; aFirstCustomColumnIdx := 0;
{$if lcl_fullversion < 2020000}
i := FoldView.TextIndex[aScreenLine];
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
{$WARNING Support will be removed after Lazarus 2.2.2 release}
{$else}
aScreenLine := aScreenLine + ToIdx(GutterArea.TextArea.TopLine); aScreenLine := aScreenLine + ToIdx(GutterArea.TextArea.TopLine);
i := ViewedTextBuffer.DisplayView.ViewToTextIndexEx(aScreenLine, iRange); i := ViewedTextBuffer.DisplayView.ViewToTextIndexEx(aScreenLine, iRange);
if aScreenLine <> iRange.Top then if aScreenLine <> iRange.Top then
exit; exit;
{$endif}
if (i < 0) or (i >= TCustomSynEdit(SynEdit).Lines.Count) then if (i < 0) or (i >= TCustomSynEdit(SynEdit).Lines.Count) then
exit; exit;
markLine := TCustomSynEdit(SynEdit).Marks.Line[i + 1]; markLine := TCustomSynEdit(SynEdit).Marks.Line[i + 1];

View File

@ -210,9 +210,7 @@ begin
win := DockMaster.GetAnchorSite(self); win := DockMaster.GetAnchorSite(self);
if win.isAssigned then if win.isAssigned then
begin begin
{$if lcl_fullversion >= 2020000}
Show; Show;
{$endif}
win.Show; win.Show;
win.BringToFront; win.BringToFront;
end; end;