home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 November / Chip_2002-11_cd1.bin / ctenari / Hadraba / Source / ShortCutForm.dfm < prev    next >
Text File  |  2002-08-31  |  3KB  |  112 lines

  1. object ShortCutForm1: TShortCutForm1
  2.   Left = 284
  3.   Top = 302
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsToolWindow
  6.   Caption = 'AutoRun Version 1.0 shortcut list'
  7.   ClientHeight = 377
  8.   ClientWidth = 321
  9.   Color = clWhite
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   PopupMenu = PopupMenu1
  17.   Position = poDesktopCenter
  18.   OnKeyDown = FormKeyDown
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object Memo1: TMemo
  22.     Left = 8
  23.     Top = 8
  24.     Width = 305
  25.     Height = 361
  26.     Color = clWhite
  27.     Lines.Strings = (
  28.       'AutoRun Version 1.0'
  29.       'Copyright (c) 2002 Petr Hadraba - Hadraba-Soft'
  30.       ''
  31.       'AutoRun Keyboard shortcuts:'
  32.       '-------------------------------'
  33.       ''
  34.       'AutoRun Window:'
  35.       '-------------------------------'
  36.       'Exit AutoRun'#9#9#9'Esc, Alt+F4, Alt+X'
  37.       'Iconify AutoRun'#9#9#9'Alt+Space'
  38.       'Keyboard shortcuts (Help)'#9#9'F1, Alt+H'
  39.       'About AutoRun'#9#9#9'F12, Alt+A'
  40.       'Execute item'#9#9#9'Enter'
  41.       'Execute item with user application'#9'Ctrl+Enter'
  42.       'Explore selected item'#9#9'Alt+Enter'
  43.       'Iconify after execution'#9#9'Alt+I'
  44.       'Close after execution'#9#9'Alt+L'
  45.       'Explore CD'#9#9#9'Ctrl+Space, Alt+C'
  46.       'Sort items'#9#9#9#9'Alt+S'
  47.       ''
  48.       'About AutoRun dialog:'
  49.       '-------------------------------'
  50.       'Go to URL'#9#9#9'S'
  51.       'Write e-mail'#9#9#9'C'
  52.       'Close'#9#9#9#9'Any other key'
  53.       ''
  54.       'Help for AutoRun:'
  55.       '-------------------------------'
  56.       'Copy text to clipboard'#9#9'Ctrl+C'
  57.       'Close'#9#9#9#9'Esc, Alt+F4'
  58.       ''
  59.       'Error dialog:'
  60.       '-------------------------------'
  61.       'Close'#9#9#9#9'Esc, Enter, Alt+F4'
  62.       ''
  63.       'Note:'
  64.       '-------------------------------'
  65.       '  All AutoRun actions (main window) is available in context '
  66.       'menus.')
  67.     PopupMenu = PopupMenu1
  68.     ReadOnly = True
  69.     ScrollBars = ssVertical
  70.     TabOrder = 0
  71.   end
  72.   object PopupMenu1: TPopupMenu
  73.     Left = 48
  74.     Top = 336
  75.     object Copytexttoclipboard1: TMenuItem
  76.       Action = CopyAction1
  77.     end
  78.     object N1: TMenuItem
  79.       Caption = '-'
  80.     end
  81.     object About1: TMenuItem
  82.       Action = AboutAction1
  83.     end
  84.     object Exit1: TMenuItem
  85.       Action = ExitAction1
  86.       Default = True
  87.     end
  88.   end
  89.   object ActionList1: TActionList
  90.     Left = 16
  91.     Top = 336
  92.     object ExitAction1: TAction
  93.       Category = 'System'
  94.       Caption = '&Close'
  95.       ShortCut = 27
  96.       OnExecute = ExitAction1Execute
  97.     end
  98.     object AboutAction1: TAction
  99.       Category = 'System'
  100.       Caption = '&About...'
  101.       ShortCut = 112
  102.       OnExecute = AboutAction1Execute
  103.     end
  104.     object CopyAction1: TAction
  105.       Category = 'View'
  106.       Caption = 'Copy &text to clipboard'
  107.       ShortCut = 16451
  108.       OnExecute = CopyAction1Execute
  109.     end
  110.   end
  111. end
  112.