PageRenderTime 39ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/Structures/TvShowBatchWizard.vb

#
Visual Basic | 132 lines | 129 code | 3 blank | 0 comment | 0 complexity | 2c3439fa9acb2d8c932623055c2600fa MD5 | raw file
Possible License(s): GPL-2.0
  1. Public Structure str_TvShowBatchWizard
  2. Dim RewriteAllNFOs As Boolean
  3. Dim shYear As Boolean
  4. Dim shRating As Boolean
  5. Dim shPlot As Boolean
  6. Dim shRuntime As Boolean
  7. Dim shMpaa As Boolean
  8. Dim shGenre As Boolean
  9. Dim shStudio As Boolean
  10. Dim shActor As Boolean
  11. Dim shStatus As Boolean
  12. Dim shSeries As Boolean
  13. Dim shPosters As Boolean
  14. Dim shFanart As Boolean
  15. Dim shSeason As Boolean
  16. Dim shBannerMain As Boolean
  17. Dim shXtraFanart As Boolean
  18. Dim shFanartTvArt As Boolean
  19. Dim shDelArtwork As Boolean
  20. Dim epStreamDetails As Boolean
  21. Dim epAired As Boolean
  22. Dim epPlot As Boolean
  23. Dim epDirector As Boolean
  24. Dim epCredits As Boolean
  25. Dim epRating As Boolean
  26. Dim epVotes As Boolean
  27. Dim epRuntime As Boolean
  28. Dim epTitle As Boolean
  29. Dim epActor As Boolean
  30. Dim epScreenshot As Boolean
  31. Dim epCreateScreenshot As Boolean
  32. Dim includeLocked As Boolean
  33. Dim activate As Boolean
  34. Dim doEpisodes As Boolean
  35. Dim doShows As Boolean
  36. Dim doShowBody As Boolean
  37. Dim doShowArt As Boolean
  38. Dim doShowActors As Boolean
  39. Dim doEpisodeBody As Boolean
  40. Dim doEpisodeArt As Boolean
  41. Dim doEpisodeActors As Boolean
  42. Dim doEpisodeMediaTags As Boolean
  43. Sub New(SetDefaults As Boolean) 'When called with new keyword & boolean constant SetDefault (either T or F), initialises all values to defaults to avoid having some variables left as 'nothing'
  44. RewriteAllNFOs = False
  45. shYear = False
  46. shRating = False
  47. shPlot = False
  48. shRuntime = False
  49. shMpaa = False
  50. shGenre = False
  51. shStudio = False
  52. shActor = False
  53. shStatus = False
  54. shSeries = False
  55. shPosters = False
  56. shFanart = False
  57. shSeason = False
  58. shBannerMain = False
  59. shXtraFanart = False
  60. shFanartTvArt = False
  61. shDelArtwork = False
  62. epStreamDetails = False
  63. epAired = False
  64. epPlot = False
  65. epDirector = False
  66. epCredits = False
  67. epRating = False
  68. epVotes = False
  69. epRuntime = False
  70. epTitle = False
  71. epActor = False
  72. epScreenshot = False
  73. epCreateScreenshot = False
  74. includeLocked = False
  75. activate = False
  76. doEpisodes = False
  77. doShows = False
  78. doShowBody = False
  79. doShowArt = False
  80. doShowActors = False
  81. doEpisodeBody = False
  82. doEpisodeArt = False
  83. doEpisodeActors = False
  84. doEpisodeMediaTags = False
  85. End Sub
  86. Sub Reset()
  87. RewriteAllNFOs = False
  88. shYear = False
  89. shRating = False
  90. shPlot = False
  91. shRuntime = False
  92. shMpaa = False
  93. shGenre = False
  94. shStudio = False
  95. shActor = False
  96. shStatus = False
  97. shSeries = False
  98. shPosters = False
  99. shFanart = False
  100. shSeason = False
  101. shBannerMain = False
  102. shXtraFanart = False
  103. shFanartTvArt = False
  104. shDelArtwork = False
  105. epStreamDetails = False
  106. epAired = False
  107. epPlot = False
  108. epDirector = False
  109. epCredits = False
  110. epRating = False
  111. epVotes = False
  112. epRuntime = False
  113. epTitle = False
  114. epActor = False
  115. epScreenshot = False
  116. epCreateScreenshot = False
  117. includeLocked = False
  118. activate = False
  119. doEpisodes = False
  120. doShows = False
  121. doShowBody = False
  122. doShowArt = False
  123. doShowActors = False
  124. doEpisodeBody = False
  125. doEpisodeArt = False
  126. doEpisodeActors = False
  127. doEpisodeMediaTags = False
  128. End Sub
  129. End Structure