mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-30 01:22:43 +02:00
103 lines
3.1 KiB
ObjectPascal
103 lines
3.1 KiB
ObjectPascal
{ $Id$}
|
|
{
|
|
*****************************************************************************
|
|
* QtWSButtons.pp *
|
|
* -------------- *
|
|
* *
|
|
* *
|
|
*****************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.modifiedLGPL, 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 QtWSButtons;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
// Libs
|
|
{$ifdef USE_QT_4_3}
|
|
qt43,
|
|
{$else}
|
|
qt4,
|
|
{$endif}
|
|
qtwidgets, qtobjects,
|
|
// LCL
|
|
SysUtils, Controls, LCLType, Forms, InterfaceBase, Buttons, LMessages, Graphics,
|
|
// Widgetset
|
|
WSProc, WSButtons, WSLCLClasses;
|
|
|
|
type
|
|
|
|
{ TQtWSBitBtn }
|
|
|
|
TQtWSBitBtn = class(TWSBitBtn)
|
|
private
|
|
protected
|
|
public
|
|
class procedure SetGlyph(const ABitBtn: TCustomBitBtn; const AValue: TBitmap); override;
|
|
end;
|
|
|
|
{ TQtWSSpeedButton }
|
|
|
|
TQtWSSpeedButton = class(TWSSpeedButton)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
uses QtWSControls;
|
|
|
|
{ TQtWSBitBtn }
|
|
|
|
{------------------------------------------------------------------------------
|
|
Function: TQtWSBitBtn.SetGlyph
|
|
Params: None
|
|
Returns: Nothing
|
|
------------------------------------------------------------------------------}
|
|
class procedure TQtWSBitBtn.SetGlyph(const ABitBtn: TCustomBitBtn; const AValue: TBitmap);
|
|
var
|
|
AIcon: QIconH;
|
|
APixmap: QPixmapH;
|
|
begin
|
|
APixmap := QPixmap_create();
|
|
QPixmap_fromImage(APixmap, TQtImage(AValue.Handle).Handle);
|
|
try
|
|
if APixmap <> nil then
|
|
begin
|
|
AIcon := QIcon_create(APixmap);
|
|
TQtAbstractButton(ABitbtn.Handle).setIcon(AIcon);
|
|
end;
|
|
finally
|
|
QPixmap_destroy(APixmap);
|
|
end;
|
|
end;
|
|
|
|
initialization
|
|
|
|
////////////////////////////////////////////////////
|
|
// I M P O R T A N T
|
|
////////////////////////////////////////////////////
|
|
// To improve speed, register only classes
|
|
// which actually implement something
|
|
////////////////////////////////////////////////////
|
|
RegisterWSComponent(TCustomBitBtn, TQtWSBitBtn);
|
|
// RegisterWSComponent(TCustomSpeedButton, TQtWSSpeedButton);
|
|
////////////////////////////////////////////////////
|
|
end.
|