home *** CD-ROM | disk | FTP | other *** search
- G4C
- ; $VER: menu.note Rev.001 © by Juan Manuel Wehrli 2000
- WINBIG -1 -1 100 60 "Site Notitz/Rapport"
- WinType 00001000
- WinOnMouse 95 5
- WinBackGround IMAGE BG 0
- Winout "NIL:"
-
- xOnLoad
- GuiOpen #This
-
- ;=== Abbruch Button
- XButton 0 0 100 15 "Abbrechen [_X]"
- GadFont xHelvetica.font 11 010
- GadKey "x"
- GuiQuit #This
-
- XButton 0 15 100 15 "Notitz"
- GadFont xHelvetica.font 11 000
- GuiClose #This
- SetVar note $*SITEDIR
- AppVar note "_hxt/note."
- AppVar note $*USER
- cli 'EditPad $note'
- GuiQuit #This
-
- XButton 0 30 100 15 "Rapport"
- GadFont xHelvetica.font 11 000
- GuiClose #This
- SetVar rap $*SITEDIR
- AppVar rap "_hxt/rap."
- AppVar rap $*USER
- ifexists file $rap
- cli 'EditPad $rap'
- else
- copy "htmlext:settings/defaults/Rapport.txt" $rap
- cli 'EditPad $rap'
- endif
- GuiQuit #This
-
-
- XButton 0 45 100 15 "History"
- GadFont xHelvetica.font 11 000
- GuiClose #This
- lvuse HTMLEXT 1
- EXTRACT %SiteHistFile CLEAN histfile
- if $histfile != ""
- guiload htmlext:gui/func.history
- endif
- GuiQuit #This
-
-