-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
DW.AdMobBannerAd.pas
271 lines (234 loc) · 7.28 KB
/
DW.AdMobBannerAd.pas
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
unit DW.AdMobBannerAd;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library }
{ }
{ Copyright 2020-2024 Dave Nottage under MIT license }
{ which is located in the root folder of this library }
{ }
{*******************************************************}
interface
uses
// RTL
System.Classes, System.Types, System.UITypes,
// FMX
FMX.Controls.Presentation, FMX.Controls.Model, FMX.Controls, FMX.Graphics, FMX.Types,
// DW
DW.AdMob;
const
MM_BANNER_LOADAD = MM_USER + 1;
MM_BANNER_ADSIZE_CHANGED = MM_USER + 2;
MM_BANNER_ADUNITID_CHANGED = MM_USER + 3;
MM_BANNER_TESTMODE_CHANGED = MM_USER + 4;
type
TAdMobBannerAdSize = (Banner, LargeBanner, MediumRectangle, FullBanner, Leaderboard, Adaptive);
TCustomAdMobBannerAdModel = class(TDataModel)
private
FAdSize: TAdMobBannerAdSize;
FAdUnitID: string;
FTestMode: Boolean;
procedure SetAdSize(const Value: TAdMobBannerAdSize);
procedure SetAdUnitID(const Value: string);
procedure SetTestMode(const Value: Boolean);
public
procedure LoadAd;
property AdSize: TAdMobBannerAdSize read FAdSize write SetAdSize;
property AdUnitID: string read FAdUnitID write SetAdUnitID;
property TestMode: Boolean read FTestMode write SetTestMode;
end;
TCustomAdMobBannerAd = class(TPresentedControl)
private
FOnAdClicked: TNotifyEvent;
FOnAdClosed: TNotifyEvent;
FOnAdFailedToLoad: TAdErrorEvent;
FOnAdImpression: TNotifyEvent;
FOnAdLoaded: TNotifyEvent;
FOnAdOpened: TNotifyEvent;
function GetAdSize: TAdMobBannerAdSize;
function GetAdUnitID: string;
function GetModel: TCustomAdMobBannerAdModel; overload;
function GetTestMode: Boolean;
procedure SetAdSize(const Value: TAdMobBannerAdSize);
procedure SetAdUnitID(const Value: string);
procedure SetTestMode(const Value: Boolean);
protected
function DefineModelClass: TDataModelClass; override;
procedure DoAdClicked;
procedure DoAdClosed;
procedure DoAdFailedToLoad(const AError: TAdError);
procedure DoAdImpression;
procedure DoAdLoaded;
procedure DoAdOpened;
procedure Paint; override;
function RecommendSize(const AWishedSize: TSizeF): TSizeF; override;
public
constructor Create(AOwner: TComponent); override;
procedure LoadAd;
property AdSize: TAdMobBannerAdSize read GetAdSize write SetAdSize;
property AdUnitID: string read GetAdUnitID write SetAdUnitID;
property Model: TCustomAdMobBannerAdModel read GetModel;
property TestMode: Boolean read GetTestMode write SetTestMode default False;
property OnAdClicked: TNotifyEvent read FOnAdClicked write FOnAdClicked;
property OnAdClosed: TNotifyEvent read FOnAdClosed write FOnAdClosed;
property OnAdFailedToLoad: TAdErrorEvent read FOnAdFailedToLoad write FOnAdFailedToLoad;
property OnAdImpression: TNotifyEvent read FOnAdImpression write FOnAdImpression;
property OnAdLoaded: TNotifyEvent read FOnAdLoaded write FOnAdLoaded;
property OnAdOpened: TNotifyEvent read FOnAdOpened write FOnAdOpened;
end;
{$IF CompilerVersion >= 35}
[ComponentPlatformsAttribute(pfidiOS or pidAndroidArm32 or pidAndroidArm64)]
{$ELSE}
[ComponentPlatformsAttribute(pfidiOS or pidAndroid32Arm or pidAndroid64Arm)]
{$ENDIF}
TAdMobBannerAd = class(TCustomAdMobBannerAd)
published
property AdSize;
property AdUnitID;
property Align;
property Anchors;
property Height;
property Margins;
property Position;
property Size;
property TestMode;
property Visible default True;
property Width;
property OnAdClicked;
property OnAdClosed;
property OnAdFailedToLoad;
property OnAdImpression;
property OnAdLoaded;
property OnAdOpened;
end;
procedure Register;
implementation
uses
// DW
{$IF Defined(IOS)}
DW.AdMobBannerAd.iOS,
{$ENDIF}
{$IF Defined(ANDROID)}
DW.AdMobBannerAd.Android,
{$ENDIF}
// RTL
System.SysUtils, System.IOUtils,
// FMX
FMX.Consts;
procedure Register;
begin
RegisterComponents('Kastri FMX', [TAdMobBannerAd]);
end;
{ TCustomAdMobBannerAdModel }
procedure TCustomAdMobBannerAdModel.LoadAd;
begin
SendMessage(MM_BANNER_LOADAD);
end;
procedure TCustomAdMobBannerAdModel.SetAdSize(const Value: TAdMobBannerAdSize);
begin
if Value <> FAdSize then
begin
FAdSize := Value;
SendMessage(MM_BANNER_ADSIZE_CHANGED);
end;
end;
procedure TCustomAdMobBannerAdModel.SetAdUnitID(const Value: string);
begin
if Value <> FAdUnitID then
begin
FAdUnitID := Value;
SendMessage(MM_BANNER_ADUNITID_CHANGED);
end;
end;
procedure TCustomAdMobBannerAdModel.SetTestMode(const Value: Boolean);
begin
if Value <> FTestMode then
begin
FTestMode := Value;
SendMessage(MM_BANNER_TESTMODE_CHANGED);
end;
end;
{ TCustomAdMobBannerAd }
constructor TCustomAdMobBannerAd.Create(AOwner: TComponent);
begin
inherited;
ControlType := TControlType.Platform;
//
end;
function TCustomAdMobBannerAd.DefineModelClass: TDataModelClass;
begin
Result := TCustomAdMobBannerAdModel;
end;
function TCustomAdMobBannerAd.GetAdSize: TAdMobBannerAdSize;
begin
Result := Model.AdSize;
end;
function TCustomAdMobBannerAd.GetAdUnitID: string;
begin
Result := Model.AdUnitID;
end;
function TCustomAdMobBannerAd.GetModel: TCustomAdMobBannerAdModel;
begin
Result := inherited GetModel<TCustomAdMobBannerAdModel>;
end;
function TCustomAdMobBannerAd.GetTestMode: Boolean;
begin
Result := Model.TestMode;
end;
procedure TCustomAdMobBannerAd.LoadAd;
begin
Model.LoadAd;
end;
procedure TCustomAdMobBannerAd.Paint;
begin
if (csDesigning in ComponentState) and not Locked then
DrawDesignBorder;
end;
function TCustomAdMobBannerAd.RecommendSize(const AWishedSize: TSizeF): TSizeF;
begin
Result := AWishedSize;
end;
procedure TCustomAdMobBannerAd.SetAdSize(const Value: TAdMobBannerAdSize);
begin
Model.AdSize := Value;
end;
procedure TCustomAdMobBannerAd.SetAdUnitID(const Value: string);
begin
Model.AdUnitID := Value;
end;
procedure TCustomAdMobBannerAd.SetTestMode(const Value: Boolean);
begin
Model.TestMode := Value;
end;
procedure TCustomAdMobBannerAd.DoAdClicked;
begin
if Assigned(FOnAdClicked) then
FOnAdClicked(Self);
end;
procedure TCustomAdMobBannerAd.DoAdClosed;
begin
if Assigned(FOnAdClosed) then
FOnAdClosed(Self);
end;
procedure TCustomAdMobBannerAd.DoAdFailedToLoad(const AError: TAdError);
begin
if Assigned(FOnAdFailedToLoad) then
FOnAdFailedToLoad(Self, AError);
end;
procedure TCustomAdMobBannerAd.DoAdImpression;
begin
if Assigned(FOnAdImpression) then
FOnAdImpression(Self);
end;
procedure TCustomAdMobBannerAd.DoAdLoaded;
begin
if Assigned(FOnAdLoaded) then
FOnAdLoaded(Self);
end;
procedure TCustomAdMobBannerAd.DoAdOpened;
begin
if Assigned(FOnAdOpened) then
FOnAdOpened(Self);
end;
end.