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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Histacom2.Engine;
using Histacom2.Engine.Template;
namespace Histacom2.OS.Win95.Win95Apps
{
public partial class WinClassicAddressBook : UserControl
{
WindowManager wm = new WindowManager();
public List<AddressBookContactList> AddressBookObjects;
public WinClassicAddressBook()
{
InitializeComponent();
foreach (ToolStripMenuItem item in topmenu.Items)
{
item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0)));
item.BackColor = Color.Silver;
item.BackgroundImage = Properties.Resources.sliversilver;
item.BackgroundImageLayout = ImageLayout.Center;
item.DisplayStyle = ToolStripItemDisplayStyle.Text;
}
//Time to prepare to load all the fonts up for the combo boxes
//foreach (FontFamily font in System.Drawing.FontFamily.Families)
//{
// Added to the ComboBox here
//comboFont.Items.Add(font.Name);
//}
AddressBookObjects = new List<AddressBookContactList>
{
new AddressBookContactList()
{
AttachedNode = treeView1.Nodes[0].Text,
}
};
}
private void treeView1_AfterSelect(object sender, TreeViewEventArgs e)
{
UpdateContactListFromNodeName(treeView1.SelectedNode.Text);
}
//AddressBookContactList GetAddressBookContactListFromNode(string NodeText)
//{
// AddressBookContactList toReturn = new AddressBookContactList();
// foreach (AddressBookContactList lstitem in AddressBookObjects)
// {
// if (lstitem.AttachedNode == NodeText)
// {
// toReturn = lstitem;
// }
// }
// if (toReturn == null)
// {
// // Something has gone wrong!
// MessageBox.Show("Unable to find list of items");
// }
// MessageBox.Show("Gone through process!");
// return toReturn;
//}
public void UpdateContactListFromNodeName(string NodeName)
{
contactsView.Items.Clear();
try
{
foreach (AddressBookContactList ContactList in AddressBookObjects)
{
if (ContactList.AttachedNode == NodeName)
{
foreach (AddressBookContact contact in ContactList.Contacts)
{
if (contact != null)
{
if (contact.FirstName != null)
{
contactsView.Items.Add(contact.FirstName + " " + contact.MiddleName + " " + contact.LastName);
}
}
else
{
MessageBox.Show("Null contact!");
}
}
}
}
} catch
{
}
}
public void AddFolderToNode(TreeNode OldTreeNode, string NewNodeName)
{
if (OldTreeNode != null)
{
OldTreeNode.Nodes.Add(NewNodeName);
AddressBookObjects.Add(new AddressBookContactList
{
AttachedNode = NewNodeName,
});
}
}
private void newFolderToolStripMenuItem_Click(object sender, EventArgs e)
{
NewFolder();
}
void NewFolder()
{
FRMWinClassicAddressBookNewFolder abnf = new FRMWinClassicAddressBookNewFolder();
WinClassic app = wm.Init(abnf, "Address Book - New Folder", Properties.Resources.Win95IconWordpad, true, true, true);
if (treeView1.SelectedNode != null)
{
if (Program.AddressBookSelectedFolderName != null)
{
AddFolderToNode(treeView1.SelectedNode, Program.AddressBookSelectedFolderName);
}
else
{
wm.StartInfobox95("Address Book - New Folder", "You must enter a folder name!", InfoboxType.Error, InfoboxButtons.OK);
}
}
}
private void newContactToolStripMenuItem_Click(object sender, EventArgs e)
{
NewContact();
}
void NewContact()
{
FRMWinClassicAddressBookNewContact abnc = new FRMWinClassicAddressBookNewContact();
WinClassic app = wm.Init(abnc, "Address Book - New Contact", Properties.Resources.Win95IconWordpad, true, true, true);
if (treeView1.SelectedNode != null)
{
if (Program.AddressBookSelectedContact != null)
{
foreach (AddressBookContactList ContactList in AddressBookObjects)
{
if (ContactList.AttachedNode == treeView1.SelectedNode.Text)
{
ContactList.Contacts.Add(Program.AddressBookSelectedContact);
contactsView.Items.Add(Program.AddressBookSelectedContact.FirstName + " " + Program.AddressBookSelectedContact.MiddleName + " " + Program.AddressBookSelectedContact.LastName);
}
}
}
}
}
private void toolProp_Click(object sender, EventArgs e)
{
OpenProperties();
}
void OpenProperties()
{
FRMWinClassicAddressBookNewContact abnc = new FRMWinClassicAddressBookNewContact();
// Finds the selected contact
if (treeView1.SelectedNode != null)
{
foreach (AddressBookContactList ContactList in AddressBookObjects)
{
if (ContactList.AttachedNode == treeView1.SelectedNode.Text)
{
foreach (AddressBookContact Contact in ContactList.Contacts)
{
if ((Contact.FirstName + " " + Contact.MiddleName + " " + Contact.LastName) == contactsView.FocusedItem.Text)
{
abnc.toSet = Contact;
}
}
}
}
WinClassic app = wm.Init(abnc, "Address Book - Contact Properties", Properties.Resources.Win95IconWordpad, true, true, true);
if (treeView1.SelectedNode != null)
{
if (Program.AddressBookSelectedContact != null)
{
foreach (AddressBookContactList ContactList in AddressBookObjects)
{
if (ContactList.AttachedNode == treeView1.SelectedNode.Text)
{
foreach (AddressBookContact Contact in ContactList.Contacts)
{
if ((Contact.FirstName + " " + Contact.MiddleName + " " + Contact.LastName) == contactsView.FocusedItem.Text)
{
ContactList.Contacts.Remove(Contact);
ContactList.Contacts.Add(Program.AddressBookSelectedContact);
}
}
}
}
}
}
}
}
private void propertiesToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenProperties();
}
private void deleteToolStripMenuItem_Click(object sender, EventArgs e)
{
DeleteContact();
}
void DeleteContact()
{
if (treeView1.SelectedNode != null)
{
foreach (AddressBookContactList ContactList in AddressBookObjects)
{
if (ContactList.AttachedNode == treeView1.SelectedNode.Text)
{
foreach (AddressBookContact Contact in ContactList.Contacts)
{
if ((Contact.FirstName + " " + Contact.MiddleName + " " + Contact.LastName) == contactsView.FocusedItem.Text)
{
ContactList.Contacts.Remove(Contact);
}
}
}
}
}
}
private void toolDelete_Click(object sender, EventArgs e)
{
DeleteContact();
}
private void newContactToolStripMenuItem1_Click(object sender, EventArgs e)
{
NewContact();
}
private void newFolderToolStripMenuItem1_Click(object sender, EventArgs e)
{
NewFolder();
}
private void toolbarToolStripMenuItem_Click(object sender, EventArgs e)
{
toolbar.Visible = toolbarToolStripMenuItem.Checked;
}
private void foldersToolStripMenuItem_Click(object sender, EventArgs e)
{
treeView1.Visible = foldersToolStripMenuItem.Checked;
}
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
{
((Form)this.TopLevelControl).Close();
}
}
public class AddressBookContact
{
public string FirstName;
public string MiddleName;
public string LastName;
public List<string> Emails = new List<string>();
}
public class AddressBookContactList
{
public string AttachedNode;
public List<AddressBookContact> Contacts = new List<AddressBookContact>();
}
}
|