home *** CD-ROM | disk | FTP | other *** search
/ 3D World Atlas (GSP) / GSPCD1046A.iso / Layout.txt < prev    next >
Text File  |  2002-10-16  |  2KB  |  93 lines

  1. // Comment 1
  2. company(NAME = "3DWA_L");
  3. application(NAME = "3D World Atlas", 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.  
  12. colors()
  13. {
  14.     scale(R = 255, G = 0, B = 0);
  15. }
  16.  
  17.  
  18. layout(NAME = Main)
  19. {
  20.     splitter(ROWS = 2, COLS = 1)
  21.     {
  22.         rows(H1 = 0);
  23.  
  24.         pane(TYPE = HTML, ID = 2)
  25.         {
  26.             params(URL = "menubar.htm");
  27.         }
  28.         pane(TYPE = HTML, ID = 0)
  29.         {
  30.             params(URL = "title.htm");
  31.         }
  32.     }
  33. }
  34.  
  35. window (NAME = Locator, TYPE = DIALOG, VISIBLE = FALSE, TITLE = "Find location")
  36. {
  37.     position(x = 5, y = 300, width = 170, height = 250);
  38.     colors()
  39.     {
  40.         bgnd(R = 165, G = 172, B = 192);
  41. //        list(R = 255, G = 255, B = 255);
  42.         list(R = 255, G = 255, B = 255);
  43.         edit(R = 255, G = 255, B = 255);
  44.     }
  45. }
  46.  
  47. window (NAME = UserLocator, TYPE = DIALOG, VISIBLE = FALSE, TITLE = "Custom Labels")
  48. {
  49.     position(x = 175, y = 300, width = 205, 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 = Browser, TYPE = HTML, VISIBLE = FALSE, RESIZE = TRUE, TITLE = "Data")
  60. {
  61.     position(x = 10, y = 30, width = 640, height = 480);
  62. }
  63.  
  64. window (NAME = Info, TYPE = HTML, VISIBLE = FALSE, RESIZE = TRUE, TITLE = "Information")
  65. {
  66.     position(x = 480, y = 120, width = 275, height = 140);
  67. }
  68.  
  69. window (NAME = MeasureTool, TYPE = HTML, VISIBLE = FALSE, TITLE = "Distance Tool")
  70. {
  71.     position(x = 291, y = 80, width = 225, height = 150);
  72.     params(URL = "measure_tool.htm");
  73. }
  74.  
  75. window (NAME = Palette, TYPE = HTML, VISIBLE = FALSE, RESIZE = FALSE, TITLE = "Globe Control")
  76. {
  77.     position(x = 5, y = 50, width = 188, height = 416);
  78.     params(URL = "palette.htm");
  79. }
  80.  
  81. window (NAME = About, TYPE = HTML, VISIBLE = FALSE, TITLE = "3D World Atlas - Help")
  82. {
  83.     position(x = 10, y = 80, width = 480, height = 580);
  84.     params(URL = "about.htm");
  85. }
  86.  
  87. window (NAME = Moreinfo, TYPE = HTML, VISIBLE = FALSE, RESIZE = FALSE, TITLE = "Information")
  88. {
  89.     position(x = 170, y = 80, width = 600, height = 448);
  90.  
  91. }
  92.  
  93.