-
Notifications
You must be signed in to change notification settings - Fork 0
/
FrmSmileyChooser.cs
122 lines (114 loc) · 4.32 KB
/
FrmSmileyChooser.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
//-----------------------------------------------------------------------
// <copyright file="FrmSmileyChooser.cs" company="InsertSmiley">
// NoteFly a note application.
// Copyright (C) 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 InsertSmiley
{
using System;
using System.Drawing;
using System.Windows.Forms;
using IPlugin;
public partial class FrmSmileyChooser : Form
{
/// <summary>
/// Interface
/// </summary>
private IPluginHost host;
/// <summary>
/// The current RTF stream.
/// </summary>
//private string rtf;
/// <summary>
/// The position where to add RTF.
/// </summary>
private int insertposition = int.MaxValue;
/// <summary>
/// Pointer to richformattextbox
/// </summary>
private RichTextBox rtb;
/// <summary>
/// Creating a new instance of FrmSmileyChooser class.
/// </summary>
/// <param name="x">X coordinate of mouse click.</param>
/// <param name="y">Y coordinate of mouse click.</param>
/// <param name="rtb">The RicheditTextbox control.</param>
/// <param name="insertposition">The position where to add RTF.</param>
/// <param name="rtf">The current RTF stream.</param>
public FrmSmileyChooser(IPluginHost host, int x, int y, RichTextBox rtb, int insertposition, string rtf)
{
this.host = host;
//this.rtf = rtf;
this.rtb = rtb;
//this.insertposition = insertposition;
InitializeComponent();
if (x > (this.Width / 2) && y > (this.Height / 2))
{
this.btnSmileySmile.Select();
if ((x > (Screen.PrimaryScreen.WorkingArea.Width - (this.Width / 2))) || (y > (Screen.PrimaryScreen.WorkingArea.Height - (this.Height / 2))))
{
this.Location = new Point(x - this.Width, y - this.Height);
}
else
{
this.Location = new Point(x - (this.Width / 2), y - (this.Height / 2));
}
}
else
{
this.Location = new Point(x, y);
}
}
/// <summary>
/// Insert the image to the richtextbox, by pasting it.
/// </summary>
/// <param name="rtb"></param>
/// <param name="img"></param>
private void InsertImageRtb(Image img) {
IDataObject oldclipboarddata = Clipboard.GetDataObject();
Clipboard.Clear();
Clipboard.SetImage(img);
this.rtb.Paste();
Clipboard.Clear();
Clipboard.SetDataObject(oldclipboarddata);
}
/// <summary>
/// An smiley image is choicen add the smiley image to the RTF stream of the RicheditTextBox.
/// </summary>
/// <param name="sender">Sender object</param>
/// <param name="e">Event arguments</param>
private void btnSmileyChoice_Click(object sender, EventArgs e)
{
Button btnsmiley = (Button)sender;
Image smiley = btnsmiley.Image;
if (smiley != null)
{
this.InsertImageRtb(smiley);
this.Close();
}
}
/// <summary>
/// The FrmSmileyChooser lost focus, e.g. click beside it. Close the window.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void FrmSmileyChooser_Deactivate(object sender, EventArgs e)
{
this.Close();
}
}
}