mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-06 07:58:19 +02:00
224 lines
8.0 KiB
ObjectPascal
224 lines
8.0 KiB
ObjectPascal
{ $Id$}
|
|
{
|
|
*****************************************************************************
|
|
* Win32WSSpin.pp *
|
|
* -------------- *
|
|
* *
|
|
* *
|
|
*****************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.LCL, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program 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. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
unit Win32WSSpin;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
////////////////////////////////////////////////////
|
|
// I M P O R T A N T
|
|
////////////////////////////////////////////////////
|
|
// To get as little as posible circles,
|
|
// uncomment only when needed for registration
|
|
////////////////////////////////////////////////////
|
|
Spin, Controls, LCLType,
|
|
////////////////////////////////////////////////////
|
|
WSSpin, WSLCLClasses, Windows, Win32Int, WinExt, Win32Proc,
|
|
Win32WSStdCtrls, Win32WSControls;
|
|
|
|
type
|
|
|
|
{ TWin32WSCustomFloatSpinEdit }
|
|
|
|
TWin32WSCustomFloatSpinEdit = class(TWSCustomFloatSpinEdit)
|
|
private
|
|
protected
|
|
public
|
|
class procedure AdaptBounds(const AWinControl: TWinControl;
|
|
var Left, Top, Width, Height: integer; var SuppressMove: boolean); override;
|
|
class function CreateHandle(const AWinControl: TWinControl;
|
|
const AParams: TCreateParams): HWND; override;
|
|
class function GetSelStart(const ACustomFloatSpinEdit: TCustomFloatSpinEdit): integer; override;
|
|
class function GetSelLength(const ACustomFloatSpinEdit: TCustomFloatSpinEdit): integer; override;
|
|
class function GetText(const AWinControl: TWinControl; var AText: String): Boolean; override;
|
|
class function GetValue(const ACustomFloatSpinEdit: TCustomFloatSpinEdit): single; override;
|
|
|
|
class procedure SetSelStart(const ACustomFloatSpinEdit: TCustomFloatSpinEdit; NewStart: integer); override;
|
|
class procedure SetSelLength(const ACustomFloatSpinEdit: TCustomFloatSpinEdit; NewLength: integer); override;
|
|
class procedure ShowHide(const AWinControl: TWinControl); override;
|
|
|
|
class procedure UpdateControl(const ACustomFloatSpinEdit: TCustomFloatSpinEdit); override;
|
|
end;
|
|
|
|
{ TWin32WSFloatSpinEdit }
|
|
|
|
TWin32WSFloatSpinEdit = class(TWSFloatSpinEdit)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
|
|
procedure UpdateFloatSpinEditText(const ASpinHandle: HWND; const ANewValue: single;
|
|
const ADecimalPlaces: integer);
|
|
|
|
implementation
|
|
|
|
uses
|
|
SysUtils;
|
|
|
|
{ TWin32WSCustomFloatSpinEdit }
|
|
|
|
function GetBuddyWindow(AHandle: HWND): HWND;
|
|
begin
|
|
Result := SendMessage(AHandle, UDM_GETBUDDY, 0, 0)
|
|
end;
|
|
|
|
procedure UpdateFloatSpinEditControl(const Handle: HWND;
|
|
const AFloatSpinEdit: TCustomFloatSpinEdit);
|
|
var
|
|
lWindowInfo: PWindowInfo;
|
|
begin
|
|
lWindowInfo := GetWindowInfo(Handle);
|
|
if lWindowInfo <> @DefaultWindowInfo then
|
|
begin
|
|
lWindowInfo^.spinValue := AFloatSpinEdit.Value;
|
|
UpdateFloatSpinEditText(Handle, AFloatSpinEdit.Value, AFloatSpinEdit.DecimalPlaces);
|
|
end;
|
|
end;
|
|
|
|
procedure UpdateFloatSpinEditText(const ASpinHandle: HWND; const ANewValue: single;
|
|
const ADecimalPlaces: integer);
|
|
var
|
|
editHandle: HWND;
|
|
newValueText: string;
|
|
begin
|
|
editHandle := GetBuddyWindow(ASpinHandle);
|
|
newValueText := FloatToStrF(ANewValue, ffFixed, 20, ADecimalPlaces);
|
|
Windows.SendMessage(editHandle, WM_SETTEXT, 0, Windows.LPARAM(PChar(newValueText)));
|
|
end;
|
|
|
|
function TWin32WSCustomFloatSpinEdit.CreateHandle(const AWinControl: TWinControl;
|
|
const AParams: TCreateParams): HWND;
|
|
var
|
|
Params: TCreateWindowExParams;
|
|
begin
|
|
// general initialization of Params
|
|
PrepareCreateWindow(AWinControl, Params);
|
|
// customization of Params
|
|
with Params do
|
|
begin
|
|
Buddy := CreateWindowEx(WS_EX_CLIENTEDGE, 'EDIT', StrCaption, Flags Or ES_AUTOHSCROLL, Left, Top, Width, Height, Parent, HMENU(Nil), HInstance, Nil);
|
|
Window := CreateUpDownControl(Flags or DWORD(WS_BORDER or UDS_ALIGNRIGHT or UDS_ARROWKEYS),
|
|
0, 0, // pos - ignored for buddy
|
|
0, 0, // size - ignored for buddy
|
|
Parent, 0, HInstance, Buddy,
|
|
1000, 0, 500);
|
|
end;
|
|
// create window
|
|
FinishCreateWindow(AWinControl, Params, true);
|
|
UpdateFloatSpinEditControl(Params.Window, TCustomFloatSpinEdit(AWinControl));
|
|
// init buddy
|
|
Params.SubClassWndProc := @WindowProc;
|
|
WindowCreateInitBuddy(AWinControl, Params);
|
|
Params.BuddyWindowInfo^.isChildEdit := true;
|
|
Result := Params.Window;
|
|
end;
|
|
|
|
procedure TWin32WSCustomFloatSpinEdit.AdaptBounds(const AWinControl: TWinControl;
|
|
var Left, Top, Width, Height: integer; var SuppressMove: boolean);
|
|
var
|
|
WinHandle, BuddyHandle: HWND;
|
|
begin
|
|
WinHandle := AWinControl.Handle;
|
|
// detach from buddy first
|
|
BuddyHandle := Windows.SendMessage(WinHandle, UDM_SETBUDDY, 0, 0);
|
|
MoveWindow(BuddyHandle, Left, Top, Width, Height, True);
|
|
// reattach
|
|
Windows.SendMessage(WinHandle, UDM_SETBUDDY, BuddyHandle, 0);
|
|
SuppressMove := true;
|
|
end;
|
|
|
|
function TWin32WSCustomFloatSpinEdit.GetSelStart(
|
|
const ACustomFloatSpinEdit: TCustomFloatSpinEdit): integer;
|
|
begin
|
|
Result := EditGetSelStart(GetBuddyWindow(ACustomFloatSpinEdit.Handle));
|
|
end;
|
|
|
|
function TWin32WSCustomFloatSpinEdit.GetSelLength(
|
|
const ACustomFloatSpinEdit: TCustomFloatSpinEdit): integer;
|
|
begin
|
|
Result := EditGetSelLength(GetBuddyWindow(ACustomFloatSpinEdit.Handle));
|
|
end;
|
|
|
|
function TWin32WSCustomFloatSpinEdit.GetText(const AWinControl: TWinControl;
|
|
var AText: string): boolean;
|
|
begin
|
|
Result := AWinControl.HandleAllocated;
|
|
if not Result then
|
|
exit;
|
|
AText := GetControlText(GetBuddyWindow(AWinControl.Handle));
|
|
end;
|
|
|
|
function TWin32WSCustomFloatSpinEdit.GetValue(
|
|
const ACustomFloatSpinEdit: TCustomFloatSpinEdit): single;
|
|
begin
|
|
Result := GetWindowInfo(ACustomFloatSpinEdit.Handle)^.spinValue;
|
|
end;
|
|
|
|
procedure TWin32WSCustomFloatSpinEdit.SetSelStart(
|
|
const ACustomFloatSpinEdit: TCustomFloatSpinEdit; NewStart: integer);
|
|
begin
|
|
EditSetSelStart(GetBuddyWindow(ACustomFloatSpinEdit.Handle), NewStart);
|
|
end;
|
|
|
|
procedure TWin32WSCustomFloatSpinEdit.SetSelLength(
|
|
const ACustomFloatSpinEdit: TCustomFloatSpinEdit; NewLength: integer);
|
|
begin
|
|
EditSetSelLength(GetBuddyWindow(ACustomFloatSpinEdit.Handle), NewLength);
|
|
end;
|
|
|
|
procedure TWin32WSCustomFloatSpinEdit.ShowHide(const AWinControl: TWinControl);
|
|
var
|
|
Buddy: HWND;
|
|
begin
|
|
// call inherited
|
|
TWin32WSWinControl.ShowHide(AWinControl);
|
|
Buddy := GetBuddyWindow(AWinControl.Handle);
|
|
if AWinControl.HandleObjectShouldBeVisible then
|
|
ShowWindow(Buddy, SW_SHOW)
|
|
else
|
|
ShowWindow(Buddy, SW_HIDE);
|
|
end;
|
|
|
|
procedure TWin32WSCustomFloatSpinEdit.UpdateControl(
|
|
const ACustomFloatSpinEdit: TCustomFloatSpinEdit);
|
|
begin
|
|
UpdateFloatSpinEditControl(ACustomFloatSpinEdit.Handle, ACustomFloatSpinEdit);
|
|
end;
|
|
|
|
initialization
|
|
|
|
////////////////////////////////////////////////////
|
|
// I M P O R T A N T
|
|
////////////////////////////////////////////////////
|
|
// To improve speed, register only classes
|
|
// which actually implement something
|
|
////////////////////////////////////////////////////
|
|
RegisterWSComponent(TCustomFloatSpinEdit, TWin32WSCustomFloatSpinEdit);
|
|
// RegisterWSComponent(TFloatSpinEdit, TWin32WSFloatSpinEdit);
|
|
////////////////////////////////////////////////////
|
|
end.
|