-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainFrm.cs
133 lines (117 loc) · 4.21 KB
/
MainFrm.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using System.Drawing.Text;
namespace FontVis
{
public struct LoadedFont
{
public Font Font { get; set; }
public FontFamily FontFamily { get; set; }
}
public partial class MainFrm : Form
{
public MainFrm()
{
InitializeComponent();
}
string currentFolder;
LoadedFont currentFont;
static LoadedFont LoadFont(FileInfo file, int fontSize, FontStyle fontStyle)
{
var fontCollection = new PrivateFontCollection();
fontCollection.AddFontFile(file.FullName);
if (fontCollection.Families.Length < 0)
{
throw new InvalidOperationException("No font familiy found when loading font");
}
var loadedFont = new LoadedFont();
loadedFont.FontFamily = fontCollection.Families[0];
loadedFont.Font = new Font(loadedFont.FontFamily, fontSize, fontStyle, GraphicsUnit.Pixel);
return loadedFont;
}
void loadByFile(string file)
{
currentFolder = dlgFolder.SelectedPath = Path.GetDirectoryName(file);
var fontList = new List<string>();
fontList.AddRange(Directory.GetFiles(currentFolder, "*.ttf", SearchOption.TopDirectoryOnly));
fontList.AddRange(Directory.GetFiles(currentFolder, "*.otf", SearchOption.TopDirectoryOnly));
fontsList.Items.Clear();
foreach (var f in fontList)
{
fontsList.Items.Add(Path.GetFileName(f));
}
fontsList.SelectedItem = Path.GetFileName(file);
loadCurrentFont();
}
void loadFontNames()
{
if (dlgFolder.ShowDialog() == DialogResult.OK)
{
currentFolder = dlgFolder.SelectedPath;
var fontList = new List<string>();
fontList.AddRange(Directory.GetFiles(currentFolder, "*.ttf", SearchOption.TopDirectoryOnly));
fontList.AddRange(Directory.GetFiles(currentFolder, "*.otf", SearchOption.TopDirectoryOnly));
fontsList.Items.Clear();
foreach (var f in fontList)
{
fontsList.Items.Add(Path.GetFileName(f));
}
}
}
void loadCurrentFont()
{
currentFont = LoadFont(new FileInfo(Path.Combine(currentFolder,
(string)fontsList.SelectedItem)), (int)numFontSz.Value,
(ckBold.Checked ? FontStyle.Bold : FontStyle.Regular) |
(ckItalic.Checked ? FontStyle.Italic : FontStyle.Regular));
txtTry.Font = currentFont.Font;
}
private void MainFrm_Shown(object sender, EventArgs e)
{
var args = Environment.GetCommandLineArgs();
if (args.Length > 1)
loadByFile(Path.GetFullPath(args[0]));
else
loadFontNames();
}
private void btnFolder_Click(object sender, EventArgs e)
{
loadFontNames();
}
private void fontsList_SelectedIndexChanged(object sender, EventArgs e)
{
loadCurrentFont();
}
private void numFontSz_ValueChanged(object sender, EventArgs e)
{
loadCurrentFont();
}
private void ckBold_CheckedChanged(object sender, EventArgs e)
{
loadCurrentFont();
}
private void ckItalic_CheckedChanged(object sender, EventArgs e)
{
loadCurrentFont();
}
private void contSample_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
e.Effect = DragDropEffects.Copy;
else
e.Effect = DragDropEffects.None;
}
private void contSample_DragDrop(object sender, DragEventArgs e)
{
loadByFile(Path.GetFullPath(((string[])e.Data.GetData(DataFormats.FileDrop))[0]));
}
}
}