-
Notifications
You must be signed in to change notification settings - Fork 6
/
mmpDialogs.pas
73 lines (62 loc) · 2.85 KB
/
mmpDialogs.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
{ MMP: Minimalist Media Player
Copyright (C) 2021-2024 Baz Cuda
https://github.com/BazzaCuda/MinimalistMediaPlayerX
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
}
unit mmpDialogs;
interface
uses
vcl.controls, vcl.dialogs,
mmpNotify.notices, mmpNotify.notifier, mmpNotify.subscriber;
function mmpShowOKCancelMsgDlg(const aMsg: string;
const msgDlgType: TMsgDlgType = mtConfirmation;
const msgDlgButtons: TMsgDlgButtons = MBOKCANCEL;
const defButton: TMsgDlgBtn = MBCANCEL): TModalResult;
implementation
uses
winApi.activeX,
vcl.forms, vcl.stdCtrls,
mmpGlobalState;
function mmpShowOKCancelMsgDlg(const aMsg: string;
const msgDlgType: TMsgDlgType = mtConfirmation;
const msgDlgButtons: TMsgDlgButtons = MBOKCANCEL;
const defButton: TMsgDlgBtn = MBCANCEL): TModalResult;
// used for displaying the delete file/folder confirmation dialog
// We modify the standard dialog to make everything bigger, especially the width so that long folder names and files display properly
// The standard dialog would unhelpfully truncate them.#
var vControl: TControl;
begin
screen.cursor := crDefault;
coInitialize(NIL);
with createMessageDialog(aMsg, msgDlgType, msgDlgButtons, defButton) do
try
notifyApp(newNotice(evGSUserInput, TRUE));
font.name := 'Segoe UI';
font.size := 12;
height := height + 50;
width := width + 200;
for var i := 0 to controlCount - 1 do begin
case controls[i] is TLabel of TRUE: with controls[i] as TLabel do width := width + 200; end;
case controls[i] is TButton of TRUE: with controls[i] as TButton do begin
top := top + 60;
left := left + 100;
end;end;
end;
result := showModal;
finally
free;
notifyApp(newNotice(evGSUserInput, FALSE));
coUninitialize;
end;
end;
end.