summaryrefslogtreecommitdiff
path: root/docview/components/richtext
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2012-10-23 13:07:31 +0100
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2012-10-23 13:07:31 +0100
commit12ea2e696ef048a09e1d742a7ce94abd9fb749dc (patch)
treea307e6f34d3fe28705737890e25ce71735936287 /docview/components/richtext
parente5abbe5a6f73b7a224a97b363f7f86d10b80890c (diff)
downloadfpGUI-12ea2e696ef048a09e1d742a7ce94abd9fb749dc.tar.xz
richview: Implements a new BorderStyle property
* Also took into account theming support, so we get the size of the default borders from the theme class. * Improved the method that sets the coordinates of the scrollbar
Diffstat (limited to 'docview/components/richtext')
-rw-r--r--docview/components/richtext/RichTextView.pas108
1 files changed, 81 insertions, 27 deletions
diff --git a/docview/components/richtext/RichTextView.pas b/docview/components/richtext/RichTextView.pas
index 646a3584..7f649723 100644
--- a/docview/components/richtext/RichTextView.pas
+++ b/docview/components/richtext/RichTextView.pas
@@ -1,7 +1,7 @@
{
fpGUI - Free Pascal GUI Toolkit
- Copyright (C) 2006 - 2011 See the file AUTHORS.txt, included in this
+ Copyright (C) 2006 - 2012 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
@@ -64,6 +64,7 @@ Type
private
FPopupMenu: TfpgPopupMenu;
FScrollDistance: integer;
+ FBorderStyle: TfpgEditBorderStyle;
procedure FVScrollbarScroll(Sender: TObject; position: integer);
procedure FHScrollbarScroll(Sender: TObject; position: integer);
procedure ShowDefaultPopupMenu(const x, y: integer; const shiftstate: TShiftState); virtual;
@@ -76,6 +77,7 @@ Type
Procedure DebugMIClick( Sender: TObject );
Procedure DefaultMenuPopup( Sender: TObject );
procedure SetScrollDistance(const AValue: integer);
+ procedure SetBorderStyle(AValue: TfpgEditBorderStyle);
protected
FFontManager: TCanvasFontManager;
FRichTextSettings: TRichTextSettings;
@@ -271,10 +273,10 @@ Type
Procedure SetImages( AImages: TfpgImageList );
Procedure Notification( AComponent: TComponent;
Operation: TOperation ); override;
- Public
+ public
constructor Create(AOwner: TComponent); override;
destructor Destroy; Override;
- // rect (of component) minus frame borders - normally 2 pixels all round
+ // rect (of component) minus frame borders
function GetClientRect: TfpgRect; override;
procedure AddText( Text: PChar; ADelay: boolean = False );
procedure AddParagraph( Text: PChar );
@@ -366,6 +368,7 @@ Type
published
property Align;
property BackgroundColor default clBoxColor;
+ property BorderStyle: TfpgEditBorderStyle read FBorderStyle write SetBorderStyle default ebsDefault;
//property ParentColor;
//property ParentFont;
//property ParentPenColor;
@@ -610,6 +613,14 @@ begin
FHScrollBar.ScrollStep := FScrollDistance;
end;
+procedure TRichTextView.SetBorderStyle(AValue: TfpgEditBorderStyle);
+begin
+ if FBorderStyle = AValue then
+ Exit;
+ FBorderStyle := AValue;
+ Repaint;
+end;
+
constructor TRichTextView.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
@@ -617,6 +628,7 @@ begin
FWidth := 150;
FHeight := 70;
FFocusable := True;
+ FBorderStyle := ebsDefault;
FNeedVScroll := False;
FNeedHScroll := False;
@@ -654,7 +666,8 @@ Var
CornerRect: TfpgRect;
TextRect: TfpgRect;
DrawRect: TfpgRect;
- x: integer;
+ rect: TRect;
+ x, y: integer;
// Just for fun! :-)
procedure DesignerPainting(const AText: string; AColor: TfpgColor; AFontDesc: TfpgString = '');
@@ -712,9 +725,27 @@ begin
if FHScrollbar.Visible and FVScrollbar.Visible then
begin
+ case BorderStyle of
+ ebsNone:
+ begin
+ x := 0;
+ y := 0;
+ end;
+ ebsDefault:
+ begin
+ rect := fpgStyle.GetControlFrameBorders;
+ x := rect.Right;
+ y := rect.Bottom;
+ end;
+ ebsSingle:
+ begin
+ x := 1;
+ y := 1;
+ end;
+ end;
// blank out corner between scrollbars
- CornerRect.Left := Width - 2 - FScrollBarWidth;
- CornerRect.Top := Height - 2 - FScrollBarWidth;
+ CornerRect.Left := Width - x - FScrollBarWidth;
+ CornerRect.Top := Height - y - FScrollBarWidth;
CornerRect.Width := FScrollBarWidth;
CornerRect.Height := FScrollBarWidth;
Canvas.Color := clWindowBackground;
@@ -1004,24 +1035,17 @@ end;
procedure TRichTextView.UpdateScrollBarCoords;
var
- HWidth: integer;
- VHeight: integer;
+ r: TfpgRect;
begin
- VHeight := Height - 4;
- HWidth := Width - 4;
+ r := GetDrawRect; // this includes borders and scrollbars
- if FVScrollBar.Visible then
- Dec(HWidth, FScrollbarWidth);
- if FHScrollBar.Visible then
- Dec(VHeight, FScrollbarWidth);
+ FHScrollBar.Top := r.Bottom+1;
+ FHScrollBar.Left := r.Left;
+ FHScrollBar.Width := r.Width;
- FHScrollBar.Top := Height - 2 - FScrollbarWidth;
- FHScrollBar.Left := 2;
- FHScrollBar.Width := HWidth;
-
- FVScrollBar.Top := 2;
- FVScrollBar.Left := Width - 2 - FScrollbarWidth;
- FVScrollBar.Height := VHeight;
+ FVScrollBar.Top := r.Top;
+ FVScrollBar.Left := r.Right+1;
+ FVScrollBar.Height := r.Height;
FVScrollBar.UpdateWindowPosition;
FHScrollBar.UpdateWindowPosition;
@@ -1138,12 +1162,27 @@ begin
Link );
end;
-Procedure TRichTextView.DrawBorder;
+procedure TRichTextView.DrawBorder;
var
- Rect: TfpgRect;
+ r: TfpgRect;
begin
- Canvas.GetWinRect(Rect);
- Canvas.DrawControlFrame(Rect);
+// Canvas.GetWinRect(Rect);
+ r.SetRect(0, 0, Width, Height);
+ case BorderStyle of
+ ebsNone:
+ begin
+ // do nothing
+ end;
+ ebsDefault:
+ begin
+ Canvas.DrawControlFrame(r);
+ end;
+ ebsSingle:
+ begin
+ Canvas.SetColor(clShadow2);
+ Canvas.DrawRectangle(r);
+ end;
+ end;
end;
Procedure TRichTextView.Draw( StartLine, EndLine: longint );
@@ -2852,10 +2891,25 @@ begin
end;
function TRichTextView.GetClientRect: TfpgRect;
+var
+ r: TRect;
begin
- // Standard border of 2px on all sides
Result.SetRect(0, 0, Width, Height);
- InflateRect(Result, -2, -2);
+ case BorderStyle of
+ ebsNone:
+ begin
+ // do nothing
+ end;
+ ebsDefault:
+ begin
+ r := fpgStyle.GetControlFrameBorders;
+ InflateRect(Result, -r.Left, -r.Top); { assuming borders are even on opposite sides }
+ end;
+ ebsSingle:
+ begin
+ InflateRect(Result, -1, -1);
+ end;
+ end;
end;