home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 June / PCWorld_2001-06_cd.bin / Software / Topware / getright / getrgt.exe / %MAINDIR% / skins / micro1.grs / skin2.ini < prev   
Encoding:
INI File  |  2000-08-22  |  9.5 KB  |  321 lines

  1. //------------------------------------------------------------------------------
  2. // GetRight 4.2d and higher supports a newer type of skin!
  3. // Each GetRight skin version 2 is one big bitmap (256 color bitmaps please).
  4. // With this INI file you set the coordinates of all the different parts so GetRight knows what to draw where.
  5. // Does take a bit more work to setup all the stuff here...but gives MUCH more
  6. // flexibility than the previous skin method.  Just about any appearance is possible.
  7. // This file is Required.
  8. //------------------------------------------------------------------------------
  9. // Also for skin creators, if you make a SKINBUILDER subdirectory under where GetRight is installed
  10. // (Normally C:\Program Files\GetRight\SkinBuilder)
  11. // With the INI and BMP file for a skin, that skin will Always be used by GetRight.
  12. // This makes it much easier to test your skins, just re-pick something from GetRight's
  13. // Options->Skins menu and it will reload the INI and BMP from there.
  14. //------------------------------------------------------------------------------
  15.  
  16. //------------------------------------------------------------------------------
  17. // Big Windows INI format file.
  18. // For each graphic item, generally set the X,Y and the Height and Width (H,W) of the object.
  19. //------------------------------------------------------------------------------
  20. // For some of the items, likely will just need to play with the values to make it look good.
  21. // For example, Arial font sized 6,12 looks MUCH better than when sized 6,11
  22. //------------------------------------------------------------------------------
  23. // Other Extras...you can also include a CLICK.WAV file in the skin.  This sound is played
  24. // whenever one of the buttons is clicked.  Can be any sound, but recommended you keep is pretty short.
  25. //------------------------------------------------------------------------------
  26. // Documentation is kinda sparse, but hopefully enough to get you started (and things aren't
  27. // that complex, mostly lots of coordinates for you to set.)
  28. //------------------------------------------------------------------------------
  29.  
  30.  
  31. [Defaults]
  32. // Can set default text colors and font.  Then can just do exceptions later.
  33. // If no font is set, the default Windows font is used.
  34. TextRGB=0x000000
  35. TextShadowRGB=0x8080FF
  36. FontSizeX=5
  37. FontSizeY=7
  38. // For fonts, best to stick with those that come with Windows or are very common...Arial, Times New Roman, System, etc.
  39. FontName=Arial
  40. // For both Bold and Angle, if not included, does not bold, and no angle.
  41. FontBold=0
  42. FontAngle=0
  43.  
  44. [Options]
  45. // Setting transparent=0 means it is a rectangular window with no transparent areas.
  46. // Using this lets the skin load slightly faster.
  47. Transparent=1
  48.  
  49. // Can draw a "shadow" for each line of text.  This helps make it more readable on some textured backgrounds.
  50. // Can't do shadowing individually...it is on or off for all.
  51. Shadow=0
  52.  
  53. // Says you are using mouse-over images.  Setting to 0 if not using them or 1 if you are.
  54. MouseOver=1
  55.  
  56. [Main]
  57. // The main window background on your bitmap
  58. // X,Y should be 0,0 (background in upper left) for now.
  59. WindowX=0
  60. WindowY=0
  61. WindowH=67
  62. WindowW=224
  63.  
  64. // The titlebar area on the bitmap, and the different area (if desired) to use
  65. // when the window is inactive.  
  66. TitleX=3
  67. TitleY=3
  68. TitleH=8
  69. TitleW=191
  70. TitleInactX=0
  71. TitleInactY=70
  72.  
  73. // Location for finding pixel with the transparent color.
  74. // Transparency works best if you use one of the Windows System colors for the transparent color (bright green or purple or something).
  75. // Just avoids any dithering problems if people have a very low color display.
  76. TransparentX=45
  77. TransparentY=68
  78.  
  79. // Advertising banner.  
  80. // Remove them, or set to 0,0 if your skin does not contain space for the banner.  
  81. // If there is no space for a banner, shareware/trial users won't be able to use the skin.
  82. // Will be sized to Width=468 Height=60  H,W items ignored.
  83. BannerX=0
  84. BannerY=70
  85.  
  86. [TitleButtons]
  87. // The areas used for the Minimize to Tray Icon, Minimize and Close buttons
  88. // normally found in the titlebar (tho can be located anywhere.)
  89. // Include Down and Mouse Over states for the buttons.
  90. ToTrayX=195
  91. ToTrayY=2
  92. ToTrayH=9
  93. ToTrayW=9
  94. ToTrayDownX=150
  95. ToTrayDownY=80
  96. ToTrayOverX=150
  97. ToTrayOverY=90
  98.  
  99. MinimizeX=204
  100. MinimizeY=2
  101. MinimizeH=9
  102. MinimizeW=9
  103. MinimizeDownX=160
  104. MinimizeDownY=80
  105. MinimizeOverX=160
  106. MinimizeOverY=90
  107.  
  108. CloseX=213
  109. CloseY=2
  110. CloseH=9
  111. CloseW=9
  112. CloseDownX=170
  113. CloseDownY=80
  114. CloseOverX=170
  115. CloseOverY=90
  116.  
  117. [Buttons]
  118. // The areas used for the GetRight Options, pause/resume/stop/view (Control), and Cancel buttons
  119. // Include Down and Mouse Over states for the buttons.
  120. // The Control button states are set in the [ControlButton] INI section
  121. OptionsX=141
  122. OptionsY=54
  123. OptionsH=10
  124. OptionsW=17
  125. OptionsDownX=0
  126. OptionsDownY=90
  127. OptionsOverX=0
  128. OptionsOverY=80
  129.  
  130. // All the different states for the Control (pause/resume/stop/view) button are set in the [ControlButton] section
  131. ControlX=159
  132. ControlY=54
  133. ControlH=10
  134. ControlW=17
  135.  
  136. CancelX=177
  137. CancelY=54 
  138. CancelH=10
  139. CancelW=17
  140. CancelDownX=20
  141. CancelDownY=90
  142. CancelOverX=20
  143. CancelOverY=80
  144.  
  145. [ControlButton]
  146. // For all buttons, if an OVER state is not set, the Up state is used.
  147. // Same for Down...if no Down state, Up is used.
  148. PauseUpX=70
  149. PauseUpY=80 
  150. PauseDownX=70
  151. PauseDownY=100
  152. PauseOverX=70
  153. PauseOverY=90
  154. ResumeUpX=50
  155. ResumeUpY=80
  156. ResumeDownX=50
  157. ResumeDownY=100
  158. ResumeOverX=50
  159. ResumeOverY=90
  160. StopUpX=90
  161. StopUpY=80
  162. StopDownX=90
  163. StopDownY=100
  164. StopOverX=90
  165. StopOverY=90
  166. ViewUpX=110
  167. ViewUpY=80
  168. ViewDownX=110
  169. ViewDownY=100
  170. ViewOverX=110
  171. ViewOverY=90
  172.  
  173. [Progress]
  174. // For all the fill direction items, can set the different directions.
  175. // If no direction is set, Left to Right is used.
  176. // 0 = left 2 right
  177. // 1 = right 2 left
  178. // 2 = top 2 bottom
  179. // 3 = bottom 2 top
  180. FillDirection=0
  181.  
  182. // The normal (not segmented) working bar area on the window, with the filled area.
  183. NormalX=3
  184. NormalY=54
  185. NormalW=137
  186. NormalH=7
  187. NormalFilledX=0
  188. NormalFilledY=110
  189.  
  190. // When segmenting, the total progress bar (with the Unfilled Background to use and Filled area.)
  191. SegmentTotalX=3
  192. SegmentTotalY=54
  193. SegmentTotalW=137
  194. SegmentTotalH=7
  195. SegmentTotalBackX=3
  196. SegmentTotalBackY=54
  197. SegmentTotalFilledX=0
  198. SegmentTotalFilledY=110
  199. SegmentTotalFillDirection=0
  200.  
  201. // When segmenting, the progress bar for showing all the segment status.
  202. // With the Unfilled Background to use and Filled area.
  203. // If neither SegmentTotal* or Segments* items are set, the regular 
  204. // working bar is used, and filled to show the individual segment status.
  205. SegmentsX=3
  206. SegmentsY=62
  207. SegmentsW=137
  208. SegmentsH=2
  209. SegmentsBackX=0
  210. SegmentsBackY=117
  211. SegmentsFilledX=0
  212. SegmentsFilledY=119
  213. SegmentsFillDirection=0
  214.  
  215. [Animation]
  216. // Animation location on the window
  217. AnimX=201
  218. AnimY=13
  219. AnimW=16
  220. AnimH=16
  221.  
  222. // The number of frames in your animation.  MAXIMUM frames is 20.
  223. Frames=4
  224.  
  225. // The location of each frame of the animation on your bitmap.
  226. Frame1X=0
  227. Frame1Y=121
  228. Frame2X=20
  229. Frame2Y=121
  230. Frame3X=40
  231. Frame3Y=121
  232. Frame4X=60
  233. Frame4Y=121
  234.  
  235.  
  236. // The delay between frames of the animation.
  237. // All Times measured in 1/1000 of a second.  So 200 is 200/1000 or 1/5 of a second or 5 frames a second.
  238. // MINIMUM time is 100 or 10 frames a second.
  239. FrameDelay=500
  240.  
  241. // You may optionally set a time delay after the animation finishes and before re-doing the animation loop.
  242. LoopDelay=0
  243.  
  244. // Set 1 for either of the Random*Delay items if you wish to have random amounts of time between frames.  
  245. // Will do a random number between 100/1000 and X/1000 
  246. // So if set frame delay to 5000 (5 seconds), the actual delay between frames would be a random time up to 5 seconds long.
  247. // Would be useful for randomly blinking eyes for example...
  248. RandomFrameDelay=0
  249. RandomLoopDelay=0
  250.  
  251. [Graph]
  252. // Graph is Optional.  Shows a speed graph similar to that on the bottom right of the Download Status.
  253. // Shows the speed for just the current download.
  254. GraphX=195
  255. GraphY=34
  256. GraphH=30
  257. GraphW=26
  258. // Can set the colors for the background, the grid, the top edge of the graph and the graph body.
  259. // Can of course set some colors the same, such as to have an invisible grid.
  260. BackgroundRGB=0x808080
  261. GridRGB=0xE4E4E4
  262. GraphEdgeRGB=0xFF0000
  263. GraphRGB=0xcc0000
  264. // The number of lines X and Y to include on the grid in the background.
  265. GridLinesX=1
  266. GridLinesY=4
  267.  
  268. [Text]
  269. // The locations for all the bits of text.  Can set H,W to 0,0 to not draw some of them.
  270. // Will use the [Default] section fonts and colors if not set here.
  271. // For each text item, can also set the text Justification L=left R=right C=centered
  272. CaptionX=3
  273. CaptionY=3
  274. CaptionH=8
  275. CaptionW=191
  276. CaptionRGB=0xFFFFFF
  277. CaptionInactiveRGB=0xcccccc
  278. CaptionFontSizeX=5
  279. CaptionFontSizeY=7
  280. CaptionFontAngle=0
  281. CaptionFontName=Arial
  282. CaptionFontBold=0
  283. CaptionJustify=L
  284. // The Window title in GetRight normally contains " -- GetRight" at the end.
  285. // Set CaptionIncludeGetRight=0 to not include this (if a small area so it won't always fit.)
  286. CaptionIncludeGetRight=0
  287.  
  288. UrlX=3
  289. UrlY=13
  290. UrlH=10
  291. UrlW=191
  292. UrlJustify=L
  293.  
  294. ToX=3
  295. ToY=23
  296. ToH=10
  297. ToW=191
  298. ToJustify=L
  299. SizeX=3
  300. SizeY=33
  301. SizeH=10
  302. SizeW=191
  303.  
  304. // The Size item usually contains the number of resume (or if the server won't resume)
  305. // on the Right side of its box.
  306. // Set SizeIncludeResume=0 to not include this (if a small area so it won't always fit.)
  307. SizeIncludeResume=0
  308.  
  309. TimeX=3
  310. TimeY=43
  311. TimeH=10
  312. TimeW=191
  313.  
  314. [Author]
  315. // Give yourself credit...will show up under the Skins menu.
  316. SKIN_NAME=Micro
  317. NAME=Peter Burford
  318. URL=http://www.getright.com/skins.html
  319.  
  320.  
  321.