OSDN Git Service

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