Example #1
0
 public ItemVideoInfo(ItemTextInfo caption, int minW, int minH, int maxW, int maxH, int fileSize, float minFPS, float maxFPS, MediaType[] types) :
     base(caption, minW, minH, maxW, maxH, fileSize, null)
 {
     MinFPS         = minFPS;
     MaxFPS         = maxFPS;
     SupportedTypes = types;
 }
Example #2
0
 public ItemImageInfo(ItemTextInfo caption, int minW, int minH, int maxW, int maxH, int fileSize, MediaType[] types)
 {
     Caption        = caption;
     MinWidth       = minW;
     MinHeight      = minH;
     MaxWidth       = maxW;
     MaxHeight      = maxH;
     MaxFileSize    = fileSize;
     SupportedTypes = types;
 }
Example #3
0
 public ItemAlbumInfo(ItemTextInfo caption, int minW, int minH, int maxW, int maxH, int fileSize, MediaType[] types, int maxImgs) :
     base(caption, minW, minH, maxW, maxH, fileSize, types)
 {
     MaxImages = maxImgs;
 }
Example #4
0
 public ItemGifInfo(ItemTextInfo caption, int minW, int minH, int maxW, int maxH, int fileSize, MediaType[] types, int frames) :
     base(caption, minW, minH, maxW, maxH, fileSize, null)
 {
     MaxFrames      = frames;
     SupportedTypes = types;
 }