OpenCores
URL https://opencores.org/ocsvn/thor/thor/trunk

Subversion Repositories thor

[/] [thor/] [trunk/] [software/] [emuThor/] [source/] [About.h] - Blame information for rev 32

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 robfinch
#pragma once
2
 
3
namespace emuThor {
4
 
5
        using namespace System;
6
        using namespace System::ComponentModel;
7
        using namespace System::Collections;
8
        using namespace System::Windows::Forms;
9
        using namespace System::Data;
10
        using namespace System::Drawing;
11
 
12
        /// <summary>
13
        /// Summary for About
14
        /// </summary>
15
        public ref class About : public System::Windows::Forms::Form
16
        {
17
        public:
18
                About(void)
19
                {
20
                        InitializeComponent();
21
                        //
22
                        //TODO: Add the constructor code here
23
                        //
24
                }
25
 
26
        protected:
27
                /// <summary>
28
                /// Clean up any resources being used.
29
                /// </summary>
30
                ~About()
31
                {
32
                        if (components)
33
                        {
34
                                delete components;
35
                        }
36
                }
37
        private: System::Windows::Forms::Label^  label1;
38
        protected:
39
        private: System::Windows::Forms::Label^  label2;
40
        private: System::Windows::Forms::LinkLabel^  linkLabel1;
41
        private: System::Windows::Forms::Label^  label3;
42
        private: System::Windows::Forms::Label^  label4;
43
        private: System::Windows::Forms::Label^  label5;
44
 
45
        private:
46
                /// <summary>
47
                /// Required designer variable.
48
                /// </summary>
49
                System::ComponentModel::Container ^components;
50
 
51
#pragma region Windows Form Designer generated code
52
                /// <summary>
53
                /// Required method for Designer support - do not modify
54
                /// the contents of this method with the code editor.
55
                /// </summary>
56
                void InitializeComponent(void)
57
                {
58
                        System::ComponentModel::ComponentResourceManager^  resources = (gcnew System::ComponentModel::ComponentResourceManager(About::typeid));
59
                        this->label1 = (gcnew System::Windows::Forms::Label());
60
                        this->label2 = (gcnew System::Windows::Forms::Label());
61
                        this->linkLabel1 = (gcnew System::Windows::Forms::LinkLabel());
62
                        this->label3 = (gcnew System::Windows::Forms::Label());
63
                        this->label4 = (gcnew System::Windows::Forms::Label());
64
                        this->label5 = (gcnew System::Windows::Forms::Label());
65
                        this->SuspendLayout();
66
                        // 
67
                        // label1
68
                        // 
69
                        this->label1->AutoSize = true;
70 32 robfinch
                        this->label1->Location = System::Drawing::Point(74, 31);
71 30 robfinch
                        this->label1->Name = L"label1";
72
                        this->label1->Size = System::Drawing::Size(179, 13);
73
                        this->label1->TabIndex = 0;
74
                        this->label1->Text = L"emuThor Thor Test System Emulator";
75
                        // 
76
                        // label2
77
                        // 
78
                        this->label2->AutoSize = true;
79 32 robfinch
                        this->label2->Location = System::Drawing::Point(103, 57);
80 30 robfinch
                        this->label2->Name = L"label2";
81
                        this->label2->Size = System::Drawing::Size(111, 13);
82
                        this->label2->TabIndex = 1;
83
                        this->label2->Text = L"(C) 2016 Robert Finch";
84
                        // 
85
                        // linkLabel1
86
                        // 
87
                        this->linkLabel1->AutoSize = true;
88 32 robfinch
                        this->linkLabel1->Location = System::Drawing::Point(103, 83);
89 30 robfinch
                        this->linkLabel1->Name = L"linkLabel1";
90
                        this->linkLabel1->Size = System::Drawing::Size(111, 13);
91
                        this->linkLabel1->TabIndex = 2;
92
                        this->linkLabel1->TabStop = true;
93
                        this->linkLabel1->Text = L"http://www.finitron.ca";
94
                        // 
95
                        // label3
96
                        // 
97
                        this->label3->AutoSize = true;
98
                        this->label3->ForeColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(192)), static_cast<System::Int32>(static_cast<System::Byte>(64)),
99
                                static_cast<System::Int32>(static_cast<System::Byte>(0)));
100
                        this->label3->Location = System::Drawing::Point(12, 117);
101
                        this->label3->Name = L"label3";
102
                        this->label3->Size = System::Drawing::Size(180, 13);
103
                        this->label3->TabIndex = 3;
104
                        this->label3->Text = L"*Only partially complete and working.";
105
                        // 
106
                        // label4
107
                        // 
108
                        this->label4->AutoSize = true;
109
                        this->label4->Location = System::Drawing::Point(12, 141);
110
                        this->label4->Name = L"label4";
111 32 robfinch
                        this->label4->Size = System::Drawing::Size(347, 65);
112 30 robfinch
                        this->label4->TabIndex = 4;
113
                        this->label4->Text = resources->GetString(L"label4.Text");
114
                        // 
115
                        // label5
116
                        // 
117
                        this->label5->AutoSize = true;
118
                        this->label5->Location = System::Drawing::Point(12, 208);
119
                        this->label5->Name = L"label5";
120 32 robfinch
                        this->label5->Size = System::Drawing::Size(267, 78);
121 30 robfinch
                        this->label5->TabIndex = 5;
122 32 robfinch
                        this->label5->Text = resources->GetString(L"label5.Text");
123 30 robfinch
                        // 
124
                        // About
125
                        // 
126
                        this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
127
                        this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
128 32 robfinch
                        this->ClientSize = System::Drawing::Size(369, 321);
129 30 robfinch
                        this->Controls->Add(this->label5);
130
                        this->Controls->Add(this->label4);
131
                        this->Controls->Add(this->label3);
132
                        this->Controls->Add(this->linkLabel1);
133
                        this->Controls->Add(this->label2);
134
                        this->Controls->Add(this->label1);
135 32 robfinch
                        this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedDialog;
136 30 robfinch
                        this->MaximizeBox = false;
137
                        this->Name = L"About";
138
                        this->Text = L"About";
139
                        this->ResumeLayout(false);
140
                        this->PerformLayout();
141
 
142
                }
143
#pragma endregion
144
        };
145
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.