File: wslazdeviceapis.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (124 lines) | stat: -rw-r--r-- 3,611 bytes parent folder | download | duplicates (10)
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
{
 *****************************************************************************
 *                             WSLazDeviceAPIS.pas                           *
 *                                ----------                                 * 
 *                                                                           *
 *                                                                           *
 *****************************************************************************

 *****************************************************************************
  This file is part of the Lazarus Component Library (LCL)

  See the file COPYING.modifiedLGPL.txt, included in this distribution,
  for details about the license.
 *****************************************************************************
}
unit WSLazDeviceAPIS;

{$mode objfpc}{$H+}
{$I lcl_defines.inc}

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
////////////////////////////////////////////////////
  Types, Math, LazDeviceAPIs,
////////////////////////////////////////////////////
  WSLCLClasses, WSControls, WSFactory;

type
  { TWSLazDeviceAPIS }
  
  TWSLazDeviceAPIsClass = class of TWSLazDeviceAPIs;
  TWSLazDeviceAPIs = class(TWSObject)
  public
    class procedure RequestPositionInfo(AMethod: TLazPositionMethod); virtual;
    //
    class procedure SendMessage(AMsg: TLazDeviceMessage); virtual;
    //
    class procedure StartReadingAccelerometerData(); virtual;
    class procedure StopReadingAccelerometerData(); virtual;
    // TLazDevice
    class function GetDeviceManufacturer: string; virtual;
    class function GetDeviceModel: string; virtual;
    class function GetScreenRotation(AScreenIndex: Integer): TScreenRotation; virtual;
    class procedure Vibrate(ADurationMS: Cardinal); virtual;
  end;

{ WidgetSetRegistration }
procedure RegisterLazDeviceAPIs;

implementation

{ WidgetSetRegistration }

procedure RegisterLazDeviceAPIs;
const
  Done: Boolean = False;
begin
  if Done then exit;
  if not WSRegisterLazDeviceAPIs() then
    RegisterWSLazDeviceAPIs(TWSLazDeviceAPIs);
  Done := True;
end;

{ TWSLazDeviceAPIs }

class procedure TWSLazDeviceAPIs.RequestPositionInfo(AMethod: TLazPositionMethod);
begin

end;

class procedure TWSLazDeviceAPIs.SendMessage(AMsg: TLazDeviceMessage);
begin

end;

class procedure TWSLazDeviceAPIs.StartReadingAccelerometerData;
begin

end;

class procedure TWSLazDeviceAPIs.StopReadingAccelerometerData;
begin

end;

class function TWSLazDeviceAPIs.GetDeviceManufacturer: string;
begin
  Result := '';
end;

class function TWSLazDeviceAPIs.GetDeviceModel: string;
begin
  Result := '';
end;

class function TWSLazDeviceAPIs.GetScreenRotation(AScreenIndex: Integer
  ): TScreenRotation;
begin
  Result := srRotation_0;
end;

class procedure TWSLazDeviceAPIs.Vibrate(ADurationMS: Cardinal);
begin

end;

end.