forked from zsdwxm/KernowSoftwareFMX
-
Notifications
You must be signed in to change notification settings - Fork 7
/
ksChatView.pas
414 lines (354 loc) · 12.1 KB
/
ksChatView.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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
{*******************************************************************************
* *
* TksChatView - TksTableView wrapper for chat bubbles applications *
* *
* https://github.com/gmurt/KernowSoftwareFMX *
* *
* Copyright 2015 Graham Murt *
* *
* email: [email protected] *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
*******************************************************************************}
unit ksChatView;
interface
{$I ksComponents.inc}
uses System.UITypes, FMX.Controls, FMX.Layouts, FMX.Objects, System.Classes,
FMX.Types, Generics.Collections, FMX.Graphics, System.UIConsts, FMX.Effects,
FMX.StdCtrls, System.Types, FMX.Forms, ksTableView, FMX.Edit,
FMX.VirtualKeyboard, System.Messaging, ksTypes;
type
TksChatView = class;
TksChatBubbleInfo = record
Text: string;
Color: TAlphaColor;
TextColor: TAlphaColor;
end;
TksChatViewPostText = procedure(Sender: TObject; var ABubble: TksChatBubbleInfo; var AAllowPost: Boolean) of object;
TksChatViewEdit = class(TToolBar)
private
FEdit: TEdit;
FSendButton: TButton;
procedure EnterEdit(Sender: TObject);
procedure SendButtonClick(Sender: TObject);
procedure EditKeyDown(Sender: TObject; var Key: Word; var KeyChar: Char; Shift: TShiftState);
procedure DoSendButtonClick;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property Edit: TEdit read FEdit;
property Button: TButton read FSendButton;
end;
[ComponentPlatformsAttribute(pidWin32 or pidWin64 or
{$IFDEF XE8_OR_NEWER} pidiOSDevice32 or pidiOSDevice64
{$ELSE} pidiOSDevice {$ENDIF} or pidiOSSimulator or pidAndroid)]
TksChatView = class(TksControl)
private
FTableView: TksTableView;
FEdit: TksChatViewEdit;
FMyImage: TBitmap;
FSpacer: TLayout;
FBeforePostText: TksChatViewPostText;
FEditVisible: Boolean;
FButtonText: string;
FOnSendButtonClick: TksChatViewPostText;
FShowDoneButton: Boolean;
procedure SetEditVisible(const Value: Boolean);
procedure SetMyImage(const Value: TBitmap);
procedure VirtualKeyboardChangeHandler(const Sender: TObject; const Msg: System.Messaging.TMessage);
procedure SetButtonText(const Value: string);
procedure SetShowDoneButton(const Value: Boolean);
protected
procedure Paint; override;
procedure DoSendButtonClick;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure AddChatBubble(AText: string;
APosition: TksTableViewChatBubblePosition;
AColor, ATextColor: TAlphaColor;
const AUserImage: TBitmap);
procedure Clear;
procedure ClearEdit;
published
property Align;
property ButtonText: string read FButtonText write SetButtonText;
property MyImage: TBitmap read FMyImage write SetMyImage;
property EditVisible: Boolean read FEditVisible write SetEditVisible default True;
property Position;
property ShowDoneButton: Boolean read FShowDoneButton write SetShowDoneButton default False;
property Size;
// events...
property OnSendButtonClick: TksChatViewPostText read FOnSendButtonClick write FOnSendButtonClick;
property BeforePostText: TksChatViewPostText read FBeforePostText write FBeforePostText;
end;
{$R *.dcr}
procedure Register;
implementation
uses SysUtils, FMX.Platform, FMX.Ani, FMX.Dialogs;
procedure Register;
begin
RegisterComponents('Kernow Software FMX', [TksChatView]);
end;
{ TksChatView }
procedure TksChatView.AddChatBubble(AText: string; APosition: TksTableViewChatBubblePosition; AColor, ATextColor: TAlphaColor; const AUserImage: TBitmap);
var
AInfo: TksChatBubbleInfo;
AAllow: Boolean;
begin
AAllow := True;
AInfo.Text := AText;
AInfo.Color := AColor;
AInfo.TextColor := ATextColor;
if Assigned(FBeforePostText) then
FBeforePostText(Self, AInfo, AAllow);
if not AAllow then
Exit;
FTableView.Items.AddChatBubble(AInfo.Text, APosition, AInfo.Color, AInfo.TextColor, AUserImage);
FTableView.ScrollToItem(FTableView.Items.LastItem, True);
end;
procedure TksChatView.Clear;
begin
FTableView.ClearItems;
end;
procedure TksChatView.ClearEdit;
begin
FEdit.Edit.Text := '';
end;
procedure TksChatView.VirtualKeyboardChangeHandler(const Sender: TObject;
const Msg: System.Messaging.TMessage);
var
AKeyboardBounds: TRect;
begin
if TVKStateChangeMessage(Msg).KeyboardVisible then
begin
AKeyboardBounds := TVKStateChangeMessage(Msg).KeyboardBounds;
FSpacer.Height := AKeyboardBounds.Height - ((Root.GetObject as TCommonCustomForm).Height - FSpacer.AbsoluteRect.Bottom);
end
else
FSpacer.Height := 0;
end;
constructor TksChatView.Create(AOwner: TComponent);
var
VKToolbar: IFMXVirtualKeyboardToolbarService;
begin
inherited;
FTableView := nil;
FEdit := nil;
FSpacer := nil;
FMyImage := TBitmap.Create;
if not (csDesigning in ComponentState) then
begin
FTableView := TksTableView.Create(Self);
FEdit := TksChatViewEdit.Create(Self);
FSpacer := TLayout.Create(Self);
FTableView.Appearence.SeparatorColor := claNull;
FTableView.SelectionOptions.ShowSelection := False;
FTableView.Align := TAlignLayout.Client;
FSpacer.Align := TAlignLayout.MostBottom;
FSpacer.Height := 0;
{FTableView.Stored := False;
FEdit.Stored := False;
FSpacer.Stored := False; }
FEdit.Align := TAlignLayout.Bottom;
AddObject(FTableView);
AddObject(FEdit);
AddObject(FSpacer);
TMessageManager.DefaultManager.SubscribeToMessage(TVKStateChangeMessage, VirtualKeyboardChangeHandler);
// hide the done button
FShowDoneButton := False;
if TPlatformServices.Current.SupportsPlatformService(IFMXVirtualKeyboardToolbarService, IInterface(VKToolbar)) then
VKToolbar.SetToolbarEnabled(False);
end;
FEditVisible := True;
FButtonText := 'SEND';
Size.Width := 200;
Size.Height := 300;
end;
destructor TksChatView.Destroy;
begin
if not (csDesigning in ComponentState) then
begin
FTableView.DisposeOf;
FEdit.DisposeOf;
FSpacer.DisposeOf;
end;
FreeAndNil(FMyImage);
inherited;
end;
procedure TksChatView.DoSendButtonClick;
var
AInfo: TksChatBubbleInfo;
AAllow: Boolean;
begin
AAllow := True;
AInfo.Text := FEdit.FEdit.Text;
AInfo.Color := claDodgerblue;
AInfo.TextColor := claWhite;
if Assigned(FOnSendButtonClick) then
begin
FOnSendButtonClick(Self, AInfo, AAllow);
if AAllow = False then
Exit;
end;
AddChatBubble(AInfo.Text, ksCbpLeft, AInfo.Color, AInfo.TextColor, FMyImage);
FEdit.Edit.Text := '';
end;
procedure TksChatView.Paint;
var
AToolbarHeight: integer;
AEditRect: TRectF;
ABtnRect: TRectF;
AState: TCanvasSaveState;
begin
inherited;
AToolbarHeight := 40;
if (csDesigning in ComponentState) then
begin
AEditRect := RectF(8, Height-(AToolbarHeight-8), Width - 70, Height-8);
ABtnRect := RectF((Width-70)+8, Height-(AToolbarHeight-8), Width-8, Height-8);
AState := Canvas.SaveState;
try
Canvas.IntersectClipRect(RectF(0, 0, Width, Height));
Canvas.Fill.Color := claWhite;
Canvas.Fill.Kind := TBrushKind.Solid;
Canvas.FillRect(RectF(0, 0, Width, Height), 0, 0, AllCorners, 1);
if FEditVisible then
begin
Canvas.Fill.Color := claGainsboro;
Canvas.FillRect(RectF(0, Height-AToolbarHeight, Width, Height), 0, 0, AllCorners, 1);
end;
finally
Canvas.RestoreState(AState);
end;
if FEditVisible then
begin
AState := Canvas.SaveState;
try
Canvas.IntersectClipRect(AEditRect);
Canvas.Fill.Color := claWhite;
Canvas.FillRect(AEditRect, 0, 0, AllCorners, 1);
Canvas.Stroke.Color := claDimgray;
Canvas.Stroke.Kind := TBrushKind.Solid;
Canvas.DrawRect(AEditRect, 0, 0, AllCorners, 1);
finally
Canvas.RestoreState(AState);
end;
AState := Canvas.SaveState;
try
Canvas.IntersectClipRect(ABtnRect);
Canvas.Fill.Color := $FFEEEEEE;
Canvas.Stroke.Color := claDimgray;
Canvas.FillRect(ABtnRect, 0, 0, AllCorners, 1);
Canvas.DrawRect(ABtnRect, 0, 0, AllCorners, 1);
Canvas.Fill.Color := claBlack;
Canvas.FillText(ABtnRect, FButtonText, False, 1, [], TTextAlign.Center);
finally
Canvas.RestoreState(AState);
end;
end;
DrawDesignBorder(claBlack, claBlack);
end;
end;
procedure TksChatView.SetButtonText(const Value: string);
begin
if FButtonText <> Value then
begin
FButtonText := Value;
if FEdit <> nil then
FEdit.FSendButton.Text := Value;
Repaint;
end;
end;
procedure TksChatView.SetEditVisible(const Value: Boolean);
begin
if FEditVisible <> Value then
begin
FEditVisible := Value;
if FEdit <> nil then
FEdit.Visible := Value;
end;
end;
procedure TksChatView.SetMyImage(const Value: TBitmap);
begin
FMyImage.Assign(Value);
end;
procedure TksChatView.SetShowDoneButton(const Value: Boolean);
var
VKToolbar: IFMXVirtualKeyboardToolbarService;
begin
if FShowDoneButton <> Value then
begin
FShowDoneButton := Value;
if TPlatformServices.Current.SupportsPlatformService(IFMXVirtualKeyboardToolbarService, IInterface(VKToolbar)) then
VKToolbar.SetToolbarEnabled(FShowDoneButton);
end;
end;
{ procedure TksChatView.SetShowDoneButton(const Value: Boolean);
begin
FShowDoneButton := Value;
end;
TksChatViewEdit }
constructor TksChatViewEdit.Create(AOwner: TComponent);
begin
inherited;
FEdit := TEdit.Create(Self);
FSendButton := TButton.Create(Self);
FSendButton.CanFocus := False;
FSendButton.StaysPressed := False;
Padding.Rect := RectF(6, 6, 6, 6);
FSendButton.Align := TAlignLayout.Right;
FEdit.Align := TAlignLayout.Client;
FSendButton.Margins.Left := 8;
FSendButton.StyleLookup := 'listitembutton';
FSendButton.Text := 'SEND';
FEdit.Stored := False;
FSendButton.Stored := False;
AddObject(FSendButton);
AddObject(FEdit);
FSendButton.OnClick := SendButtonClick;
FEdit.OnEnter := EnterEdit;
FEdit.OnKeyDown := EditKeyDown;
end;
destructor TksChatViewEdit.Destroy;
begin
FEdit.DisposeOf;
FSendButton.DisposeOf;
inherited;
end;
procedure TksChatViewEdit.DoSendButtonClick;
begin
TksChatView(Parent).DoSendButtonClick;
end;
procedure TksChatViewEdit.EditKeyDown(Sender: TObject; var Key: Word; var KeyChar: Char; Shift: TShiftState);
begin
if (csDesigning in ComponentState) then
Exit;
if Key = 13 then
SendButtonClick(Self);
end;
procedure TksChatViewEdit.EnterEdit(Sender: TObject);
var
tv: TksTableView;
begin
if (csDesigning in ComponentState) then
Exit;
tv := TksChatView(Parent).FTableView;
tv.ScrollToItem(tv.Items.LastItem, True);
end;
procedure TksChatViewEdit.SendButtonClick(Sender: TObject);
begin
DoSendButtonClick;
end;
end.