ide/about: Updated version number; installer: added pictureRotateAlpha sample
[sdk] / ide / src / about.ec
1 #ifdef ECERE_STATIC
2 import static "ecere"
3 #else
4 import "ecere"
5 #endif
6
7 class AboutIDE : Window
8 {
9    nativeDecorations = true;
10    text = $"About the Ecere SDK";
11    borderStyle = fixed;
12    hasClose = true;
13    clientSize = { 440, 220 };
14
15    Label { this, text = "Ecere Software Development Kit   0.44", font = { $"Tahoma", 8.25f, bold = true }, position = { 16, 112 } };
16    Label { this, text = "Copyright (c) 1996-2012 Ecere Corporation", font = { $"Tahoma", 8.25f, bold = true }, position = { 16, 128 } };
17    Label { this, text = $"Design & Implementation", font = { $"Tahoma", 8.25f, bold = true }, position = { 16, 152 } };
18    Label { this, text = "Jérôme Jacovella-St-Louis", position = { 192, 152 } };
19    Label { this, text = $"Contributors", font = { $"Tahoma", 8.25f, bold = true }, position = { 16, 176 } };
20    Label { this, text = "Réjean Loyer, Joey Adams, Max Maton", position = { 124, 176 } };
21    //Label { this, text = "Joey Adams", position = { 192, 190 } };
22    //Label { this, text = "Max Maton", position = { 192, 204 } };
23
24    Picture picture { this, size = { 318, 94 }, anchor = { left = 64, vert = -52 }, image = { ":ecere.jpg", transparent = true } };
25    Button button 
26    {
27       this, text = $"OK", isDefault = true, size = { 80, 20 }, anchor = { horz = 167, bottom = 10 };
28
29       bool NotifyClicked(Button button, int x, int y, Modifiers mods)
30       {
31          Destroy(0);
32          return true;
33       }
34    };
35 }