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
|
{ $Id: FpGuiwscontrols.pp 5319 2004-03-17 20:11:29Z marc $}
{
*****************************************************************************
* FpGuiWSControls.pp *
* --------------- *
* *
* *
*****************************************************************************
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.LCL, included in this distribution,
for details about the license.
*****************************************************************************
}
unit FpGuiWSControls;
{$mode objfpc}{$H+}
interface
uses
// FCL
Classes, sysutils,
// Bindings
fpguiwsprivate, fpguiobjects, fpg_panel,
// LCL
Controls, LCLType, Graphics,
// Widgetset
fpguiproc, WSControls, WSLCLClasses;
type
{ TFpGuiWSDragImageList }
TFpGuiWSDragImageList = class(TWSDragImageListResolution)
private
protected
public
end;
{ TFpGuiWSControl }
TFpGuiWSControl = class(TWSControl)
private
protected
public
end;
{ TFpGuiWSWinControl }
TFpGuiWSWinControl = class(TWSWinControl)
private
protected
published
class function CreateHandle(const AWinControl: TWinControl;
const AParams: TCreateParams): TLCLHandle; override;
class procedure DestroyHandle(const AWinControl: TWinControl); override;
class procedure Invalidate(const AWinControl: TWinControl); override;
class function GetClientRect(const AWincontrol: TWinControl;
var ARect: TRect): Boolean; override;
class function GetDefaultClientRect(const AWinControl: TWinControl;
const aLeft, aTop, aWidth, aHeight: integer;
var aClientRect: TRect): Boolean; override;
class procedure GetPreferredSize(const AWinControl: TWinControl;
var PreferredWidth, PreferredHeight: integer;
WithThemeSpace: Boolean); override;
class procedure PaintTo(const AWinControl: TWinControl; ADC: HDC; X, Y: Integer); override;
class procedure SetBounds(const AWinControl: TWinControl; const ALeft, ATop, AWidth, AHeight: Integer); override;
class procedure SetPos(const AWinControl: TWinControl; const ALeft, ATop: Integer); override;
class procedure SetSize(const AWinControl: TWinControl; const AWidth, AHeight: Integer); override;
class procedure ShowHide(const AWinControl: TWinControl); override; //TODO: rename to SetVisible(control, visible)
class procedure SetColor(const AWinControl: TWinControl); override;
class function GetText(const AWinControl: TWinControl; var AText: String): Boolean; override;
class procedure SetText(const AWinControl: TWinControl; const AText: string); override;
class procedure SetCursor(const AWinControl: TWinControl; const ACursor: HCursor); override;
{ class procedure AddControl(const AControl: TControl); override;
class procedure SetBorderStyle(const AWinControl: TWinControl; const ABorderStyle: TBorderStyle); override;}
class procedure SetFont(const AWinControl: TWinControl; const AFont: TFont); override;
{ class procedure ConstraintsChange(const AWinControl: TWinControl); override;}
class function CanFocus(const AWincontrol: TWinControl): Boolean; override;
end;
{ TFpGuiWSGraphicControl }
TFpGuiWSGraphicControl = class(TWSGraphicControl)
private
protected
public
published
end;
{ TFpGuiWSCustomControl }
TFpGuiWSCustomControl = class(TWSCustomControl)
private
protected
public
end;
{ TFpGuiWSImageList }
TFpGuiWSImageList = class(TWSImageList)
private
protected
public
end;
implementation
uses
fpg_widget, fpg_base;
{ TFpGuiWSWinControl }
{------------------------------------------------------------------------------
Method: TFpGuiWSWinControl.CreateHandle
Params: None
Returns: Nothing
------------------------------------------------------------------------------}
class function TFpGuiWSWinControl.CreateHandle(const AWinControl: TWinControl;
const AParams: TCreateParams): TLCLHandle;
begin
{$ifdef VerboseFPGUIIntf}
WriteLn(Self.ClassName,'.CreateHandle ',AWinControl.Name);
{$endif}
Result := TLCLHandle(TFPGUIPrivateWidget.Create(AWinControl, AParams));
end;
{------------------------------------------------------------------------------
Method: TFpGuiWSWinControl.DestroyHandle
Params: None
Returns: Nothing
------------------------------------------------------------------------------}
class procedure TFpGuiWSWinControl.DestroyHandle(const AWinControl: TWinControl);
begin
TFPGUIPrivateWidget(AWinControl.Handle).Free;
AWinControl.Handle := 0;
end;
{------------------------------------------------------------------------------
Method: TFpGuiWSWinControl.Invalidate
Params: None
Returns: Nothing
------------------------------------------------------------------------------}
class procedure TFpGuiWSWinControl.Invalidate(const AWinControl: TWinControl);
var
FPWidget: TfpgWidget;
begin
FPWidget := TFPGUIPrivateWidget(AWinControl.Handle).Widget;
FPWidget.Invalidate;
end;
class function TFpGuiWSWinControl.GetClientRect(const AWincontrol: TWinControl;
var ARect: TRect): Boolean;
begin
TFPGUIPrivateWidget(AWincontrol.Handle).GetClientRect(ARect);
Result:=true;
end;
class function TFpGuiWSWinControl.GetDefaultClientRect(
const AWinControl: TWinControl; const aLeft, aTop, aWidth, aHeight: integer;
var aClientRect: TRect): Boolean;
begin
if AWincontrol.HandleAllocated then begin
TFPGUIPrivateWidget(AWincontrol.Handle).GetDefaultClientRect(aClientRect);
Result:=true;
end else begin
Result:=false;
end;
end;
class procedure TFpGuiWSWinControl.GetPreferredSize(
const AWinControl: TWinControl; var PreferredWidth, PreferredHeight: integer;
WithThemeSpace: Boolean);
begin
TFPGUIPrivateWidget(AWinControl.Handle).GetPreferredSize(PreferredWidth,PreferredHeight,WithThemeSpace);
end;
class procedure TFpGuiWSWinControl.PaintTo(const AWinControl: TWinControl;
ADC: HDC; X, Y: Integer);
//var
// AADC: TFPGUIDeviceContext absolute ADC;
begin
// TFPGUIPrivateWidget(AWinControl.Handle).PaintTo(AADC.fpgCanvas,X,Y);
end;
{------------------------------------------------------------------------------
Method: TFpGuiWSWinControl.SetBounds
Params: AWinControl - the calling object
ALeft, ATop - Position
AWidth, AHeight - Size
Returns: Nothing
Sets the position and size of a widget
------------------------------------------------------------------------------}
class procedure TFpGuiWSWinControl.SetBounds(const AWinControl: TWinControl;
const ALeft, ATop, AWidth, AHeight: Integer);
begin
TFPGUIPrivateWidget(AWinControl.Handle).SetPosition(ALeft,ATop);
TFPGUIPrivateWidget(AWinControl.Handle).SetSize(AWidth,AHeight);
end;
{------------------------------------------------------------------------------
Method: TFpGuiWSWinControl.SetPos
Params: AWinControl - the calling object
ALeft, ATop - Position
Returns: Nothing
Sets the position of a widget
------------------------------------------------------------------------------}
class procedure TFpGuiWSWinControl.SetPos(const AWinControl: TWinControl;
const ALeft, ATop: Integer);
begin
TFPGUIPrivateWidget(AWinControl.Handle).SetPosition(ALeft,ATop);
end;
{------------------------------------------------------------------------------
Method: TFpGuiWSWinControl.SetSize
Params: AWinControl - the calling object
AWidth, AHeight - Size
Returns: Nothing
Sets the size of a widget
------------------------------------------------------------------------------}
class procedure TFpGuiWSWinControl.SetSize(const AWinControl: TWinControl;
const AWidth, AHeight: Integer);
begin
TFPGUIPrivateWidget(AWinControl.Handle).SetSize(AWidth,AHeight);
end;
{------------------------------------------------------------------------------
Method: TFpGuiWSWinControl.ShowHide
Params: AWinControl - the calling object
Returns: Nothing
Shows or hides a widget.
------------------------------------------------------------------------------}
class procedure TFpGuiWSWinControl.ShowHide(const AWinControl: TWinControl);
var
FPPrivate: TFPGUIPrivateWidget;
begin
FPPrivate := TFPGUIPrivateWidget(AWinControl.Handle);
FPPrivate.Visible := AWinControl.Visible;
end;
class procedure TFpGuiWSWinControl.SetColor(const AWinControl: TWinControl);
var
FPPrivate: TFPGUIPrivateWidget;
begin
FPPrivate := TFPGUIPrivateWidget(AWinControl.Handle);
FPPrivate.Widget.BackgroundColor:=TColorToTfpgColor(AWinControl.Color)
end;
class function TFpGuiWSWinControl.GetText(const AWinControl: TWinControl;
var AText: String): Boolean;
var
FPPrivateWidget: TFPGUIPrivateWidget;
begin
FPPrivateWidget := TFPGUIPrivateWidget(AWinControl.Handle);
Result := FPPrivateWidget.HasStaticText;
if Result then AText := FPPrivateWidget.GetText;
end;
class procedure TFpGuiWSWinControl.SetText(const AWinControl: TWinControl;
const AText: string);
var
FPPrivateWidget: TFPGUIPrivateWidget;
begin
FPPrivateWidget := TFPGUIPrivateWidget(AWinControl.Handle);
FPPrivateWidget.SetText(AText);
end;
class procedure TFpGuiWSWinControl.SetCursor(const AWinControl: TWinControl;
const ACursor: HCursor);
var
FPPrivateWidget: TFPGUIPrivateWindow;
begin
FPPrivateWidget := TFPGUIPrivateWindow(AWinControl.Handle);
FPPrivateWidget.SetCursor(integer(ACursor));
end;
class procedure TFpGuiWSWinControl.SetFont(const AWinControl: TWinControl;
const AFont: TFont);
var
FPPrivateWidget: TFPGUIPrivateWindow;
begin
FPPrivateWidget := TFPGUIPrivateWindow(AWinControl.Handle);
FPPrivateWidget.Font:=AFont;
end;
class function TFpGuiWSWinControl.CanFocus(const AWincontrol: TWinControl
): Boolean;
var
FPPrivateWidget: TFPGUIPrivateWindow;
begin
FPPrivateWidget := TFPGUIPrivateWindow(AWinControl.Handle);
Result:=FPPrivateWidget.Widget.Focusable;
end;
end.
|