1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
|
{
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA. *
* *
***************************************************************************
}
unit editor_display_options;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
// LCL
Graphics, Dialogs, StdCtrls, Spin, LCLType, Controls, Buttons, ExtCtrls,
// SynEdit
SynEdit, SynEditMouseCmds, SynGutterLineNumber, SynGutterLineOverview,
SynGutter, SynEditTypes, SynGutterBase, SynGutterMarks, SynGutterChanges,
SynGutterCodeFolding,
// IdeIntf
IDEOptionsIntf, IDEOptEditorIntf, IDEUtils, IDEImagesIntf,
// IDE
EditorOptions, LazarusIDEStrConsts, editor_general_options,
editor_color_options, codetools_linesplitting_options, SourceSynEditor,
SourceMarks;
type
{ TEditorDisplayOptionsFrame }
TEditorDisplayOptionsFrame = class(TAbstractIDEOptionsEditor)
cbCurLineMarkup: TComboBox;
GutterPartVisible: TCheckBox;
chkTopInfoView: TCheckBox;
DisableAntialiasingCheckBox: TCheckBox;
DisplayPreview: TSynEdit;
EditorFontButton: TButton;
EditorFontComboBox: TComboBox;
EditorFontGroupBox: TGroupBox;
EditorFontSizeSpinEdit: TSpinEdit;
EditorFontSizeLabel: TLabel;
ExtraCharSpacingComboBox: TComboBox;
ExtraCharSpacingLabel: TLabel;
ExtraLineSpacingComboBox: TComboBox;
ExtraLineSpacingLabel: TLabel;
lblGutterPartWidth: TLabel;
lblGutterPartMargin: TLabel;
lbGutterParts: TListBox;
MarginAndGutterGroupBox: TGroupBox;
rgGutterSite: TRadioGroup;
RightMarginColorLink: TLabel;
RightMarginMaxLengthLink: TLabel;
RightMarginComboBox: TComboBox;
RightMarginLabel: TLabel;
ShowOnlyLineNumbersMultiplesOfLabel: TLabel;
ShowOnlyLineNumbersMultiplesOfSpinEdit: TSpinEdit;
btnGutterUp: TSpeedButton;
btnGutterDown: TSpeedButton;
spinGutterPartWidth: TSpinEdit;
spinGutterPartLeftOffs: TSpinEdit;
spinGutterPartRightOffs: TSpinEdit;
VisibleGutterCheckBox: TCheckBox;
VisibleRightMarginCheckBox: TCheckBox;
procedure btnGutterDownClick(Sender: TObject);
procedure btnGutterUpClick(Sender: TObject);
procedure EditorFontButtonClick(Sender: TObject);
procedure EditorFontComboBoxEditingDone(Sender: TObject);
procedure EditorFontSizeSpinEditChange(Sender: TObject);
procedure ComboboxOnExit(Sender: TObject);
procedure ComboBoxOnKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
procedure ComboboxOnChange(Sender: TObject);
procedure GeneralCheckBoxOnChange(Sender: TObject);
procedure lbGutterPartsClick(Sender: TObject);
procedure rgGutterSiteClick(Sender: TObject);
procedure FillGutterPartList;
procedure RightMarginColorLinkClick(Sender: TObject);
procedure RightMarginMaxLengthLinkClick(Sender: TObject);
procedure LinkLabelMouseEnter(Sender: TObject);
procedure LinkLabelMouseLeave(Sender: TObject);
procedure spinGutterPartWidthChange(Sender: TObject);
private
FDialog: TAbstractOptionsEditorDialog;
FUpdatingFontSizeRange: Boolean;
FCurrentGutterPart: TEditorSynGutterOptions;
FCurGutterPartList: TEditorSynGutterOptionsList;
FCurGutterRightPartList: TEditorSynGutterOptionsList;
FGutterParsUpdating: Boolean;
function FontSizeNegativeToPositive(NegativeSize: Integer): Integer;
function GeneralPage: TEditorGeneralOptionsFrame; inline;
procedure SetEditorFontSizeSpinEditValue(FontSize: Integer);
procedure FontDialogApplyClicked(Sender: TObject);
function DoSynEditMouse(var {%H-}AnInfo: TSynEditMouseActionInfo;
{%H-}HandleActionProc: TSynEditMouseActionHandler): Boolean;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure UpdatePreviews;
function GetTitle: String; override;
procedure Setup(ADialog: TAbstractOptionsEditorDialog); override;
procedure ReadSettings(AOptions: TAbstractIDEOptions); override;
procedure WriteSettings(AOptions: TAbstractIDEOptions); override;
class function SupportedOptionsClass: TAbstractIDEOptionsClass; override;
property CurGutterPartList: TEditorSynGutterOptionsList read FCurGutterPartList;
property CurGutterRightPartList: TEditorSynGutterOptionsList read FCurGutterRightPartList;
end;
implementation
{$R *.lfm}
uses
LCLIntf;
function TEditorDisplayOptionsFrame.FontSizeNegativeToPositive(NegativeSize: Integer): Integer;
var
tm: TTextMetric;
begin
DisplayPreview.Canvas.Font.Assign(DisplayPreview.Font);
if LCLIntf.GetTextMetrics(DisplayPreview.Canvas.Handle, tm{%H-}) then
Result := -(NegativeSize + MulDiv(tm.tmInternalLeading, 72, DisplayPreview.Font.PixelsPerInch))
else
Result := -NegativeSize;
end;
procedure TEditorDisplayOptionsFrame.FontDialogApplyClicked(Sender: TObject);
var
a: Integer;
begin
with GeneralPage do
for a := Low(PreviewEdits) to High(PreviewEdits) do
if PreviewEdits[a] <> nil then
PreviewEdits[a].Font.Assign(TFontDialog(Sender).Font);
SetComboBoxText(EditorFontComboBox, DisplayPreview.Font.Name,cstCaseInsensitive);
SetEditorFontSizeSpinEditValue(DisplayPreview.Font.Size);
end;
function TEditorDisplayOptionsFrame.DoSynEditMouse(var AnInfo: TSynEditMouseActionInfo;
HandleActionProc: TSynEditMouseActionHandler): Boolean;
begin
Result := true;
end;
constructor TEditorDisplayOptionsFrame.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FCurGutterPartList := TEditorSynGutterOptionsList.Create(True);
FCurGutterRightPartList := TEditorSynGutterOptionsList.Create(True);
end;
destructor TEditorDisplayOptionsFrame.Destroy;
begin
inherited Destroy;
FCurGutterPartList.Free;
FCurGutterRightPartList.Free;
end;
procedure TEditorDisplayOptionsFrame.UpdatePreviews;
var
i, j: Integer;
col: TEditorColorOptionsFrame;
begin
with GeneralPage do
for i := Low(PreviewEdits) to High(PreviewEdits) do
if PreviewEdits[i] <> nil then begin
for j := 0 to FCurGutterPartList.Count - 1 do begin
FCurGutterPartList[j].ApplyTo(PreviewEdits[i].Gutter.Parts.ByClass[FCurGutterPartList[j].GClass, 0]);
FCurGutterPartList[j].ApplyIndexTo(PreviewEdits[i].Gutter.Parts.ByClass[FCurGutterPartList[j].GClass, 0]);
end;
for j := 0 to FCurGutterRightPartList.Count - 1 do begin
FCurGutterRightPartList[j].ApplyTo(PreviewEdits[i].RightGutter.Parts.ByClass[FCurGutterRightPartList[j].GClass, 0]);
//TODO: currently separators are not managed => index is not correct
//FCurGutterRightPartList[j].ApplyIndexTo(PreviewEdits[i].RightGutter.Parts.ByClass[FCurGutterRightPartList[j].GClass, 0]);
end;
// TODO: visibility of separators
end;
col := TEditorColorOptionsFrame(FDialog.FindEditor(TEditorColorOptionsFrame));
if col <> nil then
col.UpdateCurrentScheme;
end;
procedure TEditorDisplayOptionsFrame.EditorFontButtonClick(Sender: TObject);
var
FontDialog: TFontDialog;
CurFontSize: Integer;
begin
FontDialog := TFontDialog.Create(nil);
try
with FontDialog do
begin
Font.Name := EditorFontComboBox.Text;
CurFontSize := EditorFontSizeSpinEdit.Value;
if CurFontSize < 0 then
begin
CurFontSize := FontSizeNegativeToPositive(CurFontSize);
RepairEditorFontSize(CurFontSize);
end;
Font.Size := CurFontSize;
Options := Options + [fdApplyButton];
OnApplyClicked := @FontDialogApplyClicked;
if Execute then
FontDialogApplyClicked(FontDialog);
end;
finally
FontDialog.Free;
end;
end;
procedure TEditorDisplayOptionsFrame.EditorFontComboBoxEditingDone(Sender: TObject);
var
i: Integer;
begin
with GeneralPage do
for i := Low(PreviewEdits) to High(PreviewEdits) do
if PreviewEdits[i] <> nil then
PreviewEdits[i].Font.Name := EditorFontComboBox.Text;
end;
procedure TEditorDisplayOptionsFrame.EditorFontSizeSpinEditChange(Sender: TObject);
var
NewVal, a: Integer;
s: TCaption;
begin
s := EditorFontSizeSpinEdit.Text;
if copy(trim(s),1,1) = '-' then begin
if EditorFontSizeSpinEdit.MinValue > 0 then begin
EditorFontSizeSpinEdit.MinValue := -100;
EditorFontSizeSpinEdit.MaxValue := -EditorOptionsMinimumFontSize;
EditorFontSizeSpinEdit.Text := s;
end
else
if EditorFontSizeSpinEdit.Value > -EditorOptionsMinimumFontSize then
EditorFontSizeSpinEdit.Value := -EditorOptionsMinimumFontSize;
end
else begin
if EditorFontSizeSpinEdit.MinValue < 0 then begin
EditorFontSizeSpinEdit.MaxValue := 100;
EditorFontSizeSpinEdit.MinValue := EditorOptionsMinimumFontSize;
EditorFontSizeSpinEdit.Text := s;
end
else
if EditorFontSizeSpinEdit.Value < EditorOptionsMinimumFontSize then
EditorFontSizeSpinEdit.Value := EditorOptionsMinimumFontSize;
end;
NewVal := EditorFontSizeSpinEdit.Value;
with GeneralPage do
for a := Low(PreviewEdits) to High(PreviewEdits) do
if PreviewEdits[a] <> nil then
PreviewEdits[a].Font.Size := NewVal;
end;
procedure TEditorDisplayOptionsFrame.ComboboxOnExit(Sender: TObject);
var
NewVal, a: Integer;
begin
if Sender = ExtraCharSpacingComboBox then
begin
NewVal := StrToIntDef(ExtraCharSpacingComboBox.Text, DisplayPreview.ExtraCharSpacing);
SetComboBoxText(ExtraCharSpacingComboBox, IntToStr(NewVal),cstCaseInsensitive);
with GeneralPage do
for a := Low(PreviewEdits) to High(PreviewEdits) do
if PreviewEdits[a] <> Nil then
PreviewEdits[a].ExtraCharSpacing := NewVal;
end
else
if Sender = ExtraLineSpacingComboBox then
begin
NewVal := StrToIntDef(ExtraLineSpacingComboBox.Text, DisplayPreview.ExtraLineSpacing);
SetComboBoxText(ExtraLineSpacingComboBox, IntToStr(NewVal),cstCaseInsensitive);
with GeneralPage do
for a := Low(PreviewEdits) to High(PreviewEdits) do
if PreviewEdits[a] <> Nil then
PreviewEdits[a].ExtraLineSpacing := NewVal;
end
else
if Sender = RightMarginComboBox then
begin
NewVal := StrToIntDef(RightMarginComboBox.Text, DisplayPreview.RightEdge);
SetComboBoxText(RightMarginComboBox, IntToStr(NewVal),cstCaseInsensitive);
with GeneralPage do
for a := Low(PreviewEdits) to High(PreviewEdits) do
if PreviewEdits[a] <> nil then
begin
PreviewEdits[a].RightEdge := NewVal;
if VisibleRightMarginCheckBox.Checked then
PreviewEdits[a].Options := PreviewEdits[a].Options - [eoHideRightMargin]
else
PreviewEdits[a].Options := PreviewEdits[a].Options + [eoHideRightMargin];
end;
end;
end;
procedure TEditorDisplayOptionsFrame.ComboBoxOnKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if (ssCtrl in Shift) and (Key = VK_S) then
ComboBoxOnExit(Sender);
end;
procedure TEditorDisplayOptionsFrame.ComboboxOnChange(Sender: TObject);
var
ComboBox: TComboBox absolute Sender;
begin
if ComboBox.Items.IndexOf(ComboBox.Text) >= 0 then
ComboBoxOnExit(Sender);
end;
procedure TEditorDisplayOptionsFrame.GeneralCheckBoxOnChange(Sender: TObject);
var
a: integer;
AGeneralPage: TEditorGeneralOptionsFrame;
begin
AGeneralPage := GeneralPage;
if AGeneralPage = nil then
Exit;
with AGeneralPage do
for a := Low(PreviewEdits) to High(PreviewEdits) do
if PreviewEdits[a] <> nil then
begin
PreviewEdits[a].Gutter.Visible := VisibleGutterCheckBox.Checked;
if Assigned(PreviewEdits[a].Gutter.Parts.ByClass[TSynGutterLineNumber, 0]) then
TSynGutterLineNumber(PreviewEdits[a].Gutter.Parts.ByClass[TSynGutterLineNumber, 0])
.ShowOnlyLineNumbersMultiplesOf := ShowOnlyLineNumbersMultiplesOfSpinEdit.Value;
PreviewEdits[a].RightEdge := StrToIntDef(RightMarginComboBox.Text, 80);
if VisibleRightMarginCheckBox.Checked then
PreviewEdits[a].Options := PreviewEdits[a].Options - [eoHideRightMargin]
else
PreviewEdits[a].Options := PreviewEdits[a].Options + [eoHideRightMargin];
if DisableAntialiasingCheckBox.Checked then
PreviewEdits[a].Font.Quality := fqNonAntialiased
else
PreviewEdits[a].Font.Quality := fqDefault;
end;
end;
procedure TEditorDisplayOptionsFrame.lbGutterPartsClick(Sender: TObject);
begin
FCurrentGutterPart := nil;
if lbGutterParts.ItemIndex >= 0 then
FCurrentGutterPart := TEditorSynGutterOptions(lbGutterParts.Items.Objects[lbGutterParts.ItemIndex]);
FGutterParsUpdating := True;
GutterPartVisible.Checked := FCurrentGutterPart.Visible;
spinGutterPartWidth.Value := FCurrentGutterPart.Width;
spinGutterPartLeftOffs.Value := FCurrentGutterPart.OffsetLeft;
spinGutterPartRightOffs.Value := FCurrentGutterPart.OffsetRight;
case FCurrentGutterPart.ShowLineColor of
glcOff: cbCurLineMarkup.ItemIndex := 0;
glcOn: cbCurLineMarkup.ItemIndex := 1;
glcLineNum: cbCurLineMarkup.ItemIndex := 2;
end;
FGutterParsUpdating := False;
btnGutterUp.Enabled := lbGutterParts.ItemIndex > 0;
btnGutterDown.Enabled := lbGutterParts.ItemIndex < lbGutterParts.Count - 1;
ShowOnlyLineNumbersMultiplesOfSpinEdit.Enabled := (FCurrentGutterPart <> nil) and
(FCurrentGutterPart.GClass = TSynGutterLineNumber);
ShowOnlyLineNumbersMultiplesOfLabel.Enabled := ShowOnlyLineNumbersMultiplesOfSpinEdit.Enabled;
cbCurLineMarkup.Enabled := (FCurrentGutterPart <> nil) and
(FCurrentGutterPart.GClass <> TSynGutterLineNumber) and
(FCurrentGutterPart.GClass <> TSynGutterLineOverview);
end;
procedure TEditorDisplayOptionsFrame.btnGutterUpClick(Sender: TObject);
var
l: TEditorSynGutterOptionsList;
i, i2: Integer;
begin
if rgGutterSite.Buttons[0].Checked
then l := FCurGutterPartList
else l := FCurGutterRightPartList;
i := lbGutterParts.ItemIndex;
if (i < 1) or (i >= l.Count) then
exit;
i2 := l[i-1].Index;
l[i-1].Index := l[i].Index;
l[i].Index := i2;
l.Sort;
FillGutterPartList;
lbGutterParts.ItemIndex := i - 1;
lbGutterPartsClick(nil);
UpdatePreviews;
end;
procedure TEditorDisplayOptionsFrame.btnGutterDownClick(Sender: TObject);
var
l: TEditorSynGutterOptionsList;
i, i2: Integer;
begin
if rgGutterSite.Buttons[0].Checked
then l := FCurGutterPartList
else l := FCurGutterRightPartList;
i := lbGutterParts.ItemIndex;
if (i < 0) or (i >= l.Count-1) then
exit;
i2 := l[i+1].Index;
l[i+1].Index := l[i].Index;
l[i].Index := i2;
l.Sort;
FillGutterPartList;
lbGutterParts.ItemIndex := i + 1;
lbGutterPartsClick(nil);
UpdatePreviews;
end;
procedure TEditorDisplayOptionsFrame.rgGutterSiteClick(Sender: TObject);
begin
FillGutterPartList;
lbGutterParts.ItemIndex := 0;
lbGutterPartsClick(nil);
end;
procedure TEditorDisplayOptionsFrame.FillGutterPartList;
function GPartName(aGClass: TSynGutterPartBaseClass): string;
begin
Result := '?';
if aGClass = TSynGutterMarks then Result := optDispGutterMarks;
if aGClass = TSynGutterLineNumber then Result := dlgAddHiAttrLineNumber;
if aGClass = TSynGutterChanges then Result := optDispGutterChanges;
if aGClass = TSynGutterSeparator then Result := optDispGutterSeparator;
if aGClass = TSynGutterCodeFolding then Result := optDispGutterFolding;
if aGClass = TSynGutterLineOverview then Result := dlgMouseOptNodeGutterLineOverview;
end;
var
l: TEditorSynGutterOptionsList;
i: Integer;
begin
if rgGutterSite.Buttons[0].Checked
then l := FCurGutterPartList
else l := FCurGutterRightPartList;
lbGutterParts.Clear;
for i := 0 to l.Count - 1 do begin
lbGutterParts.AddItem(GPartName(l[i].GClass), l[i]);
end;
end;
procedure TEditorDisplayOptionsFrame.RightMarginColorLinkClick(Sender: TObject);
var
col: TEditorColorOptionsFrame;
begin
col := TEditorColorOptionsFrame(FDialog.FindEditor(TEditorColorOptionsFrame));
if col = nil then exit;
FDialog.OpenEditor(TEditorColorOptionsFrame);
col.SelectAhaColor(ahaRightMargin);
end;
procedure TEditorDisplayOptionsFrame.RightMarginMaxLengthLinkClick(
Sender: TObject);
var
col: TCodetoolsLineSplittingOptionsFrame;
begin
col := TCodetoolsLineSplittingOptionsFrame(FDialog.FindEditor(TCodetoolsLineSplittingOptionsFrame));
if col = nil then exit;
FDialog.OpenEditor(TCodetoolsLineSplittingOptionsFrame);
end;
procedure TEditorDisplayOptionsFrame.LinkLabelMouseEnter(Sender: TObject);
begin
(Sender as TLabel).Font.Underline := True;
(Sender as TLabel).Font.Color := clRed;
end;
procedure TEditorDisplayOptionsFrame.LinkLabelMouseLeave(Sender: TObject);
begin
(Sender as TLabel).Font.Underline := False;
(Sender as TLabel).Font.Color := clBlue;
end;
procedure TEditorDisplayOptionsFrame.spinGutterPartWidthChange(Sender: TObject);
begin
if FGutterParsUpdating then
exit;
FCurrentGutterPart.Visible := GutterPartVisible.Checked;
FCurrentGutterPart.Width := spinGutterPartWidth.Value;
FCurrentGutterPart.OffsetLeft := spinGutterPartLeftOffs.Value;
FCurrentGutterPart.OffsetRight := spinGutterPartRightOffs.Value;
case cbCurLineMarkup.ItemIndex of
0: FCurrentGutterPart.ShowLineColor := glcOff;
1: FCurrentGutterPart.ShowLineColor := glcOn;
2: FCurrentGutterPart.ShowLineColor := glcLineNum;
end;
UpdatePreviews;
end;
function TEditorDisplayOptionsFrame.GeneralPage: TEditorGeneralOptionsFrame; inline;
begin
Result := TEditorGeneralOptionsFrame(FDialog.FindEditor(TEditorGeneralOptionsFrame));
end;
procedure TEditorDisplayOptionsFrame.SetEditorFontSizeSpinEditValue(FontSize: Integer);
begin
FUpdatingFontSizeRange := True;
if FontSize < 0 then begin
EditorFontSizeSpinEdit.MinValue := -100;
EditorFontSizeSpinEdit.MaxValue := -EditorOptionsMinimumFontSize;
end
else begin
EditorFontSizeSpinEdit.MaxValue := 100;
EditorFontSizeSpinEdit.MinValue := EditorOptionsMinimumFontSize;
end;
FUpdatingFontSizeRange := False;
EditorFontSizeSpinEdit.Value := FontSize;
end;
function TEditorDisplayOptionsFrame.GetTitle: String;
begin
Result := dlgEdDisplay;
end;
procedure TEditorDisplayOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
begin
// Prevent the caret from moving
DisplayPreview.RegisterMouseActionSearchHandler(@DoSynEditMouse);
FDialog := ADialog;
FUpdatingFontSizeRange := False;
MarginAndGutterGroupBox.Caption := dlgMarginGutter;
VisibleRightMarginCheckBox.Caption := dlgVisibleRightMargin;
VisibleGutterCheckBox.Caption := dlgVisibleGutter;
ShowOnlyLineNumbersMultiplesOfLabel.Caption := lisEveryNThLineNumber;
RightMarginLabel.Caption := dlgRightMargin;
EditorFontGroupBox.Caption := dlgDefaultEditorFont;
EditorFontSizeLabel.Caption := dlgEditorFontSize;
ExtraCharSpacingLabel.Caption := dlgExtraCharSpacing;
ExtraLineSpacingLabel.Caption := dlgExtraLineSpacing;
DisableAntialiasingCheckBox.Caption := dlgDisableAntialiasing;
RightMarginColorLink.Caption := dlgColorLink;
RightMarginMaxLengthLink.Caption := dlgEditMaxLength;
chkTopInfoView.Caption := lisTopInfoView;
btnGutterUp.Images := IDEImages.Images_16;
btnGutterDown.Images := IDEImages.Images_16;
btnGutterUp.ImageIndex := IDEImages.LoadImage('arrow_up', 16);
btnGutterDown.ImageIndex := IDEImages.LoadImage('arrow_down', 16);
rgGutterSite.Caption := dlfMouseSimpleGutterSect;
rgGutterSite.Items[0] := lisLeftGutter;
rgGutterSite.Items[1] := lisRightGutter;
GutterPartVisible.Caption := lisGutterPartVisible;
lblGutterPartWidth.Caption := lisGutterPartWidth;
lblGutterPartMargin.Caption := lisGutterPartMargin;
cbCurLineMarkup.Items.Add(optDispGutterNoCurrentLineColor);
cbCurLineMarkup.Items.Add(optDispGutterUseCurrentLineColor);
cbCurLineMarkup.Items.Add(optDispGutterUseCurrentLineNumberColor);
with GeneralPage do
AddPreviewEdit(DisplayPreview);
with TSynGutterSeparator.Create(DisplayPreview.RightGutter.Parts) do
Name := 'DPSynGutterSeparatorR2';
with TSynGutterLineOverview.Create(DisplayPreview.RightGutter.Parts) do begin
Name := 'DPSynGutterLineOverview1';
with TIDESynGutterLOvProviderIDEMarks.Create(Providers) do
Priority := 20;
with TSynGutterLOvProviderModifiedLines.Create(Providers) do
Priority := 9;
with TSynGutterLOvProviderCurrentPage.Create(Providers) do
Priority := 1;
with TIDESynGutterLOvProviderPascal.Create(Providers) do
Priority := 0;
end;
with TSynGutterSeparator.Create(DisplayPreview.RightGutter.Parts) do begin
Name := 'DPSynGutterSeparatorR3';
AutoSize := False;
Width := 1;
LineWidth := 0;
end;
end;
procedure TEditorDisplayOptionsFrame.ReadSettings(AOptions: TAbstractIDEOptions);
begin
with AOptions as TEditorOptions do
begin
// init the spin-edit first, since it does not trigger on change,
// but is copied when checkboxes are initialized
ShowOnlyLineNumbersMultiplesOfSpinEdit.Value := ShowOnlyLineNumbersMultiplesOf;
VisibleRightMarginCheckBox.Checked := VisibleRightMargin;
VisibleGutterCheckBox.Checked := VisibleGutter;
VisibleRightMarginCheckBox.Checked := VisibleRightMargin;
SetComboBoxText(RightMarginComboBox, IntToStr(RightMargin),cstCaseInsensitive);
SetComboBoxText(EditorFontComboBox, EditorFont,cstCaseInsensitive);
SetEditorFontSizeSpinEditValue(EditorFontSize);
SetComboBoxText(ExtraCharSpacingComboBox, IntToStr(ExtraCharSpacing),cstCaseInsensitive);
SetComboBoxText(ExtraLineSpacingComboBox, IntToStr(ExtraLineSpacing),cstCaseInsensitive);
DisableAntialiasingCheckBox.Checked := DisableAntialiasing;
chkTopInfoView.Checked := TopInfoView;
FCurGutterPartList.Assign(GutterPartList);
FCurGutterRightPartList.Assign(GutterRightPartList);
FCurGutterPartList.Sort;
GutterRightPartList.Sort;
end;
rgGutterSite.Buttons[0].Checked := True;
FillGutterPartList;
lbGutterParts.ItemIndex := 0;
lbGutterPartsClick(nil);
end;
procedure TEditorDisplayOptionsFrame.WriteSettings(AOptions: TAbstractIDEOptions);
begin
with AOptions as TEditorOptions do
begin
VisibleRightMargin := VisibleRightMarginCheckBox.Checked;
VisibleGutter := VisibleGutterCheckBox.Checked;
ShowOnlyLineNumbersMultiplesOf := ShowOnlyLineNumbersMultiplesOfSpinEdit.Value;
VisibleRightMargin := VisibleRightMarginCheckBox.Checked;
RightMargin := StrToIntDef(RightMarginComboBox.Text, 80);
EditorFont := EditorFontComboBox.Text;
EditorFontSize := EditorFontSizeSpinEdit.Value;
ExtraCharSpacing := StrToIntDef(ExtraCharSpacingComboBox.Text, ExtraCharSpacing);
ExtraLineSpacing := StrToIntDef(ExtraLineSpacingComboBox.Text, ExtraLineSpacing);
DisableAntialiasing := DisableAntialiasingCheckBox.Checked;
TopInfoView := chkTopInfoView.Checked;
GutterPartList.AssignItems(FCurGutterPartList);
GutterRightPartList.AssignItems(FCurGutterRightPartList);
end;
end;
class function TEditorDisplayOptionsFrame.SupportedOptionsClass: TAbstractIDEOptionsClass;
begin
Result := TEditorOptions;
end;
initialization
RegisterIDEOptionsEditor(GroupEditor, TEditorDisplayOptionsFrame, EdtOptionsDisplay);
end.
|