-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathChatFMX.dpr
More file actions
62 lines (58 loc) · 4.15 KB
/
ChatFMX.dpr
File metadata and controls
62 lines (58 loc) · 4.15 KB
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
program ChatFMX;
{$R *.dres}
uses
System.StartUpCopy,
FMX.Forms,
{$IF CompilerVersion > 34.0}
FMX.ListBox in 'FMX.ListBox.pas',
{$ENDIF }
ChatFMX.Main in 'ChatFMX.Main.pas' {FormMain},
ChatFMX.Frame.Chat in 'ChatFMX.Frame.Chat.pas' {FrameChat: TFrame},
ChatFMX.DM.Res in 'ChatFMX.DM.Res.pas' {DataModuleRes: TDataModule},
ChatFMX.View.ChatItem in 'ChatFMX.View.ChatItem.pas',
ChatFMX.PreviewManager in 'ChatFMX.PreviewManager.pas',
ChatFMX.Utils in 'ChatFMX.Utils.pas',
ChatFMX.Frame.Message in 'ChatFMX.Frame.Message.pas' {FrameMessage: TFrame},
ChatFMX.Frame.Loading in 'ChatFMX.Frame.Loading.pas' {FrameLoading: TFrame},
ChatFMX.Frame.Attachment.Photo in 'ChatFMX.Frame.Attachment.Photo.pas' {FrameAttachmentPhoto: TFrame},
ChatFMX.Frame.Attachment.AudioMessage in 'ChatFMX.Frame.Attachment.AudioMessage.pas' {FrameAttachmentAudioMessage: TFrame},
ChatFMX.Frame.Attachment.Sticker in 'ChatFMX.Frame.Attachment.Sticker.pas' {FrameAttachmentSticker: TFrame},
ChatFMX.Frame.Attachment.Video in 'ChatFMX.Frame.Attachment.Video.pas' {FrameAttachmentVideo},
ChatFMX.Frame.MessageAction in 'ChatFMX.Frame.MessageAction.pas' {FrameMessageAction: TFrame},
ChatFMX.Frame.MessageDate in 'ChatFMX.Frame.MessageDate.pas' {FrameMessageDate: TFrame},
ChatFMX.Frame.Attachment.Audio in 'ChatFMX.Frame.Attachment.Audio.pas' {FrameAttachmentAudio},
ChatFMX.Frame.Attachment.Document in 'ChatFMX.Frame.Attachment.Document.pas' {FrameAttachmentDocument},
ChatFMX.Frame.Attachment.Geo in 'ChatFMX.Frame.Attachment.Geo.pas' {FrameAttachmentGeo},
ChatFMX.Frame.Attachment.ReplyMessage in 'ChatFMX.Frame.Attachment.ReplyMessage.pas' {FrameAttachmentReplyMessage: TFrame},
ChatFMX.Frame.Attachment.Gift in 'ChatFMX.Frame.Attachment.Gift.pas' {FrameAttachmentGift},
ChatFMX.Frame.Attachment.Message in 'ChatFMX.Frame.Attachment.Message.pas' {FrameAttachmentMessage: TFrame},
ChatFMX.Frame.Attachment.Messages in 'ChatFMX.Frame.Attachment.Messages.pas' {FrameAttachmentMessages},
ChatFMX.Frame.Attachment.Link in 'ChatFMX.Frame.Attachment.Link.pas' {FrameAttachmentLink: TFrame},
ChatFMX.Frame.Attachment.Wall in 'ChatFMX.Frame.Attachment.Wall.pas' {FrameAttachmentWall},
ChatFMX.Frame.Attachment.Call in 'ChatFMX.Frame.Attachment.Call.pas' {FrameAttachmentCall: TFrame},
ChatFMX.Frame.Attachment in 'ChatFMX.Frame.Attachment.pas' {FrameAttachment: TFrame},
ChatFMX.Frame.Attachment.WallFwd in 'ChatFMX.Frame.Attachment.WallFwd.pas' {FrameAttachmentWallFwd: TFrame},
ChatFMX.Frame.Attachment.Album in 'ChatFMX.Frame.Attachment.Album.pas' {FrameAttachmentAlbum},
ChatFMX.Frame.Attachment.Market in 'ChatFMX.Frame.Attachment.Market.pas' {FrameAttachmentMarket},
ChatFMX.Frame.Attachment.Money in 'ChatFMX.Frame.Attachment.Money.pas' {FrameAttachmentMoney},
ChatFMX.Frame.Window in 'ChatFMX.Frame.Window.pas' {FrameWindow: TFrame},
ChatFMX.Frame.Window.Photo in 'ChatFMX.Frame.Window.Photo.pas' {FrameWindowPhoto: TFrame},
ChatFMX.Frame.Attachment.Graffiti in 'ChatFMX.Frame.Attachment.Graffiti.pas' {FrameAttachmentGraffiti},
ChatFMX.Frame.Attachment.Poll in 'ChatFMX.Frame.Attachment.Poll.pas' {FrameAttachmentPoll: TFrame},
ChatFMX.Events in 'ChatFMX.Events.pas',
ChatFMX.Frame.Attachment.AudioPlaylist in 'ChatFMX.Frame.Attachment.AudioPlaylist.pas' {FrameAttachmentAudioPlaylist},
ChatFMX.Frame.Attachment.Keyboard in 'ChatFMX.Frame.Attachment.Keyboard.pas' {FrameAttachmentKeyboard: TFrame},
ChatFMX.Frame.Window.Geo in 'ChatFMX.Frame.Window.Geo.pas' {FrameWindowGeo: TFrame},
ChatFMX.Frame.Window.OpenLink in 'ChatFMX.Frame.Window.OpenLink.pas' {FrameWindowLink: TFrame},
ChatFMX.Frame.Attachment.PinnedMessage in 'ChatFMX.Frame.Attachment.PinnedMessage.pas' {FrameAttachmentPinnedMessage},
ChatFMX.Classes in 'ChatFMX.Classes.pas',
ChatFMX.Frame.Attachment.Story in 'ChatFMX.Frame.Attachment.Story.pas' {FrameAttachmentStory},
ChatFMX.Frame.Keyboard in 'ChatFMX.Frame.Keyboard.pas' {FrameKeyboard: TFrame},
ChatFMX.Frame.Message.Base in 'ChatFMX.Frame.Message.Base.pas' {FrameMessageBase: TFrame};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TFormMain, FormMain);
Application.CreateForm(TDataModuleRes, DataModuleRes);
Application.Run;
end.