-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainForm.Designer.cs
156 lines (150 loc) · 7.36 KB
/
MainForm.Designer.cs
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
namespace TimeLogger
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.enabledToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.allowClosingWithoutSpecifyingCurrentActionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.enterCurrentActivityToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openLogFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.disableForSomeTimeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.askActivityTimer = new System.Windows.Forms.Timer(this.components);
this.enableTimer = new System.Windows.Forms.Timer(this.components);
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.enabledToolStripMenuItem,
this.allowClosingWithoutSpecifyingCurrentActionToolStripMenuItem,
this.enterCurrentActivityToolStripMenuItem,
this.openLogFileToolStripMenuItem,
this.disableForSomeTimeToolStripMenuItem,
this.settingsToolStripMenuItem,
this.exitToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(324, 158);
//
// enabledToolStripMenuItem
//
this.enabledToolStripMenuItem.Checked = true;
this.enabledToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.enabledToolStripMenuItem.Name = "enabledToolStripMenuItem";
this.enabledToolStripMenuItem.Size = new System.Drawing.Size(323, 22);
this.enabledToolStripMenuItem.Text = "Enabled";
this.enabledToolStripMenuItem.Click += new System.EventHandler(this.enabledToolStripMenuItem_Click);
//
// allowClosingWithoutSpecifyingCurrentActionToolStripMenuItem
//
this.allowClosingWithoutSpecifyingCurrentActionToolStripMenuItem.Name = "allowClosingWithoutSpecifyingCurrentActionToolStripMenuItem";
this.allowClosingWithoutSpecifyingCurrentActionToolStripMenuItem.Size = new System.Drawing.Size(323, 22);
this.allowClosingWithoutSpecifyingCurrentActionToolStripMenuItem.Text = "Allow closing without specifying current action";
this.allowClosingWithoutSpecifyingCurrentActionToolStripMenuItem.Click += new System.EventHandler(this.allowClosingWithoutSpecifyingCurrentActionToolStripMenuItem_Click);
//
// enterCurrentActivityToolStripMenuItem
//
this.enterCurrentActivityToolStripMenuItem.Name = "enterCurrentActivityToolStripMenuItem";
this.enterCurrentActivityToolStripMenuItem.Size = new System.Drawing.Size(323, 22);
this.enterCurrentActivityToolStripMenuItem.Text = "Enter current activity...";
this.enterCurrentActivityToolStripMenuItem.Click += new System.EventHandler(this.enterCurrentActivityToolStripMenuItem_Click);
//
// openLogFileToolStripMenuItem
//
this.openLogFileToolStripMenuItem.Name = "openLogFileToolStripMenuItem";
this.openLogFileToolStripMenuItem.Size = new System.Drawing.Size(323, 22);
this.openLogFileToolStripMenuItem.Text = "Open log file";
this.openLogFileToolStripMenuItem.Click += new System.EventHandler(this.openLogFileToolStripMenuItem_Click);
//
// disableForSomeTimeToolStripMenuItem
//
this.disableForSomeTimeToolStripMenuItem.Name = "disableForSomeTimeToolStripMenuItem";
this.disableForSomeTimeToolStripMenuItem.Size = new System.Drawing.Size(323, 22);
this.disableForSomeTimeToolStripMenuItem.Text = "Disable for some time...";
this.disableForSomeTimeToolStripMenuItem.Click += new System.EventHandler(this.disableForSomeTimeToolStripMenuItem_Click);
//
// settingsToolStripMenuItem
//
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(323, 22);
this.settingsToolStripMenuItem.Text = "Settings...";
this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(323, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// notifyIcon1
//
this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
this.notifyIcon1.Text = "Gosu Time Logger";
this.notifyIcon1.Visible = true;
this.notifyIcon1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseUp);
//
// askActivityTimer
//
this.askActivityTimer.Enabled = true;
this.askActivityTimer.Interval = 600000;
this.askActivityTimer.Tick += new System.EventHandler(this.askActivityTimer_Tick);
//
// enableTimer
//
this.enableTimer.Tick += new System.EventHandler(this.enableTimer_Tick);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(282, 259);
this.Name = "MainForm";
this.Text = "MainForm";
this.Load += new System.EventHandler(this.MainForm_Load);
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem enabledToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.NotifyIcon notifyIcon1;
private System.Windows.Forms.Timer askActivityTimer;
private System.Windows.Forms.ToolStripMenuItem enterCurrentActivityToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem allowClosingWithoutSpecifyingCurrentActionToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem openLogFileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem disableForSomeTimeToolStripMenuItem;
private System.Windows.Forms.Timer enableTimer;
}
}