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
|
{
*****************************************************************************
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
Authors: Alexander Klenin
}
unit TANavigation;
{$H+}
interface
uses
Classes, Controls, Graphics, StdCtrls, TAChartUtils, TAGraph;
type
{ TChartNavScrollBar }
TChartNavScrollBar = class (TCustomScrollBar)
private
FAutoPageSize: Boolean;
FChart: TChart;
FListener: TListener;
procedure ChartExtentChanged(ASender: TObject);
procedure SetAutoPageSize(AValue: Boolean);
procedure SetChart(AValue: TChart);
protected
procedure Scroll(
AScrollCode: TScrollCode; var AScrollPos: Integer); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property AutoPageSize: Boolean
read FAutoPageSize write SetAutoPageSize default false;
property Chart: TChart read FChart write SetChart;
published
property Align;
property Anchors;
property BidiMode;
property BorderSpacing;
property Constraints;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property Kind;
property LargeChange;
property Max;
property Min;
property PageSize;
property ParentBidiMode;
property ParentShowHint;
property PopupMenu;
property Position;
property ShowHint;
property SmallChange;
property TabOrder;
property TabStop;
property Visible;
published
property OnChange;
property OnContextPopup;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnScroll;
property OnStartDrag;
property OnUTF8KeyPress;
end;
{ TChartNavPanel }
TChartNavPanel = class(TCustomControl)
private
FIsDragging: Boolean;
FLogicalExtentRect: TRect;
FOffset: TDoublePoint;
FOldCursor: TCursor;
FPrevPoint: TDoublePoint;
FScale: TDoublePoint;
procedure ChartExtentChanged(ASender: TObject);
private
FAllowDragNavigation: Boolean;
FChart: TChart;
FDragCursor: TCursor;
FFullExtentPen: TPen;
FListener: TListener;
FLogicalExtentPen: TPen;
FMiniMap: Boolean;
FProportional: Boolean;
FShift: TShiftState;
procedure SetChart(AValue: TChart);
procedure SetDragCursor(AValue: TCursor);
procedure SetFullExtentPen(AValue: TPen);
procedure SetLogicalExtentPen(AValue: TPen);
procedure SetMiniMap(AValue: Boolean);
procedure SetProportional(AValue: Boolean);
protected
procedure MouseDown(
AButton: TMouseButton; AShift: TShiftState; AX, AY: Integer); override;
procedure MouseMove(AShift: TShiftState; AX, AY: Integer); override;
procedure MouseUp(
AButton: TMouseButton; AShift: TShiftState; AX, AY: Integer); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure Paint; override;
published
property AllowDragNavigation: Boolean
read FAllowDragNavigation write FAllowDragNavigation default true;
property Chart: TChart read FChart write SetChart;
property DragCursor: TCursor read FDragCursor write SetDragCursor default crSizeAll;
property FullExtentPen: TPen read FFullExtentPen write SetFullExtentPen;
property LogicalExtentPen: TPen read FLogicalExtentPen write SetLogicalExtentPen;
property MiniMap: Boolean read FMiniMap write SetMiniMap default false;
property Proportional: Boolean read FProportional write SetProportional default false;
property Shift: TShiftState read FShift write FShift default [ssLeft];
published
property Align;
end;
procedure Register;
implementation
uses
Forms, SysUtils, TAGeometry;
procedure Register;
begin
RegisterComponents(
CHART_COMPONENT_IDE_PAGE, [TChartNavScrollBar, TChartNavPanel]);
end;
{ TChartNavScrollBar }
procedure TChartNavScrollBar.ChartExtentChanged(ASender: TObject);
var
fe, le: TDoubleRect;
fw, lw: Double;
begin
Unused(ASender);
if Chart = nil then exit;
fe := Chart.GetFullExtent;
le := Chart.LogicalExtent;
if le = EmptyExtent then
le := fe;
case Kind of
sbHorizontal: begin
fw := fe.b.X - fe.a.X;
if fw <= 0 then
Position := 0
else
Position := Round(WeightedAverage(Min, Max, (le.a.X - fe.a.X) / fw));
lw := le.b.X - le.a.X;
end;
sbVertical: begin
fw := fe.b.Y - fe.a.Y;
if fw <= 0 then
Position := 0
else
Position := Round(WeightedAverage(Max, Min, (le.a.Y - fe.a.Y) / fw));
lw := le.b.Y - le.a.Y;
end;
end;
if AutoPageSize and not (csDesigning in ComponentState) then
PageSize := Round(lw / fw * (Max - Min));
end;
constructor TChartNavScrollBar.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FListener := TListener.Create(@FChart, @ChartExtentChanged);
end;
destructor TChartNavScrollBar.Destroy;
begin
FreeAndNil(FListener);
inherited Destroy;
end;
procedure TChartNavScrollBar.Scroll(
AScrollCode: TScrollCode; var AScrollPos: Integer);
var
fe, le: TDoubleRect;
d, w: Double;
begin
inherited Scroll(AScrollCode, AScrollPos);
if Chart = nil then exit;
w := Max - Min;
if w = 0 then exit;
fe := Chart.GetFullExtent;
le := Chart.LogicalExtent;
if le = EmptyExtent then
le := fe;
case Kind of
sbHorizontal: begin
d := WeightedAverage(fe.a.X, fe.b.X, Position / w);
le.b.X += d - le.a.X;
le.a.X := d;
end;
sbVertical: begin
d := WeightedAverage(fe.b.Y, fe.a.Y, Position / w);
le.b.Y += d - le.a.Y;
le.a.Y := d;
end;
end;
Chart.LogicalExtent := le;
// Focused ScrollBar is glitchy under Win32, especially after PageSize change.
if (GetParentForm(Chart) <> nil) and GetParentForm(Chart).Active then
Chart.SetFocus;
end;
procedure TChartNavScrollBar.SetAutoPageSize(AValue: Boolean);
begin
if FAutoPageSize = AValue then exit;
FAutoPageSize := AValue;
ChartExtentChanged(Self);
end;
procedure TChartNavScrollBar.SetChart(AValue: TChart);
begin
if FChart = AValue then exit;
if FListener.IsListening then
FChart.ExtentBroadcaster.Unsubscribe(FListener);
FChart := AValue;
if FChart <> nil then
FChart.ExtentBroadcaster.Subscribe(FListener);
ChartExtentChanged(Self);
end;
{ TChartNavPanel }
procedure TChartNavPanel.ChartExtentChanged(ASender: TObject);
begin
Unused(ASender);
Invalidate;
end;
constructor TChartNavPanel.Create(AOwner: TComponent);
const
DEF_WIDTH = 40;
DEF_HEIGHT = 20;
begin
inherited Create(AOwner);
FListener := TListener.Create(@FChart, @ChartExtentChanged);
FFullExtentPen := TPen.Create;
FFullExtentPen.OnChange := @ChartExtentChanged;
FLogicalExtentPen := TPen.Create;
FLogicalExtentPen.OnChange := @ChartExtentChanged;
FLogicalExtentRect := ZeroRect;
Width := DEF_WIDTH;
Height := DEF_HEIGHT;
FAllowDragNavigation := true;
FDragCursor := crSizeAll;
FShift := [ssLeft];
end;
destructor TChartNavPanel.Destroy;
begin
FreeAndNil(FListener);
FreeAndNil(FFullExtentPen);
FreeAndNil(FLogicalExtentPen);
inherited Destroy;
end;
procedure TChartNavPanel.MouseDown(
AButton: TMouseButton; AShift: TShiftState; AX, AY: Integer);
begin
if (Chart <> nil) and AllowDragNavigation then begin
FPrevPoint := (DoublePoint(AX, Height - AY) - FOffset) / FScale;
FIsDragging :=
(AShift = Shift) and IsPointInRect(Point(AX, AY), FLogicalExtentRect);
if FIsDragging then begin
FOldCursor := Cursor;
Cursor := DragCursor;
end;
end;
inherited MouseDown(AButton, AShift, AX, AY);
end;
procedure TChartNavPanel.MouseMove(AShift: TShiftState; AX, AY: Integer);
var
p: TDoublePoint;
le: TDoubleRect;
begin
if (Chart <> nil) and FIsDragging then begin
p := (DoublePoint(AX, Height - AY) - FOffset) / FScale;
le := Chart.LogicalExtent;
le.a += p - FPrevPoint;
le.b += p - FPrevPoint;
Chart.LogicalExtent := le;
FPrevPoint := p;
end;
inherited MouseMove(AShift, AX, AY);
end;
procedure TChartNavPanel.MouseUp(
AButton: TMouseButton; AShift: TShiftState; AX, AY: Integer);
begin
if FIsDragging then
Cursor := FOldCursor;
FIsDragging := false;
inherited MouseUp(AButton, AShift, AX, AY);
end;
procedure TChartNavPanel.Paint;
function GraphRect(ARect: TDoubleRect): TRect;
begin
ARect.a := ARect.a * FScale + FOffset;
ARect.b := ARect.b * FScale + FOffset;
Result := Rect(
Round(ARect.a.X), Height - Round(ARect.b.Y), Round(ARect.b.X), Height - Round(ARect.a.Y));
end;
var
fe, le, ext: TDoubleRect;
sz: TDoublePoint;
oldAxisVisible: Boolean;
feRect: TRect;
begin
if Chart = nil then exit;
fe := Chart.GetFullExtent;
le := Chart.LogicalExtent;
if le = EmptyExtent then
le := fe;
ext := fe;
ExpandRect(ext, le.a);
ExpandRect(ext, le.b);
sz := ext.b - ext.a;
if (sz.X <= 0) or (sz.Y <= 0) then exit;
FScale := DoublePoint(Width, Height) / sz;
FOffset := ZeroDoublePoint;
if Proportional then begin
if FScale.X < FScale.Y then begin
FScale.Y := FScale.X;
FOffset.Y := (Height - sz.Y * FScale.Y) / 2;
end
else begin
FScale.X := FScale.Y;
FOffset.X := (Width - sz.X * FScale.X) / 2;
end;
end;
FOffset -= ext.a * FScale;
feRect := GraphRect(fe);
if MiniMap then begin
oldAxisVisible := Chart.AxisVisible;
Chart.AxisVisible := false;
Chart.PaintOnAuxCanvas(Canvas, feRect);
Chart.AxisVisible := oldAxisVisible;
end
else begin
Canvas.Brush.Color := Chart.BackColor;
Canvas.Brush.Style := bsSolid;
Canvas.FillRect(ClientRect);
end;
Canvas.Brush.Style := bsClear;
Canvas.Pen := FullExtentPen;
Canvas.Rectangle(feRect);
Canvas.Pen := LogicalExtentPen;
FLogicalExtentRect := GraphRect(le);
Canvas.Rectangle(FLogicalExtentRect);
end;
procedure TChartNavPanel.SetChart(AValue: TChart);
begin
if FChart = AValue then exit;
if FListener.IsListening then
FChart.ExtentBroadcaster.Unsubscribe(FListener);
FChart := AValue;
if FChart <> nil then
FChart.ExtentBroadcaster.Subscribe(FListener);
ChartExtentChanged(Self);
end;
procedure TChartNavPanel.SetDragCursor(AValue: TCursor);
begin
if FDragCursor = AValue then exit;
FDragCursor := AValue;
if MouseCapture then
Cursor := FDragCursor;
end;
procedure TChartNavPanel.SetFullExtentPen(AValue: TPen);
begin
if FFullExtentPen = AValue then exit;
FFullExtentPen.Assign(AValue);
Invalidate;
end;
procedure TChartNavPanel.SetLogicalExtentPen(AValue: TPen);
begin
if FLogicalExtentPen = AValue then exit;
FLogicalExtentPen.Assign(AValue);
Invalidate;
end;
procedure TChartNavPanel.SetMiniMap(AValue: Boolean);
begin
if FMiniMap = AValue then exit;
FMiniMap := AValue;
Invalidate;
end;
procedure TChartNavPanel.SetProportional(AValue: Boolean);
begin
if FProportional = AValue then exit;
FProportional := AValue;
Invalidate;
end;
end.
|