Skip to content
Navigation Menu
{{ message }}
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathNote.cs
More file actions
444 lines (386 loc) · 10.5 KB
/
Copy pathNote.cs
File metadata and controls
444 lines (386 loc) · 10.5 KB
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
435
436
437
438
439
440
441
442
443
444
//-----------------------------------------------------------------------
// <copyright file="Note.cs" company="NoteFly">
// NoteFly a note application.
// Copyright (C) 2010-2013 Tom
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// </copyright>
//-----------------------------------------------------------------------
namespace NoteFly
{
using System;
using System.IO;
/// <summary>
/// Note data class, holds setting note.
/// </summary>
public sealed class Note
{
#region Fields (14)
/// <summary>
/// The filename of this note.
/// </summary>
private string filename;
/// <summary>
/// The form of this note.
/// </summary>
private FrmNote frmnote;
/// <summary>
/// The height of the note.
/// </summary>
private int height;
/// <summary>
/// Is the note locked.
/// </summary>
private bool locked;
/// <summary>
/// Reference to notes class.
/// </summary>
private Notes notes;
/// <summary>
/// Is the note displayed ontop of all windows.
/// </summary>
private bool ontop;
/// <summary>
/// Is the note rolled up.
/// </summary>
private bool rolledUp;
/// <summary>
/// Is the note content word warped.
/// </summary>
private bool wordwarp;
/// <summary>
/// The note skin.
/// </summary>
private int skinNr;
/// <summary>
/// Temporary content.
/// </summary>
private string tempcontent;
/// <summary>
/// The note title.
/// </summary>
private string title;
/// <summary>
/// Visibility note.
/// </summary>
private bool visible;
/// <summary>
/// The width of the note.
/// </summary>
private int width;
/// <summary>
/// The X position of the note.
/// </summary>
private int x;
/// <summary>
/// The Y position of the note.
/// </summary>
private int y;
#endregion Fields
#region Constructors (1)
/// <summary>
/// Initializes a new instance of the Note class.
/// Completly new note.
/// </summary>
/// <param name="notes">Reference to notes.</param>
/// <param name="filename">The note filename.</param>
public Note(Notes notes, string filename)
{
this.notes = notes;
this.filename = filename;
}
#endregion Constructors
#region Properties (12)
/// <summary>
/// Gets or sets the filename of this note.
/// </summary>
public string Filename
{
get
{
return this.filename;
}
set
{
if (!string.IsNullOrEmpty(value))
{
this.filename = value;
}
else
{
throw new ApplicationException("Filename is null or empty.");
}
}
}
/// <summary>
/// Gets or sets the height of the note.
/// </summary>
public int Height
{
get
{
return this.height;
}
set
{
this.height = value;
}
}
/// <summary>
/// Gets or sets a value indicating whether the note is locked.
/// </summary>
public bool Locked
{
get
{
return this.locked;
}
set
{
this.locked = value;
}
}
/// <summary>
/// Gets or sets a value indicating whether the note displayed ontop of all windows.
/// </summary>
public bool Ontop
{
get
{
return this.ontop;
}
set
{
this.ontop = value;
}
}
/// <summary>
/// Gets or sets a value indicating whether the note rolled up.
/// </summary>
public bool RolledUp
{
get
{
return this.rolledUp;
}
set
{
this.rolledUp = value;
}
}
/// <summary>
/// Gets or sets a value indicating whether the note content words are warped.
/// </summary>
public bool Wordwarp
{
get
{
return this.wordwarp;
}
set
{
this.wordwarp = value;
}
}
/// <summary>
/// Gets or sets the note skin.
/// </summary>
public int SkinNr
{
get
{
return this.skinNr;
}
set
{
this.skinNr = value;
}
}
/// <summary>
/// Gets or sets temporary content note content store.
/// </summary>
public string Tempcontent
{
get
{
return this.tempcontent;
}
set
{
this.tempcontent = value;
}
}
/// <summary>
/// Gets or sets the note title.
/// </summary>
public string Title
{
get
{
return this.title;
}
set
{
this.title = value;
}
}
/// <summary>
/// Gets or sets a value indicating whether the note is visible.
/// </summary>
public bool Visible
{
get
{
return this.visible;
}
set
{
this.visible = value;
}
}
/// <summary>
/// Gets or sets the width of the note.
/// </summary>
public int Width
{
get
{
return this.width;
}
set
{
this.width = value;
}
}
/// <summary>
/// Gets or sets the X position of the note on the screen.
/// </summary>
public int X
{
get
{
return this.x;
}
set
{
this.x = value;
}
}
/// <summary>
/// Gets or sets the Y position of the note on the screen.
/// </summary>
public int Y
{
get
{
return this.y;
}
set
{
this.y = value;
}
}
#endregion Properties
#region Methods (5)
/// <summary>
/// Display this frmnote to the foreground.
/// </summary>
public void BringNoteToFront()
{
if (this.frmnote != null)
{
this.frmnote.BringToFront();
this.frmnote.Activate();
}
}
/// <summary>
/// Create a new frmNote with this note.
/// Visible is set to true.
/// </summary>
public void CreateForm()
{
if (this.frmnote != null)
{
this.frmnote.Show();
return;
}
this.frmnote = new FrmNote(this.notes, this);
this.visible = true;
this.frmnote.Show();
if (PluginsManager.EnabledPlugins != null)
{
for (int i = 0; i < PluginsManager.EnabledPlugins.Count; i++)
{
PluginsManager.EnabledPlugins[i].ShowingNote(this.tempcontent, this.title);
}
}
}
/// <summary>
/// Cleanup frmNote resources.
/// The note is made not visible to user and form isn't required anymore.
/// </summary>
public void DestroyForm()
{
if (this.frmnote != null)
{
this.frmnote.Close();
}
this.frmnote = null;
if (PluginsManager.EnabledPlugins != null)
{
for (int i = 0; i < PluginsManager.EnabledPlugins.Count; i++)
{
PluginsManager.EnabledPlugins[i].HidingNote(this.tempcontent, this.title);
}
}
GC.Collect();
}
/// <summary>
/// Gets the content of the note from the file.
/// </summary>
/// <returns>The rich text formatted note content</returns>
public string GetContent()
{
if (this.frmnote == null)
{
string notefilepath = Path.Combine(Settings.NotesSavepath, this.Filename);
if (File.Exists(notefilepath))
{
return xmlUtil.GetContentString(notefilepath, "content");
}
else
{
const string CANNOTREADNOTECONTENT = "Cannot read note content, note file not found: ";
throw new ApplicationException(CANNOTREADNOTECONTENT + notefilepath);
}
}
else
{
return this.frmnote.GetContentRTF;
}
}
/// <summary>
/// Update the form.
/// </summary>
public void UpdateNoteForm()
{
if (this.frmnote != null)
{
this.frmnote.UpdateForm(false);
this.frmnote.UpdateForm(true);
}
}
#endregion Methods
}
}
You can’t perform that action at this time.
