-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathTrayIcon.cs
More file actions
419 lines (378 loc) · 17.2 KB
/
TrayIcon.cs
File metadata and controls
419 lines (378 loc) · 17.2 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
//-----------------------------------------------------------------------
// <copyright file="TrayIcon.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.Drawing;
using System.Windows.Forms;
/// <summary>
/// TrayIcon gui object class.
/// </summary>
public sealed class TrayIcon
{
/// <summary>
/// Reference to the FormManager class.
/// </summary>
private FormManager formmanager;
/// <summary>
/// Container that holds some objects.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Indicated wheter confirm exit is showed.
/// </summary>
private bool confirmexitshowed = false;
/// <summary>
/// The trayicon itself.
/// </summary>
private NotifyIcon icon;
/// <summary>
/// The trayicon contextmenu
/// </summary>
private ContextMenuStrip menuTrayIcon;
/// <summary>
/// New note menu option
/// </summary>
private ToolStripMenuItem menuNewNote;
/// <summary>
/// Create a new note from clipboard.
/// </summary>
private ToolStripMenuItem menuNewNoteClipboard;
/// <summary>
/// Manage notes menu option
/// </summary>
private ToolStripMenuItem menuManageNotes;
/// <summary>
/// Settings application menu option
/// </summary>
private ToolStripMenuItem menuSettings;
/// <summary>
/// Plugins menu option
/// </summary>
private ToolStripMenuItem menuPlugins;
/// <summary>
/// About menu option
/// </summary>
private ToolStripMenuItem menuAbout;
/// <summary>
/// Exit menu option
/// </summary>
private ToolStripMenuItem menuExit;
/// <summary>
/// Initializes a new instance of the TrayIcon class.
/// New trayicon in the systray.
/// </summary>
/// <param name="formmanager">Reference to FormManager class.</param>
public TrayIcon (FormManager formmanager)
{
this.formmanager = formmanager;
this.components = new System.ComponentModel.Container ();
// Start building icon and icon contextmenu
this.icon = new System.Windows.Forms.NotifyIcon (this.components);
this.menuTrayIcon = new System.Windows.Forms.ContextMenuStrip (this.components);
this.menuTrayIcon.Opening += new System.ComponentModel.CancelEventHandler (menuTrayIcon_Opening);
this.menuTrayIcon.AllowDrop = false;
this.menuTrayIcon.RightToLeft = (RightToLeft)Settings.FontTextdirection;
this.menuNewNote = new System.Windows.Forms.ToolStripMenuItem ();
this.menuNewNoteClipboard = new System.Windows.Forms.ToolStripMenuItem ();
this.menuManageNotes = new System.Windows.Forms.ToolStripMenuItem ();
this.menuPlugins = new System.Windows.Forms.ToolStripMenuItem ();
this.menuSettings = new System.Windows.Forms.ToolStripMenuItem ();
this.menuAbout = new System.Windows.Forms.ToolStripMenuItem ();
this.menuExit = new System.Windows.Forms.ToolStripMenuItem ();
this.icon.ContextMenuStrip = this.menuTrayIcon;
if (Program.CurrentOS == Program.OS.WINDOWS) {
if (Settings.TrayiconAlternateIcon) {
this.icon.Icon = new Icon (NoteFly.Properties.Resources.trayicon_white, NoteFly.Properties.Resources.trayicon_white.Size);
} else {
this.icon.Icon = new Icon (NoteFly.Properties.Resources.trayicon_yellow, NoteFly.Properties.Resources.trayicon_yellow.Size);
}
} else {
Bitmap bm = NoteFly.Properties.Resources.trayicon_yellow_altformat;
Icon trayicon = Icon.FromHandle(bm.GetHicon());
this.icon.Icon = trayicon;
}
this.icon.MouseClick += new MouseEventHandler(this.Icon_Click);
this.icon.Visible = true;
this.icon.Icon.InitializeLifetimeService();
this.icon.ContextMenuStrip.Name = "MenuTrayIcon";
this.icon.ContextMenuStrip.ShowImageMargin = false;
this.icon.ContextMenuStrip.Size = new System.Drawing.Size(145, 114);
FontStyle menufontstyle = FontStyle.Regular;
Font menufont;
try
{
menufont = new Font(Settings.FontTrayicon, Settings.TrayiconFontsize, menufontstyle);
}
catch (ArgumentException argexc)
{
Log.Write(LogType.exception, argexc.Message);
menufont = new Font("Arial", 10, menufontstyle);
}
// MenuNewNote
this.menuNewNote.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.menuNewNote.Name = "MenuNewNote";
this.menuNewNote.Size = new System.Drawing.Size(144, 22);
this.menuNewNote.Text = Strings.T("&New note");
if (Settings.TrayiconCreatenotebold)
{
menufontstyle = FontStyle.Bold;
}
this.menuNewNote.Font = new Font(menufont.FontFamily.Name, menufont.SizeInPoints, menufontstyle);
this.menuNewNote.Click += new System.EventHandler(this.MenuNewNote_Click);
this.icon.ContextMenuStrip.Items.Add(this.menuNewNote);
this.menuNewNoteClipboard.DisplayStyle = ToolStripItemDisplayStyle.Text;
try
{
this.menuNewNoteClipboard.Visible = Clipboard.ContainsText();
} catch (Exception)
{
// Accessing to clipboard causes crash on windows pincode login (issue #0000205)
}
this.menuNewNoteClipboard.Name = "MenuNewNoteClipboard";
this.menuNewNoteClipboard.Size = new Size(144, 22);
this.menuNewNoteClipboard.Text = Strings.T("&New note from clipboard");
this.menuNewNoteClipboard.Font = new Font(menufont.FontFamily.Name, menufont.SizeInPoints, FontStyle.Regular);
this.menuNewNoteClipboard.Click += new EventHandler(menuNewNoteClipboard_Click);
this.icon.ContextMenuStrip.Items.Add(this.menuNewNoteClipboard);
// MenuManageNotes
this.menuManageNotes.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.menuManageNotes.Name = "listToolStripMenuItem";
this.menuManageNotes.Size = new System.Drawing.Size(144, 22);
this.menuManageNotes.Text = Strings.T("&Manage notes");
if (Settings.TrayiconManagenotesbold)
{
menufontstyle = FontStyle.Bold;
}
else
{
menufontstyle = FontStyle.Regular;
}
this.menuManageNotes.Font = new Font(menufont.FontFamily.Name, menufont.SizeInPoints, menufontstyle);
this.menuManageNotes.Click += new System.EventHandler(this.MenuManageNotes_Click);
this.icon.ContextMenuStrip.Items.Add(this.menuManageNotes);
// MenuSettings
this.menuSettings.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.menuSettings.Name = "MenuSettings";
this.menuSettings.Size = new System.Drawing.Size(144, 22);
this.menuSettings.Text = Strings.T("&Settings");
if (Settings.TrayiconSettingsbold)
{
menufontstyle = FontStyle.Bold;
}
else
{
menufontstyle = FontStyle.Regular;
}
this.menuSettings.Font = new Font(menufont.FontFamily.Name, menufont.SizeInPoints, menufontstyle);
this.menuSettings.Click += new System.EventHandler(this.MenuSettings_Click);
this.icon.ContextMenuStrip.Items.Add(this.menuSettings);
// menuPlugins
this.menuPlugins.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.menuPlugins.Name = "MenuPlugins";
this.menuPlugins.Size = new System.Drawing.Size(144, 22);
this.menuPlugins.Text = Strings.T("&Plugins");
this.menuPlugins.Font = new Font(menufont.FontFamily.Name, menufont.SizeInPoints, FontStyle.Regular);
this.menuPlugins.Click += new System.EventHandler(this.MenuPlugins_Click);
this.icon.ContextMenuStrip.Items.Add(this.menuPlugins);
// Create trayicon plugin ToolStripMenuItem items, if any.
if (PluginsManager.EnabledPlugins != null)
{
for (int p = 0; p < PluginsManager.EnabledPlugins.Count; p++)
{
if (PluginsManager.EnabledPlugins[p].InitTrayIconMenu() != null)
{
ToolStripItem toolstripitem = PluginsManager.EnabledPlugins[p].InitTrayIconMenu();
toolstripitem.Size = new System.Drawing.Size(144, 22);
toolstripitem.Font = new Font(menufont.FontFamily.Name, menufont.SizeInPoints, FontStyle.Regular);
this.icon.ContextMenuStrip.Items.Add(toolstripitem);
}
}
}
// MenuAbout
this.menuAbout.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.menuAbout.Name = "MenuAbout";
this.menuAbout.Size = new System.Drawing.Size(144, 22);
this.menuAbout.Text = Strings.T("About");
this.menuAbout.Font = new Font(menufont.FontFamily.Name, menufont.SizeInPoints, FontStyle.Regular);
this.menuAbout.Click += new System.EventHandler(this.MenuAbout_Click);
this.icon.ContextMenuStrip.Items.Add(this.menuAbout);
// MenuExit
this.menuExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.menuExit.Name = "MenuExit";
this.menuExit.Size = new System.Drawing.Size(144, 22);
this.menuExit.Text = Strings.T("E&xit");
if (Settings.TrayiconExitbold)
{
menufontstyle = FontStyle.Bold;
}
else
{
menufontstyle = FontStyle.Regular;
}
this.menuExit.Font = new Font(menufont.FontFamily.Name, menufont.SizeInPoints, menufontstyle);
this.menuExit.Click += new System.EventHandler(this.MenuExit_Click);
this.icon.ContextMenuStrip.Items.Add(this.menuExit);
// Show balloontip on firstrun about trayicon how to access notefly functions.
if (!Settings.ProgramFirstrunned)
{
string trayicon_trayiconaccesshint = Strings.T("You can access {0} functions with this trayicon.", Program.AssemblyTitle);
this.icon.ShowBalloonTip(6000, Program.AssemblyTitle, trayicon_trayiconaccesshint, ToolTipIcon.Info);
}
}
/// <summary>
/// Destroy NotifyIcon with ContextMenuStrip and ToolStripMenuItems etc.
/// </summary>
public void Dispose()
{
this.icon.Visible = false; // Mono needs Visible set to false otherwise it keeps showing the trayicon.
this.components.Dispose();
}
/// <summary>
/// There is left clicked on the icon.
/// If actionleftclick is 0 do nothing.
/// If actionleftclick is 1 actived all notes.
/// If actionleftclick is 2 create a new note.
/// </summary>
/// <param name="sender">Sender object</param>
/// <param name="e">Event arguments</param>
private void Icon_Click(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
if (Settings.TrayiconLeftclickaction == 1)
{
this.formmanager.BringToFrontNotes();
}
else if (Settings.TrayiconLeftclickaction == 2)
{
this.formmanager.OpenNewNote(false);
}
}
}
/// <summary>
/// Trayicon menu is being openened.
/// </summary>
/// <param name="sender">Sender object</param>
/// <param name="e">Event arguments</param>
private void menuTrayIcon_Opening(object sender, System.ComponentModel.CancelEventArgs e)
{
try
{
this.menuNewNoteClipboard.Visible = Clipboard.ContainsText();
}
catch (Exception ex)
{
// Accessing to clipboard causes crash on pincode windows login (issue #0000205)
}
}
/// <summary>
/// Open new note window with content set from clipboard text.
/// </summary>
/// <param name="sender">Sender object</param>
/// <param name="e">Event arguments</param>
private void menuNewNoteClipboard_Click(object sender, EventArgs e)
{
this.formmanager.OpenNewNote(true);
}
/// <summary>
/// Open new note window.
/// </summary>
/// <param name="sender">Sender object</param>
/// <param name="e">Event argument</param>
private void MenuNewNote_Click(object sender, EventArgs e)
{
this.formmanager.OpenNewNote(false);
}
/// <summary>
/// Open manage notes window.
/// </summary>
/// <param name="sender">Sender object</param>
/// <param name="e">Event argument</param>
private void MenuManageNotes_Click(object sender, EventArgs e)
{
this.formmanager.OpenFrmManageNotes();
}
/// <summary>
/// Open settings window.
/// </summary>
/// <param name="sender">Sender object</param>
/// <param name="e">Event argument</param>
private void MenuSettings_Click(object sender, EventArgs e)
{
this.formmanager.OpenFrmSettings();
}
/// <summary>
/// Open plugins window.
/// </summary>
/// <param name="sender">Sender object</param>
/// <param name="e">Event argument</param>
private void MenuPlugins_Click(object sender, EventArgs e)
{
this.formmanager.OpenFrmPlugins();
}
/// <summary>
/// Open about window.
/// </summary>
/// <param name="sender">Sender object</param>
/// <param name="e">Event argument</param>
private void MenuAbout_Click(object sender, EventArgs e)
{
this.formmanager.OpenFrmAbout();
}
/// <summary>
/// User request to shutdown application.
/// Check if confirm box is needed.
/// If confirm box is still open and menuExit_Click event is fired then shutdown application anyway.
/// </summary>
/// <param name="sender">Sender object</param>
/// <param name="e">Event argument</param>
private void MenuExit_Click(object sender, EventArgs e)
{
string trayicon_sureexittitle = Strings.T("confirm exit");
if (Settings.ConfirmExit)
{
// Two times exit in contextmenu systray icon will always exit.
if (!this.confirmexitshowed)
{
this.confirmexitshowed = true;
string trayicon_sureexit = Strings.T("Are sure you want to exit {0}?", Program.AssemblyTitle);
DialogResult resdlgconfirmexit = MessageBox.Show(trayicon_sureexit, trayicon_sureexittitle, MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (resdlgconfirmexit == DialogResult.No)
{
this.confirmexitshowed = false;
return;
}
}
}
if (this.formmanager.Frmneweditnoteopen)
{
string trayicon_notestillopen = Strings.T("A note is still open for editing.\nAre you sure you want to shutdown {0}?", Program.AssemblyTitle);
DialogResult resdlg = MessageBox.Show(trayicon_notestillopen, trayicon_sureexittitle, MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation);
if (resdlg == DialogResult.No)
{
return;
}
}
this.components.Dispose();
Application.Exit();
}
}
}