# This is the main default menu for jumppoint. It doesn't provide much # right now... menu "&Commands" { item "File Transfer..." show_scp_window(); item "Preferences..." show_preferences(); item "About" show_about(); item "Quit" exit_gui(); } menu "&Modules" { menu "Examples" { item "Test Loggin" test_logging(); } } # The hostitem command adds an item to the pop up menu of the server # browser. If you want submenus use the hostmenu {} block and normal # items. hostitem "Connect" mb_launch_event(); hostitem "Add Folder" mb_new_folder(); hostitem "Delete Folder" mb_delete_folder(); hostitem "Add Server" mb_show_addhost(); hostitem "Edit Server" mb_show_edithost(); hostitem "Delete Server" mb_delete_host();