home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / full / delphi / INSTALL / data.z / UPDOIMPL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-05  |  5.6 KB  |  224 lines

  1. unit UpDoImpl;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, ActiveX, Classes, Controls, Graphics, Menus, Forms, StdCtrls,
  7.   ComServ, StdVCL, AXCtrls, DelC_TLB, ComCtrls;
  8.  
  9. type
  10.   TUpDownX = class(TActiveXControl, IUpDownX)
  11.   private
  12.     { Private declarations }
  13.     FDelphiControl: TUpDown;
  14.     FEvents: IUpDownXEvents;
  15.     procedure ChangingEvent(Sender: TObject; var AllowChange: Boolean);
  16.     procedure ClickEvent(Sender: TObject; Button: TUDBtnType);
  17.   protected
  18.     { Protected declarations }
  19.     procedure InitializeControl; override;
  20.     procedure EventSinkChanged(const EventSink: IUnknown); override;
  21.     procedure DefinePropertyPages(DefinePropertyPage: TDefinePropertyPage); override;
  22.     function Get_AlignButton: TxUDAlignButton; safecall;
  23.     function Get_ArrowKeys: WordBool; safecall;
  24.     function Get_Cursor: Smallint; safecall;
  25.     function Get_Enabled: WordBool; safecall;
  26.     function Get_Increment: Integer; safecall;
  27.     function Get_Max: Smallint; safecall;
  28.     function Get_Min: Smallint; safecall;
  29.     function Get_Orientation: TxUDOrientation; safecall;
  30.     function Get_Position: Smallint; safecall;
  31.     function Get_Thousands: WordBool; safecall;
  32.     function Get_Visible: WordBool; safecall;
  33.     function Get_Wrap: WordBool; safecall;
  34.     procedure AboutBox; safecall;
  35.     procedure Set_AlignButton(Value: TxUDAlignButton); safecall;
  36.     procedure Set_ArrowKeys(Value: WordBool); safecall;
  37.     procedure Set_Cursor(Value: Smallint); safecall;
  38.     procedure Set_Enabled(Value: WordBool); safecall;
  39.     procedure Set_Increment(Value: Integer); safecall;
  40.     procedure Set_Max(Value: Smallint); safecall;
  41.     procedure Set_Min(Value: Smallint); safecall;
  42.     procedure Set_Orientation(Value: TxUDOrientation); safecall;
  43.     procedure Set_Position(Value: Smallint); safecall;
  44.     procedure Set_Thousands(Value: WordBool); safecall;
  45.     procedure Set_Visible(Value: WordBool); safecall;
  46.     procedure Set_Wrap(Value: WordBool); safecall;
  47.   end;
  48.  
  49. implementation
  50.  
  51. uses About34;
  52.  
  53. { TUpDownX }
  54.  
  55. procedure TUpDownX.InitializeControl;
  56. begin
  57.   FDelphiControl := Control as TUpDown;
  58.   FDelphiControl.OnChanging := ChangingEvent;
  59.   FDelphiControl.OnClick := ClickEvent;
  60. end;
  61.  
  62. procedure TUpDownX.EventSinkChanged(const EventSink: IUnknown);
  63. begin
  64.   FEvents := EventSink as IUpDownXEvents;
  65. end;
  66.  
  67. procedure TUpDownX.DefinePropertyPages(DefinePropertyPage: TDefinePropertyPage);
  68. begin
  69.   { Define property pages here.  Property pages are defined by calling
  70.     DefinePropertyPage with the class id of the page.  For example,
  71.       DefinePropertyPage(Class_UpDownXPage); }
  72. end;
  73.  
  74. function TUpDownX.Get_AlignButton: TxUDAlignButton;
  75. begin
  76.   Result := Ord(FDelphiControl.AlignButton);
  77. end;
  78.  
  79. function TUpDownX.Get_ArrowKeys: WordBool;
  80. begin
  81.   Result := FDelphiControl.ArrowKeys;
  82. end;
  83.  
  84. function TUpDownX.Get_Cursor: Smallint;
  85. begin
  86.   Result := Smallint(FDelphiControl.Cursor);
  87. end;
  88.  
  89. function TUpDownX.Get_Enabled: WordBool;
  90. begin
  91.   Result := FDelphiControl.Enabled;
  92. end;
  93.  
  94. function TUpDownX.Get_Increment: Integer;
  95. begin
  96.   Result := FDelphiControl.Increment;
  97. end;
  98.  
  99. function TUpDownX.Get_Max: Smallint;
  100. begin
  101.   Result := FDelphiControl.Max;
  102. end;
  103.  
  104. function TUpDownX.Get_Min: Smallint;
  105. begin
  106.   Result := FDelphiControl.Min;
  107. end;
  108.  
  109. function TUpDownX.Get_Orientation: TxUDOrientation;
  110. begin
  111.   Result := Ord(FDelphiControl.Orientation);
  112. end;
  113.  
  114. function TUpDownX.Get_Position: Smallint;
  115. begin
  116.   Result := FDelphiControl.Position;
  117. end;
  118.  
  119. function TUpDownX.Get_Thousands: WordBool;
  120. begin
  121.   Result := FDelphiControl.Thousands;
  122. end;
  123.  
  124. function TUpDownX.Get_Visible: WordBool;
  125. begin
  126.   Result := FDelphiControl.Visible;
  127. end;
  128.  
  129. function TUpDownX.Get_Wrap: WordBool;
  130. begin
  131.   Result := FDelphiControl.Wrap;
  132. end;
  133.  
  134. procedure TUpDownX.AboutBox;
  135. begin
  136.   ShowUpDownXAbout;
  137. end;
  138.  
  139. procedure TUpDownX.Set_AlignButton(Value: TxUDAlignButton);
  140. begin
  141.   FDelphiControl.AlignButton := TUDAlignButton(Value);
  142. end;
  143.  
  144. procedure TUpDownX.Set_ArrowKeys(Value: WordBool);
  145. begin
  146.   FDelphiControl.ArrowKeys := Value;
  147. end;
  148.  
  149. procedure TUpDownX.Set_Cursor(Value: Smallint);
  150. begin
  151.   FDelphiControl.Cursor := TCursor(Value);
  152. end;
  153.  
  154. procedure TUpDownX.Set_Enabled(Value: WordBool);
  155. begin
  156.   FDelphiControl.Enabled := Value;
  157. end;
  158.  
  159. procedure TUpDownX.Set_Increment(Value: Integer);
  160. begin
  161.   FDelphiControl.Increment := Value;
  162. end;
  163.  
  164. procedure TUpDownX.Set_Max(Value: Smallint);
  165. begin
  166.   FDelphiControl.Max := Value;
  167. end;
  168.  
  169. procedure TUpDownX.Set_Min(Value: Smallint);
  170. begin
  171.   FDelphiControl.Min := Value;
  172. end;
  173.  
  174. procedure TUpDownX.Set_Orientation(Value: TxUDOrientation);
  175. begin
  176.   FDelphiControl.Orientation := TUDOrientation(Value);
  177. end;
  178.  
  179. procedure TUpDownX.Set_Position(Value: Smallint);
  180. begin
  181.   FDelphiControl.Position := Value;
  182. end;
  183.  
  184. procedure TUpDownX.Set_Thousands(Value: WordBool);
  185. begin
  186.   FDelphiControl.Thousands := Value;
  187. end;
  188.  
  189. procedure TUpDownX.Set_Visible(Value: WordBool);
  190. begin
  191.   FDelphiControl.Visible := Value;
  192. end;
  193.  
  194. procedure TUpDownX.Set_Wrap(Value: WordBool);
  195. begin
  196.   FDelphiControl.Wrap := Value;
  197. end;
  198.  
  199. procedure TUpDownX.ChangingEvent(Sender: TObject;
  200.   var AllowChange: Boolean);
  201. var
  202.   TempAllowChange: WordBool;
  203. begin
  204.   TempAllowChange := WordBool(AllowChange);
  205.   if FEvents <> nil then FEvents.OnChanging(TempAllowChange);
  206.   AllowChange := Boolean(TempAllowChange);
  207. end;
  208.  
  209. procedure TUpDownX.ClickEvent(Sender: TObject; Button: TUDBtnType);
  210. begin
  211.   if FEvents <> nil then FEvents.OnClick(TxUDBtnType(Button));
  212. end;
  213.  
  214. initialization
  215.   TActiveXControlFactory.Create(
  216.     ComServer,
  217.     TUpDownX,
  218.     TUpDown,
  219.     Class_UpDownX,
  220.     34,
  221.     '{FA7B8808-9ED7-11D0-AA40-444553540000}',
  222.     0);
  223. end.
  224.