-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdialogs.php
152 lines (114 loc) · 4.63 KB
/
dialogs.php
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
<?php
use Tkui\Dialogs\ColorDialog;
use Tkui\Dialogs\DirectoryDialog;
use Tkui\Dialogs\FontDialog;
use Tkui\Dialogs\OpenFileDialog;
use Tkui\Dialogs\SaveFileDialog;
use Tkui\Font;
use Tkui\Layouts\Pack;
use Tkui\Widgets\Buttons\Button;
use Tkui\Widgets\Label;
use Tkui\Widgets\LabelFrame;
require_once dirname(__FILE__) . '/DemoAppWindow.php';
$demo = new class extends DemoAppWindow
{
public function __construct()
{
parent::__construct('Dialogs demo');
$this->pack([
$this->createOpenDialogFrame(),
$this->createSaveDialogFrame(),
$this->createChooseDirectoryFrame(),
$this->createChooseColorFrame(),
$this->createChooseFontFrame(),
], [
'fill' => Pack::FILL_X, 'padx' => 4, 'pady' => 2,
]);
}
private function createOpenDialogFrame()
{
$f = new LabelFrame($this, 'Open file');
$b1 = new Button($f, 'Open ...');
$b2 = new Button($f, 'Open with filter...');
$f->pack([$b1, $b2], ['side' => Pack::SIDE_LEFT, 'padx' => 2, 'pady' => 2]);
$res = new Label($f, '');
$f->pack($res, ['side' => Pack::SIDE_RIGHT, 'fill' => Pack::FILL_X, 'expand' => true]);
$dlg1 = new OpenFileDialog($this, ['title' => 'Choose a file']);
$dlg1->onSuccess(fn ($file) => $res->text = $file);
$dlg1->onCancel(fn () => $res->text = 'Cancelled');
$dlg2 = new OpenFileDialog($this, ['title' => 'Choose a file']);
$dlg2->addFileType('PHP', '.php');
$dlg2->addFileType('Text files', '.txt');
$dlg2->addFileType('Pictures', ['.png', '.jpg', '.jpeg', '.gif', '.svg']);
$dlg2->addFileType('All files', '*');
$dlg2->onSuccess(fn ($file) => $res->text = $file);
$dlg2->onCancel(fn () => $res->text = 'Cancelled');
$b1->onClick([$dlg1, 'showModal']);
$b2->onClick([$dlg2, 'showModal']);
return $f;
}
private function createSaveDialogFrame()
{
$f = new LabelFrame($this, 'Save file');
$b = new Button($f, 'Save ...');
$f->pack($b, ['side' => Pack::SIDE_LEFT, 'padx' => 2, 'pady' => 2]);
$res = new Label($f, '');
$f->pack($res, ['side' => Pack::SIDE_RIGHT, 'fill' => Pack::FILL_X, 'expand' => true]);
$dlg = new SaveFileDialog($this, ['title' => 'Save the file']);
$dlg->initialFile = 'test.txt';
$dlg->onSuccess(fn ($file) => $res->text = $file);
$dlg->onCancel(fn () => $res->text = 'Cancelled');
$b->onClick([$dlg, 'showModal']);
return $f;
}
private function createChooseDirectoryFrame()
{
$f = new LabelFrame($this, 'Directory');
$b = new Button($f, 'Choose directory ...');
$f->pack($b, ['side' => Pack::SIDE_LEFT, 'padx' => 2, 'pady' => 2]);
$res = new Label($f, '');
$f->pack($res, ['side' => Pack::SIDE_RIGHT, 'fill' => Pack::FILL_X, 'expand' => true]);
$dlg = new DirectoryDialog($this, ['title' => 'Directory']);
$dlg->onSuccess(fn ($dir) => $res->text = $dir);
$dlg->onCancel(fn () => $res->text = 'Cancelled');
$b->onClick([$dlg, 'showModal']);
return $f;
}
private function createChooseColorFrame()
{
$f = new LabelFrame($this, 'Color');
$btnFg = new Button($f, 'Foreground');
$btnBg = new Button($f, 'Background');
$f->pack([$btnFg, $btnBg], [
'side' => Pack::SIDE_LEFT,
'padx' => 2,
'pady' => 2,
]);
$res = new Label($f, 'Color');
$f->pack($res, [
'side' => Pack::SIDE_RIGHT, 'fill' => Pack::FILL_X, 'expand' => true,
]);
$dlgFg = new ColorDialog($this);
$dlgFg->title = 'Foreground';
$dlgFg->onSuccess(fn ($color) => $res->foreground = $color);
$dlgBg = new ColorDialog($this);
$dlgBg->title = 'Background';
$dlgBg->onSuccess(fn ($color) => $res->background = $color);
$btnFg->onClick([$dlgFg, 'showModal']);
$btnBg->onClick([$dlgBg, 'showModal']);
return $f;
}
private function createChooseFontFrame()
{
$f = new LabelFrame($this, 'Font');
$b = new Button($f, 'Font');
$f->pack($b, ['side' => Pack::SIDE_LEFT, 'padx' => 2, 'pady' => 2]);
$res = new Label($f, 'Text Sample');
$f->pack($res, ['side' => Pack::SIDE_RIGHT, 'fill' => Pack::FILL_X, 'expand' => true]);
$dlg = new FontDialog($this, $this->app->getFontManager(), ['title' => 'Choose a font']);
$dlg->onSuccess(fn (Font $font) => $res->font = $font);
$b->onClick([$dlg, 'showModal']);
return $f;
}
};
$demo->run();