scribble-enhanced/collects/help/help.ss
Robby Findler 0815c70a2c fixed PRs 7783 7785
svn: r1731

original commit: 00d989a80a77036e5acface1595665984c2b114a
2005-12-31 14:23:49 +00:00

41 lines
1.3 KiB
Scheme

#|
This file contains all of the initialization of the Help Desk application.
It is only loaded when Help Desk is run by itself (outside DrScheme).
|#
(module help mzscheme
(require "bug-report.ss" ;; load now to init the preferences early enough
(lib "cmdline.ss")
(lib "class.ss")
(lib "framework.ss" "framework")
(lib "external.ss" "browser")
"private/link.ss"
(lib "string-constant.ss" "string-constants")
(lib "mred.ss" "mred"))
(command-line
"help-desk"
(current-command-line-arguments))
(add-help-desk-font-prefs #f)
(color-prefs:add-background-preferences-panel)
(preferences:add-warnings-checkbox-panel)
(install-help-browser-preference-panel)
;; for use by the bug report frame.
;(namespace-set-variable-value! 'help-desk:frame-mixin (make-bug-report/help-desk-mixin 'the-hd-cookie))
(handler:current-create-new-window
(lambda (filename)
(let ([browser-frame '((hd-cookie-new-browser the-hd-cookie))])
(when (and filename
(file-exists? filename))
(send (send (send browser-frame get-hyper-panel) get-canvas) goto-url
(string-append "file://" filename)
#f))
browser-frame)))
(new-help-desk))