Initial git commit -- Transition from CodeGuard repository
[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    size = { 440, 240 };
13
14    Label { this, text = "Ecere Software Development Kit   0.44pre-2010-09-05", font = { "Tahoma", 8.25f, bold = true }, position = { 16, 112 } };
15    Label { this, text = "Copyright (c) 1996-2010 Ecere Corporation", font = { "Tahoma", 8.25f, bold = true }, position = { 16, 128 } };
16    Label { this, text = "Design & Implementation", font = { "Tahoma", 8.25f, bold = true }, position = { 16, 152 } };
17    Label { this, text = "Jérôme Jacovella-St-Louis", position = { 192, 152 } };
18    Label { this, text = "Contributors", font = { "Tahoma", 8.25f, bold = true }, position = { 16, 176 } };
19    Label { this, text = "Réjean Loyer, Joey Adams, Max Maton", position = { 124, 176 } };
20    //Label { this, text = "Joey Adams", position = { 192, 190 } };
21    //Label { this, text = "Max Maton", position = { 192, 204 } };
22
23    Picture picture { this, size = { 318, 94 }, anchor = { left = 64, vert = -52 }, image = { ":ecere.jpg", transparent = true } };
24    Button button 
25    {
26       this, text = "OK", isDefault = true, size = { 80, 20 }, anchor = { horz = 167, bottom = 10 };
27
28       bool NotifyClicked(Button button, int x, int y, Modifiers mods)
29       {
30          Destroy(0);
31          return true;
32       }
33    };
34 }