-
Notifications
You must be signed in to change notification settings - Fork 1
/
FilesListBox.cs
514 lines (473 loc) · 16.6 KB
/
FilesListBox.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.ComponentModel;
using System.Collections;
using System.Drawing;
using System.Runtime.InteropServices;
namespace FilesBrowser
{
/// <summary>
/// Represents a ListBox control with file names as items.
/// </summary>
[Description("Display a list of files that the user can select from"),
DefaultProperty("DirectoryName"),
DefaultEvent("FileSelected")]
public class FilesListBox : ListBox
{
#region Events
/// <summary>
/// Occures whenever a file is selected by a double click on the control.
/// </summary>
[Description("Occures whenever a file is selected by a double click on the control"),
Category("Action")]
public event FileSelectedEventHandler FileSelected;
#endregion
#region Properties
string _selectedPath = "C:\\";
/// <summary>
/// Gets or sets the directory name that the files should relate to
/// </summary>
[Description("Gets or sets the directory name that the files should relate to"),
DefaultValue("C:\\"), Category("Data")]
public string SelectedPath
{
get { return _selectedPath; }
set
{
if (_selectedPath != string.Empty)
{
_selectedPath = value;
PopulatingItems();
}
}
}
private string _Extension = ".rap";
public string Extension
{
get
{
return _Extension;
}
set
{
_Extension = value.ToLower();
PopulatingItems();
}
}
bool _showDirectories = false;
/// <summary>
/// Gets or sets a value indicating wheater to show directories on the control
/// </summary>
[Description("Gets or sets a value indicating wheater to show directories on the control"),
DefaultValue(false), Category("Behavior")]
public bool ShowDirectories
{
get { return _showDirectories; }
set
{
_showDirectories = value;
PopulatingItems();
}
}
bool _showBackIcon = false;
/// <summary>
/// Gets or sets a value indicating wheater to show the back directory icon
/// on the control (when the IsToShowDirectories property is true)
/// </summary>
[Description("Gets or sets a value indicating whether to show the back directory icon on the control (when the IsToShowDirectories property is true)"),
DefaultValue(false), Category("Behavior")]
public bool ShowBackIcon
{
get { return _showBackIcon; }
set
{
_showBackIcon = value;
PopulatingItems();
}
}
/// <summary>
/// Gets an array containting the currently selected files (without directories)
/// in the FilesListBox.
/// </summary>
[Browsable(false)]
public string[] SelectedFiles
{
get
{
ArrayList selectedFiles = new ArrayList();
foreach (object file in SelectedItems)
{
string selectedFile = GetFullName(file.ToString());
// .. ---> go back one level
if (selectedFile.EndsWith(".."))
{
continue;
}
// only files should be selected
else if (File.Exists(selectedFile))
{
selectedFiles.Add(selectedFile);
}
}
return selectedFiles.ToArray(typeof(string)) as string[];
}
}
/// <summary>
/// Gets the currently selected file in the FilesListBox
/// </summary>
[Browsable(false)]
public string SelectedFile
{
get
{
string[] selectedFiles = SelectedFiles;
if (selectedFiles.Length > 0)
return selectedFiles[0];
else
return null;
}
}
private IconSize _fileIconSize = IconSize.Small;
/// <summary>
/// Gets or sets the icon size, this value also sets the item heigth
/// </summary>
[Description("Specifies the size of the icon of each file - small or large"),
DefaultValue(typeof(IconSize), "IconSize.Small"), Category("Appearance")]
public IconSize FileIconSize
{
get { return _fileIconSize; }
set
{
_fileIconSize = value;
switch (_fileIconSize)
{
case IconSize.Small:
base.ItemHeight = 16;
break;
case IconSize.Large:
base.ItemHeight = 32;
break;
}
Invalidate();
}
}
/// <summary>
/// Gets or sets the item height. can only be 32 or 16.
/// </summary>
[Browsable(false)]
public override int ItemHeight
{
get
{
return base.ItemHeight;
}
set
{
if (value == 32)
{
FileIconSize = IconSize.Large;
base.ItemHeight = 32;
}
else
{
FileIconSize = IconSize.Small;
base.ItemHeight = 16;
}
}
}
#endregion
#region Ctor(s)
/// <summary>
/// Intializes a new instance of the FilesListBox class, to view a list of
/// files inside a ListBox control.
/// </summary>
public FilesListBox()
{
SelectionMode = System.Windows.Forms.SelectionMode.One;
DrawMode = DrawMode.OwnerDrawFixed;
}
/// <summary>
/// Intializes a new instance of the FilesListBox class, to view a list of
/// files inside a ListBox control.
/// </summary>
/// <param name="directoryName">The directory to start from</param>
public FilesListBox(string directoryName)
: this()
{
_selectedPath = SelectedPath;
PopulatingItems();
}
#endregion
#region Private Methods
/// <summary>
/// Adds the specified directory to the list.
/// </summary>
/// <param name="directoryName"></param>
private void AddDirectory(string directoryName)
{
Items.Add(directoryName);
}
/// <summary>
/// Adds the specified file to the list.
/// </summary>
/// <param name="fileName"></param>
private void AddFile(string fileName)
{
Items.Add(fileName);
}
/// <summary>
/// Gets the full file name, by adding the directory name to the file specified.
/// </summary>
/// <param name="fileNameOnly"></param>
/// <returns></returns>
private string GetFullName(string fileNameOnly)
{
return Path.Combine(_selectedPath, fileNameOnly);
}
/// <summary>
/// Populate the list box with files and directories according to the
/// directoryName property
/// </summary>
private void PopulatingItems()
{
// Ignore when in desing mode
if (DesignMode)
return;
this.Items.Clear();
// Shows the back directory item (
if (_showBackIcon && _selectedPath.Length > 3)
{
Items.Add("..");
}
try
{
// Fills all directory items
if (_showDirectories)
{
string[] dirNames = Directory.GetDirectories(_selectedPath);
foreach (string dir in dirNames)
{
string realDir = Path.GetFileName(dir);
Items.Add(realDir);
}
}
// Fills all list items
string[] fileNames = Directory.GetFiles(_selectedPath);
foreach (string file in fileNames)
{
string fileName = Path.GetFileName(file);
if (Extension != null && Extension.CompareTo("") != 0)
{
if (Path.GetExtension(fileName).ToLower() == Extension)
{
Items.Add(fileName);
}
}
else
{
Items.Add(fileName);
}
}
}
catch
{
// eat this - back is still optional even when no other items exists
}
Invalidate();
}
#endregion
#region Event Handlers
/// <summary>
/// Overrides, when double click on the list - fires the FileSelected event,
/// or, for directory, move into it.
/// </summary>
/// <param name="e"></param>
protected override void OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs e)
{
if (SelectedItem == null) return;
string selectedFile = GetFullName(SelectedItem.ToString());
// .. ---> go back one level
if (selectedFile.EndsWith(".."))
{
// Removes the \ in the end, so that the parent will return the real parent.
if (_selectedPath.EndsWith("\\"))
_selectedPath = _selectedPath.Remove(_selectedPath.Length - 1, 1);
_selectedPath = Directory.GetParent(_selectedPath).FullName;
PopulatingItems();
}
// go inside the directory
else if (Directory.Exists(selectedFile))
{
_selectedPath = selectedFile + "\\";
PopulatingItems();
}
else
{
OnFileSelected(new FileSelectEventArgs(selectedFile));
}
base.OnMouseDoubleClick(e);
}
/// <summary>
/// Fires the FileSelected event.
/// </summary>
/// <param name="fse"></param>
protected void OnFileSelected(FileSelectEventArgs fse)
{
if (FileSelected != null)
FileSelected(this, fse);
}
#endregion
#region Painting
/// <summary>
/// Paints each file with its icon.
/// </summary>
/// <param name="e"></param>
protected override void OnDrawItem(DrawItemEventArgs e)
{
e.DrawBackground();
e.DrawFocusRectangle();
Rectangle bounds = e.Bounds;
if (e.Index > -1 && e.Index < Items.Count)
{
Size imageSize;
string fileNameOnly = Items[e.Index].ToString();
string fullFileName = GetFullName(fileNameOnly);
Icon fileIcon = null;
Rectangle imageRectangle = new Rectangle( bounds.Left + 1, bounds.Top +1 , ItemHeight - 2,ItemHeight - 2);
if (fileNameOnly.Equals(".."))
{
// When .. is the string - draws directory icon
fileIcon =
IconExtractor.GetFileIcon(Application.StartupPath, _fileIconSize);
e.Graphics.DrawIcon(fileIcon,imageRectangle);
}
else
{
fileIcon =
IconExtractor.GetFileIcon(fullFileName, _fileIconSize);
// Icon.ExtractAssociatedIcon(item);
e.Graphics.DrawIcon(fileIcon,imageRectangle);
}
imageSize = imageRectangle.Size;
fileIcon.Dispose();
Rectangle fileNameRec = new Rectangle(bounds.Left + imageSize.Width + 3, bounds.Top , bounds.Width - imageSize.Width - 3, bounds.Height);
StringFormat format = new StringFormat();
format.LineAlignment = StringAlignment.Center;
e.Graphics.DrawString(fileNameOnly, e.Font, new SolidBrush(e.ForeColor),
fileNameRec, format);
}
base.OnDrawItem(e);
}
#endregion
}
#region Enums
/// <summary>
/// Specifies the icon size (16 or 32)
/// </summary>
public enum IconSize
{
/// <summary>
/// 16X16 icon
/// </summary>
Small,
/// <summary>
/// 32X32 icon
/// </summary>
Large
}
#endregion
#region FileSelectEventArgs
/// <summary>
/// Represents the method that is used to handle file selected event.
/// </summary>
/// <param name="sender"></param>
/// <param name="fse"></param>
public delegate void FileSelectedEventHandler(object sender, FileSelectEventArgs fse);
/// <summary>
/// Provides for FileSelect event.
/// </summary>
public class FileSelectEventArgs : EventArgs
{
private string fileName;
/// <summary>
/// Gets or sets the file name that trigered the event.
/// </summary>
public string FileName
{
get { return fileName; }
set { fileName = FileName; }
}
/// <summary>
/// Initializes a new instance of the FileSelectEventArgs in order to provide
/// data for FileSelected event.
/// </summary>
/// <param name="fileName"></param>
public FileSelectEventArgs(string fileName)
{
this.fileName = fileName;
}
}
#endregion
#region Icon Extractor
/// <summary>
/// Util class to extract icons from files or directories.
/// </summary>
class IconExtractor
{
[StructLayout(LayoutKind.Sequential)]
public struct SHFILEINFO
{
public IntPtr hIcon;
public IntPtr iIcon;
public uint dwAttributes;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)]
public string szDisplayName;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 80)]
public string szTypeName;
};
class Win32
{
public const uint SHGFI_ICON = 0x100;
public const uint SHGFI_LARGEICON = 0x0; // 'Large icon
public const uint SHGFI_SMALLICON = 0x1; // 'Small icon
[DllImport("shell32.dll")]
public static extern IntPtr SHGetFileInfo(string pszPath,
uint dwFileAttributes,
ref SHFILEINFO psfi,
uint cbSizeFileInfo,
uint uFlags);
}
/// <summary>
/// Gets the icon asotiated with the filename.
/// </summary>
/// <param name="fileName"></param>
/// <returns></returns>
public static Icon GetFileIcon(string fileName, IconSize _iconSize)
{
System.Drawing.Icon myIcon = null;
try
{
IntPtr hImgSmall; //the handle to the system image list
SHFILEINFO shinfo = new SHFILEINFO();
//Use this to get the small Icon
hImgSmall = Win32.SHGetFileInfo(fileName, 0, ref shinfo,
(uint)Marshal.SizeOf(shinfo),
Win32.SHGFI_ICON |
(_iconSize == IconSize.Small ? Win32.SHGFI_SMALLICON : Win32.SHGFI_LARGEICON) );
//The icon is returned in the hIcon member of the shinfo
//struct
myIcon =
System.Drawing.Icon.FromHandle(shinfo.hIcon);
}
catch
{
return null;
}
return myIcon;
}
}
#endregion
}