lazarus/lcl/widgetset/wsgrids.pp
paul efe9d531c3 widgetset: make WS classes method explicitly published
win32: fix WS classes. move methods to published sections

git-svn-id: trunk@17576 -
2008-11-25 02:29:28 +00:00

109 lines
3.6 KiB
ObjectPascal

{ $Id$}
{
*****************************************************************************
* WSGrids.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 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 WSGrids;
{$mode objfpc}{$H+}
interface
////////////////////////////////////////////////////
// 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
////////////////////////////////////////////////////
// To get as little as posible circles,
// uncomment only when needed for registration
////////////////////////////////////////////////////
Controls, LCLType, Grids,
////////////////////////////////////////////////////
WSLCLClasses, WSMaskEdit, WSControls;
type
{ TWSStringCellEditor }
TWSStringCellEditor = class(TWSCustomMaskEdit)
published
end;
TWSCustomGridClass = class of TWSCustomgrid;
{ TWSCustomGrid }
TWSCustomGrid = class(TWSCustomControl)
published
class procedure SendCharToEditor(AEditor:TWinControl; Ch: TUTF8Char); virtual;
end;
{ TWSDrawGrid }
TWSDrawGrid = class(TWSCustomGrid)
published
end;
{ TWSStringGrid }
TWSStringGrid = class(TWSDrawGrid)
published
end;
implementation
uses LCLIntf, LCLProc;
{ TWSCustomGrid }
class procedure TWSCustomGrid.SendCharToEditor(AEditor:TWinControl;
Ch: TUTF8Char);
var
GMsg: TGridMessage;
begin
GMsg.LclMsg.Msg:=GM_SETVALUE;
if Ch=#8 then // backspace
GMsg.Value:=''
else
GMsg.Value:=Ch;
AEditor.Dispatch(GMsg);
end;
initialization
////////////////////////////////////////////////////
// To improve speed, register only classes
// which actually implement something
////////////////////////////////////////////////////
// RegisterWSComponent(TStringCellEditor, TWSStringCellEditor);
RegisterWSComponent(TCustomGrid, TWSCustomGrid);
// RegisterWSComponent(TDrawGrid, TWSDrawGrid);
// RegisterWSComponent(TStringGrid, TWSStringGrid);
////////////////////////////////////////////////////
end.