-
Notifications
You must be signed in to change notification settings - Fork 534
/
CommandButtons.cs
92 lines (79 loc) · 2.44 KB
/
CommandButtons.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;
namespace iSpyApplication
{
public partial class CommandButtons : Form
{
public CommandButtons()
{
InitializeComponent();
Resize += CommandButtonsResize;
}
void CommandButtonsResize(object sender, EventArgs e)
{
cb.Invalidate();
}
private void CommandButtons_Load(object sender, EventArgs e)
{
int maxx = 0, maxy = 0;
foreach (var btn in MainForm.RemoteCommands)
{
if (btn.inwindow)
{
var loc = btn.location.Split(',');
var sz = btn.size.Split('x');
var x = Convert.ToInt32(loc[0]);
var y = Convert.ToInt32(loc[1]);
var w = Convert.ToInt32(sz[0]);
var h = Convert.ToInt32(sz[1]);
if (x + w > maxx)
maxx = x + w + 20;
if (y + h > maxy)
maxy = y + h + 40;
}
}
if (Width < maxx)
Width = maxx;
if (Height < maxy)
Height = maxy;
}
private void addToolStripMenuItem_Click(object sender, EventArgs e)
{
cb.Add(p);
}
private void editToolStripMenuItem_Click(object sender, EventArgs e)
{
cb.Edit();
}
private void removeToolStripMenuItem_Click(object sender, EventArgs e)
{
cb.Remove();
}
private void contextMenuStrip1_Opening(object sender, CancelEventArgs e)
{
editToolStripMenuItem.Visible = removeToolStripMenuItem.Visible = repositionToolStripMenuItem.Visible = cb.CurButton != null;
}
private Point p;
private void cb_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
p = e.Location;
}
}
private void cb_MouseClick(object sender, MouseEventArgs e)
{
}
private void repositionToolStripMenuItem_Click(object sender, EventArgs e)
{
cb.Reposition();
}
}
}