-
Notifications
You must be signed in to change notification settings - Fork 0
/
InsertSmiley.cs
72 lines (67 loc) · 2.88 KB
/
InsertSmiley.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
//-----------------------------------------------------------------------
// <copyright file="InsertSmiley.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.Windows.Forms;
/// <summary>
/// InserSmilet plugin
/// </summary>
public class InsertSmiley : IPlugin.PluginBase
{
/// <summary>
/// Smiley chooser form.
/// </summary>
private FrmSmileyChooser chooser;
/// <summary>
/// Create the buttons for formatting in FrmNewNote.
/// </summary>
/// <returns>A array with buttons</returns>
public override Button[] InitNoteFormatBtns()
{
Button[] btns = new Button[1];
Button btnOpenChooser = new Button();
btnOpenChooser.Name = "smileychooser";
btnOpenChooser.Image = global::InsertSmiley.Properties.Resources.smiley_smile;
btnOpenChooser.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
btnOpenChooser.SetBounds(0, 0, 26, 22);
btnOpenChooser.FlatStyle = FlatStyle.Flat;
btnOpenChooser.UseCompatibleTextRendering = true;
btns[0] = btnOpenChooser;
return btns;
}
/// <summary>
/// Insert a smiley copy into a note.
/// (Carefull these smiley images are copies stored in notes, bad for filesize of notes.)
/// </summary>
/// <param name="rtbnote">The richedittextbox with the note content.</param>
/// <param name="btn">The button clicked.</param>
/// <returns>The new note content as RTF.</returns>
public override string NoteFormatBtnClicked(System.Windows.Forms.RichTextBox rtbnote, Button btn)
{
if (btn.Name.Equals("smileychooser", System.StringComparison.Ordinal))
{
int docend = rtbnote.Rtf.LastIndexOf(@"\par");
this.chooser = new FrmSmileyChooser(this.Host, Cursor.Position.X, Cursor.Position.Y, rtbnote, docend, rtbnote.Rtf);
this.chooser.Show();
}
return rtbnote.Rtf;
}
}
}