WIP: Undo/Redo
This commit is contained in:
74
McBitFont/CanvasHistory.cs
Normal file
74
McBitFont/CanvasHistory.cs
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
|
||||||
|
namespace McBitFont {
|
||||||
|
internal class CanvasHistory {
|
||||||
|
private List<bool[,]> stack;
|
||||||
|
public int Depth { get; set; }
|
||||||
|
public int Index { get; set; }
|
||||||
|
public int Count {
|
||||||
|
get { return stack.Count; }
|
||||||
|
}
|
||||||
|
public int Redos {
|
||||||
|
get {
|
||||||
|
return Count - Index - 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public int Undos {
|
||||||
|
get {
|
||||||
|
return Index + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public CanvasHistory(int depth = 5, int index = -1) {
|
||||||
|
Depth = depth;
|
||||||
|
Index = index;
|
||||||
|
stack = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Clear() {
|
||||||
|
stack.Clear();
|
||||||
|
Index = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Add(bool[,] data, bool useIndex = true) {
|
||||||
|
if (Index < Count - 1) {
|
||||||
|
stack.RemoveRange(Index + 1, Count - Index - 1);
|
||||||
|
}
|
||||||
|
stack.Add(data);
|
||||||
|
if (useIndex) {
|
||||||
|
if (Count > Depth) stack.RemoveAt(0);
|
||||||
|
else Index++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ApplyAdded() {
|
||||||
|
if (Count > Depth)
|
||||||
|
while (Count > Depth) stack.RemoveAt(0);
|
||||||
|
else Index = Count - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Remove(bool useIndex = true) {
|
||||||
|
stack.RemoveAt(stack.Count - 1);
|
||||||
|
if (useIndex) Index--;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Undo(ref bool[,] data) {
|
||||||
|
if (Index < 0) return;
|
||||||
|
data = stack.ElementAt(Index);
|
||||||
|
Index--;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Redo(ref bool[,] data) {
|
||||||
|
if (Index >= Count - 1) return;
|
||||||
|
Index++;
|
||||||
|
data = stack.ElementAt(Index);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
48
McBitFont/Form1.Designer.cs
generated
48
McBitFont/Form1.Designer.cs
generated
@@ -57,6 +57,8 @@
|
|||||||
saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
redoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
prependSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
prependSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
@@ -83,6 +85,7 @@
|
|||||||
toolTip1 = new System.Windows.Forms.ToolTip(components);
|
toolTip1 = new System.Windows.Forms.ToolTip(components);
|
||||||
chkLeftSide = new System.Windows.Forms.CheckBox();
|
chkLeftSide = new System.Windows.Forms.CheckBox();
|
||||||
chkTopSide = new System.Windows.Forms.CheckBox();
|
chkTopSide = new System.Windows.Forms.CheckBox();
|
||||||
|
label3 = new System.Windows.Forms.Label();
|
||||||
((System.ComponentModel.ISupportInitialize)nudX).BeginInit();
|
((System.ComponentModel.ISupportInitialize)nudX).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)nudY).BeginInit();
|
((System.ComponentModel.ISupportInitialize)nudY).BeginInit();
|
||||||
panel1.SuspendLayout();
|
panel1.SuspendLayout();
|
||||||
@@ -469,17 +472,37 @@
|
|||||||
//
|
//
|
||||||
// editToolStripMenuItem
|
// editToolStripMenuItem
|
||||||
//
|
//
|
||||||
editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { copyToolStripMenuItem, pasteToolStripMenuItem, prependSymbolToolStripMenuItem, appendSymbolToolStripMenuItem, removeSymbolToolStripMenuItem, removeBeforeToolStripMenuItem, removeAfterToolStripMenuItem, applyToolStripMenuItem });
|
editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { undoToolStripMenuItem, redoToolStripMenuItem, copyToolStripMenuItem, pasteToolStripMenuItem, prependSymbolToolStripMenuItem, appendSymbolToolStripMenuItem, removeSymbolToolStripMenuItem, removeBeforeToolStripMenuItem, removeAfterToolStripMenuItem, applyToolStripMenuItem });
|
||||||
editToolStripMenuItem.Name = "editToolStripMenuItem";
|
editToolStripMenuItem.Name = "editToolStripMenuItem";
|
||||||
editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
|
editToolStripMenuItem.Size = new System.Drawing.Size(122, 20);
|
||||||
editToolStripMenuItem.Text = "Edit";
|
editToolStripMenuItem.Text = "Edit";
|
||||||
|
editToolStripMenuItem.DropDownOpening += editToolStripMenuItem_DropDownOpening;
|
||||||
|
//
|
||||||
|
// undoToolStripMenuItem
|
||||||
|
//
|
||||||
|
undoToolStripMenuItem.Image = Properties.Resources.arrow_undo;
|
||||||
|
undoToolStripMenuItem.Name = "undoToolStripMenuItem";
|
||||||
|
undoToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z;
|
||||||
|
undoToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
|
||||||
|
undoToolStripMenuItem.Text = "Undo";
|
||||||
|
undoToolStripMenuItem.ToolTipText = "Undo last canvas change";
|
||||||
|
undoToolStripMenuItem.Click += undoToolStripMenuItem_Click;
|
||||||
|
//
|
||||||
|
// redoToolStripMenuItem
|
||||||
|
//
|
||||||
|
redoToolStripMenuItem.Image = Properties.Resources.arrow_redo;
|
||||||
|
redoToolStripMenuItem.Name = "redoToolStripMenuItem";
|
||||||
|
redoToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y;
|
||||||
|
redoToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
|
||||||
|
redoToolStripMenuItem.Text = "Redo";
|
||||||
|
redoToolStripMenuItem.ToolTipText = "Redo canvas change";
|
||||||
//
|
//
|
||||||
// copyToolStripMenuItem
|
// copyToolStripMenuItem
|
||||||
//
|
//
|
||||||
copyToolStripMenuItem.Enabled = false;
|
copyToolStripMenuItem.Enabled = false;
|
||||||
copyToolStripMenuItem.Image = Properties.Resources.Famfamfam_Silk_Page_copy_16;
|
copyToolStripMenuItem.Image = Properties.Resources.Famfamfam_Silk_Page_copy_16;
|
||||||
copyToolStripMenuItem.Name = "copyToolStripMenuItem";
|
copyToolStripMenuItem.Name = "copyToolStripMenuItem";
|
||||||
copyToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+C";
|
copyToolStripMenuItem.ShortcutKeyDisplayString = "";
|
||||||
copyToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C;
|
copyToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C;
|
||||||
copyToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
|
copyToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
|
||||||
copyToolStripMenuItem.Text = "Copy";
|
copyToolStripMenuItem.Text = "Copy";
|
||||||
@@ -491,7 +514,7 @@
|
|||||||
pasteToolStripMenuItem.Enabled = false;
|
pasteToolStripMenuItem.Enabled = false;
|
||||||
pasteToolStripMenuItem.Image = Properties.Resources.Famfamfam_Silk_Page_paste_16;
|
pasteToolStripMenuItem.Image = Properties.Resources.Famfamfam_Silk_Page_paste_16;
|
||||||
pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
|
pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
|
||||||
pasteToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+V";
|
pasteToolStripMenuItem.ShortcutKeyDisplayString = "";
|
||||||
pasteToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V;
|
pasteToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V;
|
||||||
pasteToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
|
pasteToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
|
||||||
pasteToolStripMenuItem.Text = "Paste";
|
pasteToolStripMenuItem.Text = "Paste";
|
||||||
@@ -515,7 +538,7 @@
|
|||||||
appendSymbolToolStripMenuItem.Enabled = false;
|
appendSymbolToolStripMenuItem.Enabled = false;
|
||||||
appendSymbolToolStripMenuItem.Image = Properties.Resources.action_add;
|
appendSymbolToolStripMenuItem.Image = Properties.Resources.action_add;
|
||||||
appendSymbolToolStripMenuItem.Name = "appendSymbolToolStripMenuItem";
|
appendSymbolToolStripMenuItem.Name = "appendSymbolToolStripMenuItem";
|
||||||
appendSymbolToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+End";
|
appendSymbolToolStripMenuItem.ShortcutKeyDisplayString = "";
|
||||||
appendSymbolToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.End;
|
appendSymbolToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.End;
|
||||||
appendSymbolToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
|
appendSymbolToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
|
||||||
appendSymbolToolStripMenuItem.Text = "Append symbol";
|
appendSymbolToolStripMenuItem.Text = "Append symbol";
|
||||||
@@ -527,7 +550,7 @@
|
|||||||
removeSymbolToolStripMenuItem.Enabled = false;
|
removeSymbolToolStripMenuItem.Enabled = false;
|
||||||
removeSymbolToolStripMenuItem.Image = Properties.Resources.action_remove;
|
removeSymbolToolStripMenuItem.Image = Properties.Resources.action_remove;
|
||||||
removeSymbolToolStripMenuItem.Name = "removeSymbolToolStripMenuItem";
|
removeSymbolToolStripMenuItem.Name = "removeSymbolToolStripMenuItem";
|
||||||
removeSymbolToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+Del";
|
removeSymbolToolStripMenuItem.ShortcutKeyDisplayString = "";
|
||||||
removeSymbolToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Delete;
|
removeSymbolToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Delete;
|
||||||
removeSymbolToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
|
removeSymbolToolStripMenuItem.Size = new System.Drawing.Size(215, 22);
|
||||||
removeSymbolToolStripMenuItem.Text = "Remove symbol";
|
removeSymbolToolStripMenuItem.Text = "Remove symbol";
|
||||||
@@ -738,11 +761,21 @@
|
|||||||
toolTip1.SetToolTip(chkTopSide, "Height changes will be made on Top/Bottom side");
|
toolTip1.SetToolTip(chkTopSide, "Height changes will be made on Top/Bottom side");
|
||||||
chkTopSide.UseVisualStyleBackColor = true;
|
chkTopSide.UseVisualStyleBackColor = true;
|
||||||
//
|
//
|
||||||
|
// label3
|
||||||
|
//
|
||||||
|
label3.AutoSize = true;
|
||||||
|
label3.Location = new System.Drawing.Point(645, 78);
|
||||||
|
label3.Name = "label3";
|
||||||
|
label3.Size = new System.Drawing.Size(17, 15);
|
||||||
|
label3.TabIndex = 21;
|
||||||
|
label3.Text = "h:";
|
||||||
|
//
|
||||||
// MainForm
|
// MainForm
|
||||||
//
|
//
|
||||||
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||||
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
ClientSize = new System.Drawing.Size(915, 647);
|
ClientSize = new System.Drawing.Size(915, 647);
|
||||||
|
Controls.Add(label3);
|
||||||
Controls.Add(chkTopSide);
|
Controls.Add(chkTopSide);
|
||||||
Controls.Add(chkLeftSide);
|
Controls.Add(chkLeftSide);
|
||||||
Controls.Add(btnBaseline);
|
Controls.Add(btnBaseline);
|
||||||
@@ -841,6 +874,9 @@
|
|||||||
private System.Windows.Forms.ToolStripMenuItem removeBeforeToolStripMenuItem;
|
private System.Windows.Forms.ToolStripMenuItem removeBeforeToolStripMenuItem;
|
||||||
private System.Windows.Forms.ToolStripMenuItem removeAfterToolStripMenuItem;
|
private System.Windows.Forms.ToolStripMenuItem removeAfterToolStripMenuItem;
|
||||||
private System.Windows.Forms.ToolStripMenuItem makeVarWidthToolStripMenuItem;
|
private System.Windows.Forms.ToolStripMenuItem makeVarWidthToolStripMenuItem;
|
||||||
|
private System.Windows.Forms.Label label3;
|
||||||
|
private System.Windows.Forms.ToolStripMenuItem undoToolStripMenuItem;
|
||||||
|
private System.Windows.Forms.ToolStripMenuItem redoToolStripMenuItem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -48,6 +48,7 @@ namespace McBitFont {
|
|||||||
|
|
||||||
private FrameMiniature f;
|
private FrameMiniature f;
|
||||||
public List<FrameMiniature> frames = new List<FrameMiniature>();
|
public List<FrameMiniature> frames = new List<FrameMiniature>();
|
||||||
|
private CanvasHistory history = new();
|
||||||
private int cellSize = 10;
|
private int cellSize = 10;
|
||||||
public int dotWidth, dotHeight;
|
public int dotWidth, dotHeight;
|
||||||
private int pixelOffset = 5;
|
private int pixelOffset = 5;
|
||||||
@@ -277,7 +278,10 @@ namespace McBitFont {
|
|||||||
dotPanel.Refresh();
|
dotPanel.Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private bool mouseDown = false;
|
||||||
|
private bool fChanged = false;
|
||||||
private void dotPanel_MouseMove(object sender, MouseEventArgs e) {
|
private void dotPanel_MouseMove(object sender, MouseEventArgs e) {
|
||||||
|
// Moving baseline
|
||||||
Rectangle rect1, rect2;
|
Rectangle rect1, rect2;
|
||||||
if (set_base) {
|
if (set_base) {
|
||||||
|
|
||||||
@@ -299,15 +303,34 @@ namespace McBitFont {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (e.X >= w || e.X <= pixelOffset || e.Y >= h || e.Y <= pixelOffset) return;
|
if (e.X >= w || e.X <= pixelOffset || e.Y >= h || e.Y <= pixelOffset) return;
|
||||||
|
// Change coordinates in the panel
|
||||||
int i = (e.X - pixelOffset + hScroll.Value) / (cellSize + gap);
|
int i = (e.X - pixelOffset + hScroll.Value) / (cellSize + gap);
|
||||||
int j = (e.Y - pixelOffset + vScroll.Value) / (cellSize + gap);
|
int j = (e.Y - pixelOffset + vScroll.Value) / (cellSize + gap);
|
||||||
label5.Text = i.ToString() + ',' + j.ToString();
|
label5.Text = i.ToString() + ',' + j.ToString();
|
||||||
|
|
||||||
|
// history management
|
||||||
|
if (e.Button != MouseButtons.None && !mouseDown) {
|
||||||
|
mouseDown = true;
|
||||||
|
history.Add(f.data, false);
|
||||||
|
label3.Text += history.Count.ToString();
|
||||||
|
}
|
||||||
|
if (e.Button == MouseButtons.None && mouseDown) {
|
||||||
|
mouseDown = false;
|
||||||
|
if (!fChanged) {
|
||||||
|
history.Remove(false);
|
||||||
|
} else {
|
||||||
|
fChanged = false;
|
||||||
|
history.ApplyAdded();
|
||||||
|
}
|
||||||
|
label3.Text += history.Count.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Paint black / white
|
||||||
if (e.Button == MouseButtons.Left && !f.data[i, j]) {
|
if (e.Button == MouseButtons.Left && !f.data[i, j]) {
|
||||||
Graphics g = dotPanel.CreateGraphics();
|
|
||||||
SolidBrush sbb = new SolidBrush(Color.Black);
|
|
||||||
f.data[i, j] = true;
|
f.data[i, j] = true;
|
||||||
|
fChanged = true;
|
||||||
int x = pixelOffset + i * (cellSize + gap) - hScroll.Value;
|
int x = pixelOffset + i * (cellSize + gap) - hScroll.Value;
|
||||||
int y = pixelOffset + j * (cellSize + gap) - vScroll.Value;
|
int y = pixelOffset + j * (cellSize + gap) - vScroll.Value;
|
||||||
modified = true;
|
modified = true;
|
||||||
@@ -315,9 +338,8 @@ namespace McBitFont {
|
|||||||
dotPanel.Invalidate(rect1);
|
dotPanel.Invalidate(rect1);
|
||||||
}
|
}
|
||||||
if (e.Button == MouseButtons.Right && f.data[i, j]) {
|
if (e.Button == MouseButtons.Right && f.data[i, j]) {
|
||||||
Graphics g = dotPanel.CreateGraphics();
|
|
||||||
SolidBrush sbw = new SolidBrush(Color.White);
|
|
||||||
f.data[i, j] = false;
|
f.data[i, j] = false;
|
||||||
|
fChanged = true;
|
||||||
int x = pixelOffset + i * (cellSize + gap) - hScroll.Value;
|
int x = pixelOffset + i * (cellSize + gap) - hScroll.Value;
|
||||||
int y = pixelOffset + j * (cellSize + gap) - vScroll.Value;
|
int y = pixelOffset + j * (cellSize + gap) - vScroll.Value;
|
||||||
modified = true;
|
modified = true;
|
||||||
@@ -616,6 +638,10 @@ namespace McBitFont {
|
|||||||
return;
|
return;
|
||||||
//miniList.Items[0].Selected = true;
|
//miniList.Items[0].Selected = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Clear history
|
||||||
|
history.Clear();
|
||||||
|
|
||||||
var sel = miniList.SelectedItems[0];
|
var sel = miniList.SelectedItems[0];
|
||||||
int code = Convert.ToInt32(sel.ImageKey);
|
int code = Convert.ToInt32(sel.ImageKey);
|
||||||
FrameMiniature ff = copyFrame(frames.Find(x => x.code == code));
|
FrameMiniature ff = copyFrame(frames.Find(x => x.code == code));
|
||||||
@@ -874,5 +900,18 @@ namespace McBitFont {
|
|||||||
lblType.Text = "Variable width / Single";
|
lblType.Text = "Variable width / Single";
|
||||||
prjModified = true;
|
prjModified = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void editToolStripMenuItem_DropDownOpening(object sender, EventArgs e) {
|
||||||
|
undoToolStripMenuItem.Enabled = history.Undos > 0;
|
||||||
|
redoToolStripMenuItem.Enabled = history.Redos > 0;
|
||||||
|
|
||||||
|
undoToolStripMenuItem.Text = "Undo (" + history.Undos + ")";
|
||||||
|
redoToolStripMenuItem.Text = "Redo (" + history.Redos + ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
private void undoToolStripMenuItem_Click(object sender, EventArgs e) {
|
||||||
|
history.Undo(ref f.data);
|
||||||
|
dotPanel.Refresh();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -48,4 +48,28 @@
|
|||||||
<Install>false</Install>
|
<Install>false</Install>
|
||||||
</BootstrapperPackage>
|
</BootstrapperPackage>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Update="Properties\Resources.Designer.cs">
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Update="Properties\Settings.Designer.cs">
|
||||||
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Update="Properties\Resources.resx">
|
||||||
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Update="Properties\Settings.settings">
|
||||||
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
90
McBitFont/Properties/Resources.Designer.cs
generated
90
McBitFont/Properties/Resources.Designer.cs
generated
@@ -1,10 +1,10 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// Этот код создан программой.
|
// This code was generated by a tool.
|
||||||
// Исполняемая версия:4.0.30319.42000
|
// Runtime Version:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// повторной генерации кода.
|
// the code is regenerated.
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
@@ -13,12 +13,12 @@ namespace McBitFont.Properties {
|
|||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д.
|
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
// Этот класс создан автоматически классом StronglyTypedResourceBuilder
|
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
// с помощью такого средства, как ResGen или Visual Studio.
|
// class via a tool like ResGen or Visual Studio.
|
||||||
// Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
// с параметром /str или перестройте свой проект VS.
|
// with the /str option, or rebuild your VS project.
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
@@ -33,7 +33,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом.
|
/// Returns the cached ResourceManager instance used by this class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
@@ -47,8 +47,8 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Перезаписывает свойство CurrentUICulture текущего потока для всех
|
/// Overrides the current thread's CurrentUICulture property for all
|
||||||
/// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией.
|
/// resource lookups using this strongly typed resource class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
internal static global::System.Globalization.CultureInfo Culture {
|
internal static global::System.Globalization.CultureInfo Culture {
|
||||||
@@ -61,7 +61,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap action_add {
|
internal static System.Drawing.Bitmap action_add {
|
||||||
get {
|
get {
|
||||||
@@ -71,7 +71,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap action_check {
|
internal static System.Drawing.Bitmap action_check {
|
||||||
get {
|
get {
|
||||||
@@ -81,7 +81,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap action_remove {
|
internal static System.Drawing.Bitmap action_remove {
|
||||||
get {
|
get {
|
||||||
@@ -91,7 +91,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap arrow_back {
|
internal static System.Drawing.Bitmap arrow_back {
|
||||||
get {
|
get {
|
||||||
@@ -101,7 +101,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap arrow_down {
|
internal static System.Drawing.Bitmap arrow_down {
|
||||||
get {
|
get {
|
||||||
@@ -111,7 +111,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap arrow_next {
|
internal static System.Drawing.Bitmap arrow_next {
|
||||||
get {
|
get {
|
||||||
@@ -121,7 +121,17 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
internal static System.Drawing.Bitmap arrow_redo {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("arrow_redo", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap arrow_top {
|
internal static System.Drawing.Bitmap arrow_top {
|
||||||
get {
|
get {
|
||||||
@@ -131,7 +141,17 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
internal static System.Drawing.Bitmap arrow_undo {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("arrow_undo", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap Famfamfam_Silk_Disk_16 {
|
internal static System.Drawing.Bitmap Famfamfam_Silk_Disk_16 {
|
||||||
get {
|
get {
|
||||||
@@ -141,7 +161,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap Famfamfam_Silk_Door_out_16 {
|
internal static System.Drawing.Bitmap Famfamfam_Silk_Door_out_16 {
|
||||||
get {
|
get {
|
||||||
@@ -151,7 +171,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap Famfamfam_Silk_Folder_16 {
|
internal static System.Drawing.Bitmap Famfamfam_Silk_Folder_16 {
|
||||||
get {
|
get {
|
||||||
@@ -161,7 +181,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap Famfamfam_Silk_Folder_page_16 {
|
internal static System.Drawing.Bitmap Famfamfam_Silk_Folder_page_16 {
|
||||||
get {
|
get {
|
||||||
@@ -171,7 +191,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap Famfamfam_Silk_Page_copy_16 {
|
internal static System.Drawing.Bitmap Famfamfam_Silk_Page_copy_16 {
|
||||||
get {
|
get {
|
||||||
@@ -181,7 +201,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap Famfamfam_Silk_Page_paste_16 {
|
internal static System.Drawing.Bitmap Famfamfam_Silk_Page_paste_16 {
|
||||||
get {
|
get {
|
||||||
@@ -191,7 +211,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap Famfamfam_Silk_Page_white_16 {
|
internal static System.Drawing.Bitmap Famfamfam_Silk_Page_white_16 {
|
||||||
get {
|
get {
|
||||||
@@ -201,7 +221,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap Famfamfam_Silk_Shape_flip_horizontal_16 {
|
internal static System.Drawing.Bitmap Famfamfam_Silk_Shape_flip_horizontal_16 {
|
||||||
get {
|
get {
|
||||||
@@ -211,7 +231,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap Famfamfam_Silk_Shape_flip_vertical_16 {
|
internal static System.Drawing.Bitmap Famfamfam_Silk_Shape_flip_vertical_16 {
|
||||||
get {
|
get {
|
||||||
@@ -221,7 +241,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap file {
|
internal static System.Drawing.Bitmap file {
|
||||||
get {
|
get {
|
||||||
@@ -231,7 +251,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap folder_open {
|
internal static System.Drawing.Bitmap folder_open {
|
||||||
get {
|
get {
|
||||||
@@ -241,7 +261,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icon {
|
internal static System.Drawing.Bitmap icon {
|
||||||
get {
|
get {
|
||||||
@@ -251,7 +271,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icon_32 {
|
internal static System.Drawing.Bitmap icon_32 {
|
||||||
get {
|
get {
|
||||||
@@ -261,7 +281,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icon_64 {
|
internal static System.Drawing.Bitmap icon_64 {
|
||||||
get {
|
get {
|
||||||
@@ -271,7 +291,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap Ionic_Ionicons_Invert_mode_outline_16 {
|
internal static System.Drawing.Bitmap Ionic_Ionicons_Invert_mode_outline_16 {
|
||||||
get {
|
get {
|
||||||
@@ -281,7 +301,7 @@ namespace McBitFont.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap save {
|
internal static System.Drawing.Bitmap save {
|
||||||
get {
|
get {
|
||||||
|
@@ -118,6 +118,9 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
|
<data name="icon_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icon_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="Ionic-Ionicons-Invert-mode-outline.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Ionic-Ionicons-Invert-mode-outline.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Ionic-Ionicons-Invert-mode-outline.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Ionic-Ionicons-Invert-mode-outline.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -127,32 +130,32 @@
|
|||||||
<data name="Famfamfam-Silk-Page-copy.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Famfamfam-Silk-Page-copy.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Famfamfam-Silk-Page-copy.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Famfamfam-Silk-Page-copy.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Famfamfam-Silk-Disk.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="arrow_down" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Famfamfam-Silk-Disk.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\arrow_down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
|
||||||
<data name="arrow_back" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\arrow_back.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="action_check" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\action_check.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="Famfamfam-Silk-Page-white.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\Famfamfam-Silk-Page-white.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="arrow_back" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\arrow_back.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="Famfamfam-Silk-Page-white.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\Famfamfam-Silk-Page-white.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="save" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="save" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\save.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\save.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Famfamfam-Silk-Shape-flip-horizontal.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\Famfamfam-Silk-Shape-flip-horizontal.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="Famfamfam-Silk-Door-out.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Famfamfam-Silk-Door-out.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Famfamfam-Silk-Door-out.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Famfamfam-Silk-Door-out.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Famfamfam-Silk-Folder-page.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Famfamfam-Silk-Folder-page.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Famfamfam-Silk-Folder-page.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Famfamfam-Silk-Folder-page.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Famfamfam-Silk-Folder.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="action_remove" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Famfamfam-Silk-Folder.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\action_remove.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="action_add" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="action_add" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\action_add.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\action_add.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
@@ -160,31 +163,34 @@
|
|||||||
<data name="folder_open" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="folder_open" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\folder_open.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\folder_open.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Famfamfam-Silk-Disk.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\Famfamfam-Silk-Disk.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="Famfamfam-Silk-Page-paste.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Famfamfam-Silk-Page-paste.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Famfamfam-Silk-Page-paste.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Famfamfam-Silk-Page-paste.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="action_remove" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\action_remove.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="file" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="file" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\file.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\file.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="icon_64" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icon_64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="Famfamfam-Silk-Shape-flip-vertical.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Famfamfam-Silk-Shape-flip-vertical.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Famfamfam-Silk-Shape-flip-vertical.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Famfamfam-Silk-Shape-flip-vertical.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Famfamfam-Silk-Shape-flip-horizontal.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Famfamfam-Silk-Folder.16" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Famfamfam-Silk-Shape-flip-horizontal.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Famfamfam-Silk-Folder.16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="arrow_top" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="arrow_top" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\arrow_top.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\arrow_top.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="arrow_down" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="action_check" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\arrow_down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\action_check.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icon_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="arrow_redo" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icon_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\redo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icon_64" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="arrow_undo" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icon_64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\undo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
10
McBitFont/Properties/Settings.Designer.cs
generated
10
McBitFont/Properties/Settings.Designer.cs
generated
@@ -9,14 +9,14 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace McBitFont.Properties {
|
namespace McBitFont.Properties {
|
||||||
|
|
||||||
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.14.0.0")]
|
||||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||||
|
|
||||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||||
|
|
||||||
public static Settings Default {
|
public static Settings Default {
|
||||||
get {
|
get {
|
||||||
return defaultInstance;
|
return defaultInstance;
|
||||||
|
BIN
McBitFont/Resources/redo.png
Normal file
BIN
McBitFont/Resources/redo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 561 B |
BIN
McBitFont/Resources/undo.png
Normal file
BIN
McBitFont/Resources/undo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 566 B |
BIN
icons/redo.png
Normal file
BIN
icons/redo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 561 B |
BIN
icons/undo.png
Normal file
BIN
icons/undo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 566 B |
Reference in New Issue
Block a user