OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / Model / SourceType.cs
1 /*  SourceType.cs $\r
2         \r
3            This file is part of the HandBrake source code.\r
4            Homepage: <http://handbrake.fr>.\r
5            It may be used under the terms of the GNU General Public License. */\r
6 \r
7 namespace Handbrake.Model\r
8 {\r
9     public enum SourceType\r
10     {\r
11         /// <summary>\r
12         /// No Source Selected\r
13         /// </summary>\r
14         None = 0,\r
15 \r
16         /// <summary>\r
17         /// The soruce selected is a folder\r
18         /// </summary>\r
19         Folder,\r
20 \r
21         /// <summary>\r
22         /// The source selected is a DVD drive\r
23         /// </summary>\r
24         DvdDrive,\r
25 \r
26         /// <summary>\r
27         /// The source selected is a Video File\r
28         /// </summary>\r
29         VideoFile\r
30     }\r
31 }\r