home *** CD-ROM | disk | FTP | other *** search
/ The Best of the Best / _.img / 01163 / chartwin.wdl < prev    next >
Text File  |  1993-02-23  |  1KB  |  35 lines

  1. Window chartWin
  2.   class: ChartWindow
  3.   title: "Chart - (Untitled)"
  4.   Menu chartMenu
  5.     Popup file text: "&File"
  6.       Item fileNew text: "&New..."
  7.       Item fileOpen text: "&Open..."
  8.       Item fileSave text: "&Save"
  9.       Item fileSaveAs text: "Save &As"
  10.       Line
  11.       Item filePrint text: "&Print Chart\tCtrl+P"
  12.       Item fileClip text: "&Clip Chart"
  13.       Line
  14.       Item exit text: "E&xit"
  15.       Item aboutChart text: "A&bout Chart..."
  16.     End
  17.     Popup chart text: "&Chart"
  18.       Item vertBar text: "&Vertical Bar Chart"
  19.       Item horzBar text: "&Horizontal Bar Chart"
  20.       Item pie text: "&Pie Chart"
  21.       Line
  22.       Item addItem text: "&Add new item..."
  23.     End
  24.   End
  25.   Owned chartDlg
  26.     definition: "chartdat"
  27.   Owned fileDialog
  28.     class: CDFileOpen
  29.     title: "Open File"
  30.     data: ("Chart Files (*.cht)", "*.cht", "All Files (*.*)", "*.*")
  31.   Owned saveAsDialog
  32.     class: CDFileSave
  33.     title: "Save File"
  34.     data: ("Chart Files (*.cht)", "*.cht", "All Files (*.*)", "*.*")
  35.