-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqtwsdesigner.pp
89 lines (74 loc) · 2.8 KB
/
qtwsdesigner.pp
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
{
*****************************************************************************
* QtWSDesigner.pp *
* ------------ *
* *
* *
*****************************************************************************
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit QtWSDesigner;
{$mode objfpc}{$H+}
interface
{$I qtdefines.inc}
////////////////////////////////////////////////////
// I M P O R T A N T
////////////////////////////////////////////////////
// 1) Only class methods allowed
// 2) Class methods have to be published and virtual
// 3) To get as little as posible circles, the uses
// clause should contain only those LCL units
// needed for registration. WSxxx units are OK
// 4) To improve speed, register only classes in the
// initialization section which actually
// implement something
// 5) To enable your XXX widgetset units, look at
// the uses clause of the XXXintf.pp
////////////////////////////////////////////////////
uses
// Bindings
qt6,
qtwidgets,
// LCL
Classes, Controls, RubberBand, LCLType,
// Widgetset
WsLCLClasses, WsDesigner, WsProc;
type
{ TWsCustomRubberBand }
{ TQtWsCustomRubberBand }
TQtWsCustomRubberBand = class(TWsCustomRubberBand)
published
class function CreateHandle(const AWinControl: TWinControl; const AParams: TCreateParams): TLCLHandle; override;
class procedure SetShape(ARubberBand: TCustomRubberBand; AShape: TRubberBandShape); override;
end;
implementation
const
RubberBandShapeMap: array[TRubberBandShape] of QRubberBandShape =
(
QRubberBandLine,
QRubberBandRectangle
);
{ TQtWsCustomRubberBand }
class function TQtWsCustomRubberBand.CreateHandle(
const AWinControl: TWinControl; const AParams: TCreateParams
): TLCLHandle;
var
QtRubberBand: TQtRubberBand;
begin
QtRubberBand := TQtRubberBand.Create(AWinControl, AParams);
QtRubberBand.AttachEvents;
QtRubberBand.setShape(RubberBandShapeMap[TCustomRubberBand(AWinControl).Shape]);
Result := TLCLHandle(QtRubberBand);
end;
class procedure TQtWsCustomRubberBand.SetShape(ARubberBand: TCustomRubberBand;
AShape: TRubberBandShape);
begin
if not WSCheckHandleAllocated(ARubberBand, 'SetShape') then
Exit;
TQtRubberBand(ARubberBand.Handle).setShape(RubberBandShapeMap[AShape]);
end;
end.