-
Notifications
You must be signed in to change notification settings - Fork 3
/
Twitter_Picture.pas
114 lines (96 loc) · 2.93 KB
/
Twitter_Picture.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
unit Twitter_Picture;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
StdCtrls;
type
{ TTwitterForm }
TTwitterForm = class(TForm)
I_Background: TImage;
L_Account_Name: TLabel;
L_Einsatzart_Langtext: TLabel;
L_Datum_Uhrzeit: TLabel;
L_Ort_Ortsteil: TLabel;
L_At_Account: TLabel;
L_Wachen_Einsatzmittel: TLabel;
L_Text_Einsatzort: TLabel;
L_Text_Einsatzgrund: TLabel;
L_Stichwort_Langtext: TLabel;
procedure FormCreate(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure L_Einsatzart_LangtextResize(Sender: TObject);
procedure L_Ort_OrtsteilResize(Sender: TObject);
procedure L_Stichwort_LangtextResize(Sender: TObject);
procedure L_Wachen_EinsatzmittelResize(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
TwitterForm: TTwitterForm;
implementation
{$R *.lfm}
{ TTwitterForm }
procedure TTwitterForm.FormShow(Sender: TObject);
begin
L_Wachen_Einsatzmittel.AdjustFontForOptimalFill;
L_Wachen_Einsatzmittel.AdjustSize;
L_Ort_Ortsteil.AdjustFontForOptimalFill;
L_Ort_Ortsteil.AdjustSize;
L_Stichwort_Langtext.AdjustFontForOptimalFill;
L_Stichwort_Langtext.AdjustSize;
L_Einsatzart_Langtext.AdjustFontForOptimalFill;
L_Einsatzart_Langtext.AdjustSize;
end;
procedure TTwitterForm.FormCreate(Sender: TObject);
var Dir, Slash: string;
begin
{$ifdef Windows}
Slash := '\';
{$else}
Slash := '/';
{$endif}
GetDir(0, Dir);
Dir := Dir + Slash + 'config';
// eigenen Twitter-Hintergrund laden, falls vorhanden
try
TwitterForm.I_Background.Picture.LoadFromFile(Dir + Slash + 'twitter_background.jpg');
except
end;
// Schriftart DejaVu Sans setzen, sofern vorhanden, sonst default
if Screen.Fonts.IndexOf('DejaVu Sans') <> -1 then
begin
L_Account_Name.Font.Name := 'DejaVu Sans';
L_Text_Einsatzort.Font.Name := 'DejaVu Sans';
L_Ort_Ortsteil.Font.Name := 'DejaVu Sans';
L_Text_Einsatzgrund.Font.Name := 'DejaVu Sans';
L_Einsatzart_Langtext.Font.Name := 'DejaVu Sans';
L_Stichwort_Langtext.Font.Name := 'DejaVu Sans';
L_Wachen_Einsatzmittel.Font.Name := 'DejaVu Sans';
L_Datum_Uhrzeit.Font.Name := 'DejaVu Sans';
L_At_Account.Font.Name := 'DejaVu Sans';
end;
end;
procedure TTwitterForm.L_Wachen_EinsatzmittelResize(Sender: TObject);
begin
L_Wachen_Einsatzmittel.AdjustFontForOptimalFill;
L_Wachen_Einsatzmittel.AdjustSize;
end;
procedure TTwitterForm.L_Ort_OrtsteilResize(Sender: TObject);
begin
L_Ort_Ortsteil.AdjustFontForOptimalFill;
L_Ort_Ortsteil.AdjustSize;
end;
procedure TTwitterForm.L_Stichwort_LangtextResize(Sender: TObject);
begin
L_Stichwort_Langtext.AdjustFontForOptimalFill;
L_Stichwort_Langtext.AdjustSize;
end;
procedure TTwitterForm.L_Einsatzart_LangtextResize(Sender: TObject);
begin
L_Einsatzart_Langtext.AdjustFontForOptimalFill;
L_Einsatzart_Langtext.AdjustSize;
end;
end.