home *** CD-ROM | disk | FTP | other *** search
/ Atlas of the Solar System / NewAtlasOfTheSolarSystem.iso / Layout.txt < prev    next >
Text File  |  2003-08-20  |  3KB  |  127 lines

  1. // Comment 1
  2. company(NAME = "DK");
  3. application(NAME = "New Atlas of the Solar System", USER_DATA_COMMON = true);
  4.  
  5. // COORDS = decimal or geo
  6. // default -  geo
  7. // DIST_UNIT = mile or km; default - km
  8.  
  9. //format(COORDS = geo, DIST_UNIT = mile);
  10. //format(COORDS = decimal, DIST_UNIT = km);
  11. format(COORDS = geo, DIST_UNIT = km);
  12.  
  13. colors()
  14. {
  15.     scale(R = 255, G = 0, B = 0);
  16. }
  17.  
  18.  
  19. layout(NAME = Main)
  20. {
  21.     splitter(ROWS = 2, COLS = 2)
  22.     {
  23.         rows(H1 = 0);
  24.  
  25.         pane(TYPE = HTML, ID = 1)
  26.         {
  27.             params(URL = "title.htm");
  28.         }
  29.         pane(TYPE = Globe, ID = 2)
  30.         {
  31.             params(URL = "title.htm");
  32.         }
  33.         
  34.         cols(W1 = 0);
  35.  
  36.         pane(TYPE = HTML, ID = 3)
  37.         {
  38.             params(URL = "palette.htm");
  39.         }
  40.         pane(TYPE = HTML, ID = 0)
  41.         {
  42.             params(URL = "title.htm");
  43.         }
  44.     }
  45. }
  46.  
  47. window (NAME = Locator, TYPE = DIALOG, VISIBLE = FALSE, TITLE = "Find location")
  48. {
  49.     position(x = 5, y = 300, width = 170, height = 250);
  50.     colors()
  51.     {
  52.         bgnd(R = 165, G = 172, B = 192);
  53. //        list(R = 255, G = 255, B = 255);
  54.         list(R = 255, G = 255, B = 255);
  55.         edit(R = 255, G = 255, B = 255);
  56.     }
  57. }
  58.  
  59. window (NAME = UserLocator, TYPE = DIALOG, VISIBLE = FALSE, TITLE = "Custom Labels")
  60. {
  61.     position(x = 175, y = 300, width = 205, height = 250);
  62.     colors()
  63.     {
  64.         bgnd(R = 165, G = 172, B = 192);
  65. //        list(R = 255, G = 255, B = 255);
  66.         list(R = 255, G = 255, B = 255);
  67.         edit(R = 255, G = 255, B = 255);
  68.     }
  69. }
  70.  
  71. window (NAME = Browser, TYPE = HTML, VISIBLE = FALSE, RESIZE = TRUE, TITLE = "Data")
  72. {
  73.     position(x = 10, y = 30, width = 640, height = 480);
  74. }
  75.  
  76. window (NAME = Info, TYPE = HTML, VISIBLE = FALSE, RESIZE = FALSE, TITLE = "Information")
  77. {
  78.     position(x = 480, y = 120, width = 275, height = 180);
  79. }
  80.  
  81. window (NAME = MeasureTool, TYPE = HTML, VISIBLE = FALSE, RESIZE = FALSE, TITLE = "Measure Tool")
  82. {
  83.     position(x = 291, y = 80, width = 225, height = 150);
  84.     params(URL = "measure_tool.htm");
  85. }
  86.  
  87. window (NAME = Palette, TYPE = HTML, VISIBLE = TRUE, RESIZE = FALSE, TITLE = "")
  88. {
  89.     position(x = 0, y = 39, width = 172, height = 514);
  90.     params(URL = "palette.htm");
  91. }
  92.  
  93. window (NAME = About, TYPE = HTML, VISIBLE = FALSE, RESIZE = FALSE, TITLE = "Help")
  94. {
  95.     position(x = 180, y = 39, width = 620, height = 514);
  96.     params(URL = "help.htm");
  97. }
  98.  
  99. window (NAME = Moreinfo, TYPE = HTML, VISIBLE = FALSE, RESIZE = FALSE, TITLE = "Encyclopedia")
  100. {
  101.     position(x = 180, y = 39, width = 620, height = 514);
  102. }
  103.  
  104. window (NAME = SSLarge, TYPE = HTML, VISIBLE = FALSE, SCROLL=NO, RESIZE = FALSE, TITLE = "Image", PARENT = "Moreinfo")
  105. {
  106.     position(x = 0, y = 0, width = 800, height = 600);
  107.  
  108. }
  109.  
  110. window (NAME = Flights, TYPE = HTML, VISIBLE = FALSE, SCROLL=NO, RESIZE = FALSE, TITLE = "Virtual Tours")
  111. {
  112.     position(x = 180, y = 39, width = 620, height = 514);
  113.  
  114. }
  115.  
  116. window (NAME = Planetarium, TYPE = HTML, VISIBLE = FALSE, SCROLL=NO, RESIZE = FALSE, TITLE = "Solar System Simulator")
  117. {
  118.     position(x = 180, y = 39, width = 620, height = 514);
  119.  
  120. }
  121.  
  122. window (NAME = Glossary, TYPE = HTML, VISIBLE = FALSE, SCROLL=NO, RESIZE = TRUE, TITLE = "Glossary")
  123. {
  124.     position(x = 180, y = 39, width = 365, height = 150);
  125.  
  126. }
  127.