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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
|
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;
using System.IO;
using static Histacom2.Engine.SaveSystem;
using static Histacom2.Engine.FileDialogBoxManager;
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()
{
NodePath = treeView1.Nodes[0].Text
}
};
if (File.Exists(Path.Combine(ProfileWindowsDirectory, "Application Data", "Microsoft", "Address Book", $"{ProfileName}.wab")))
LoadData();
else
SaveData();
}
private void treeView1_AfterSelect(object sender, TreeViewEventArgs e)
{
previousParent = treeView1.SelectedNode.Parent;
UpdateContactListFromNodeName(treeView1.SelectedNode);
// Remove the focus from contactsView
if (contactsView.SelectedItems.Count != 0)
contactsView.SelectedItems[0].Selected = false;
if (contactsView.FocusedItem != null)
contactsView.FocusedItem.Focused = false;
}
//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(TreeNode Node)
{
previousParent = Node.Parent;
contactsView.Items.Clear();
try
{
foreach (AddressBookContactList ContactList in AddressBookObjects)
{
if (ContactList.NodePath == FindNodePath(Node))
{
foreach (AddressBookContact contact in ContactList.Contacts)
{
if (contact.FirstName != null)
contactsView.Items.Add(contact.FirstName + " " + contact.MiddleName + " " + contact.LastName);
}
}
}
} catch
{
}
}
public void AddFolderToNode(TreeNode OldTreeNode, string NewNodeName)
{
if (OldTreeNode != null)
{
TreeNode nde = OldTreeNode.Nodes.Add(NewNodeName);
AddressBookObjects.Add(new AddressBookContactList
{
NodePath = FindNodePath(nde)
});
}
}
TreeNode previousParent;
public string FindNodePath(TreeNode nde)
{
if (nde != null)
{
string ret = nde.Text;
previousParent = nde.Parent;
while (previousParent != null)
ret = $"{FindNodePath(nde.Parent)}\\{ret}";
return ret;
}
else return "";
}
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.NodePath == FindNodePath(treeView1.SelectedNode))
{
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.NodePath == FindNodePath(treeView1.SelectedNode))
{
foreach (AddressBookContact Contact in ContactList.Contacts)
{
if (contactsView.FocusedItem == null)
{ // Most likely they are trying to view a whole folder!
wm.StartInfobox95("Properties of a folder", "You cannot view the properties of a contact folder.", InfoboxType.Warning, InfoboxButtons.OK);
}
else
{
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.NodePath == FindNodePath(treeView1.SelectedNode))
{
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()
{
try
{
foreach (AddressBookContactList ContactList in AddressBookObjects)
{
if (ContactList.NodePath == FindNodePath(treeView1.SelectedNode))
{
foreach (AddressBookContact Contact in ContactList.Contacts)
{
if (contactsView.FocusedItem == null)
{ // Most likely they are trying to delete a whole folder!
if (treeView1.SelectedNode.Text != "Shared Contacts")
if (treeView1.SelectedNode != null)
{
AddressBookObjects.Remove(ContactList);
treeView1.Nodes.Remove(treeView1.SelectedNode);
previousParent = null;
UpdateContactListFromNodeName(treeView1.Nodes[0]);
}
}
else
{
if ((Contact.FirstName + " " + Contact.MiddleName + " " + Contact.LastName) == contactsView.FocusedItem.Text)
{
ContactList.Contacts.Remove(Contact);
previousParent = treeView1.SelectedNode.Parent;
UpdateContactListFromNodeName(treeView1.SelectedNode);
}
}
}
}
}
} catch { }
}
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();
}
private void toolNew_Click(object sender, EventArgs e)
{
newContext.Show(MousePosition);
}
private void aboutAddressBookToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void WinClassicAddressBook_Load(object sender, EventArgs e)
{
((Form)this.TopLevelControl).FormClosed += (sender2, e2) =>
{
SaveData();
};
}
public void SaveData()
{
string toSave = Newtonsoft.Json.JsonConvert.SerializeObject(AddressBookObjects, Newtonsoft.Json.Formatting.Indented);
CreateWindowsFile(Path.Combine(ProfileWindowsDirectory, "Application Data", "Microsoft", "Address Book"), $"{ProfileName}.wab", toSave, 21, toSave.Length);
}
public void SaveDataAs()
{
try
{
string toSave = Newtonsoft.Json.JsonConvert.SerializeObject(AddressBookObjects, Newtonsoft.Json.Formatting.Indented);
ActivateSaveFileDialog(".wab");
string selectedPath = Program.OpenFileExplorerAsDialogAndReturnGivenPath();
DeactivateFileDialog();
if (selectedPath != "")
CreateWindowsFile(new FileInfo(selectedPath).Directory.FullName, selectedPath.Split('\\').Last(), toSave, 21, toSave.Length);
} catch { }
}
public void LoadData()
{
AddressBookObjects = Newtonsoft.Json.JsonConvert.DeserializeObject<List<AddressBookContactList>>(File.ReadAllText(Path.Combine(ProfileWindowsDirectory, "Application Data", "Microsoft", "Address Book", $"{ProfileName}.wab")));
foreach (AddressBookContactList lst in AddressBookObjects)
UpdateTreeView(lst);
}
public void LoadDataAs()
{
ActivateOpenFileDialog(".wab");
string selectedPath = Program.OpenFileExplorerAsDialogAndReturnGivenPath();
DeactivateFileDialog();
if (selectedPath != "")
AddressBookObjects = Newtonsoft.Json.JsonConvert.DeserializeObject<List<AddressBookContactList>>(File.ReadAllText(selectedPath));
foreach (AddressBookContactList lst in AddressBookObjects)
UpdateTreeView(lst);
}
TreeNode UpdatePrevParent;
public void UpdateTreeView(AddressBookContactList lst, int count = 0)
{
try
{
string[] parts = new string[] { "Shared Contacts" };
if (lst.NodePath != null)
parts = lst.NodePath.Split('\\');
if (count == 0) UpdatePrevParent = treeView1.Nodes[0];
if (lst.NodePath != FindNodePath(treeView1.Nodes[0]))
{
if (UpdatePrevParent.Nodes.ContainsKey(parts[count + 1]))
UpdatePrevParent.Nodes.RemoveByKey(parts[count + 1]);
TreeNode newNde = UpdatePrevParent.Nodes.Add(parts[count + 1], parts[count + 1]);
UpdatePrevParent = newNde;
if (count != parts.Length - 2) UpdateTreeView(lst, ++count);
}
} catch { }
}
private void importToolStripMenuItem_Click(object sender, EventArgs e)
{
LoadDataAs();
}
private void exportToolStripMenuItem_Click(object sender, EventArgs e)
{
SaveDataAs();
}
}
public class AddressBookContact
{
public string FirstName;
public string MiddleName;
public string LastName;
public List<string> Emails = new List<string>();
}
public class AddressBookContactList
{
public string NodePath;
public List<AddressBookContact> Contacts = new List<AddressBookContact>();
}
}
|