Subversion Repositories Kolibri OS

Rev

Rev 6580 | Blame | Last modification | View Log | Download | RSS feed

  1. ;;;;;;;;;;;;;
  2. ;;; fNav ;;;;
  3. ;;;;;;;;;;;;;
  4.  
  5. Application author: 0CodErr
  6. Application address: http://board.kolibrios.org/viewtopic.php?f=44&t=2178
  7.  
  8. fNav - file navigator for KolibriOS.
  9.  
  10. Mouse control:
  11. -----------------
  12.     Middle button + Move up     go to parent directory
  13.     Middle Button + Move left   go to previous directory
  14.     Middle button + Move right  go to next directory
  15.  
  16. Keyboard control:
  17. -----------------------
  18.     Home                  to top of list
  19.     End                   to bottom of list
  20.     PageUp                one page up
  21.     PageDown              one page down
  22.     ArrowUp               one item up
  23.     ArrowDown             one item down
  24.     Rightctrl + Home      to top of the list without changing the selection
  25.     Rightctrl + END       to bottom of the list without changing the selection
  26.     Rightctrl + PageUp    one page up without changing the selection
  27.     Rightctrl + PageDown  one page down without changing the selection
  28.     Rightctrl + ArrowUp   one element up without changing the selection
  29.     Rightctrl + ArrowDown one element down without changing the selection
  30.     Rightctrl + L         go to address bar
  31.     BACKSPACE             go to parent directory
  32.     Arrowleft             go to previous directory
  33.     Arrowright            go to next directory
  34.     Enter                 go to the selected directory (or entered in the address bar) or
  35.                           open(launch) the selected file
  36.  
  37.     <character>              move to the next item that begins with this character
  38.     RightShift + <character> go to the previous item in the list that begins with this character
  39.  
  40.     F5                    refresh the list of files
  41.  
  42. Multiple selection of list items:
  43. -----------------------------------------
  44. Mouse or keyboard:
  45.     RightShift + (ArrowUp|ArrowDown|PageUp|PageDown|Home|End)
  46.     Leftctrl + A select all
  47.  
  48. List item actions:
  49. -----------------------------
  50.     Leftctrl + X        cut
  51.     Leftctrl + C        copy
  52.     Leftctrl + V        insert
  53.     Delete              delete
  54.     Insert              create file
  55.     RightShift + Insert create folder
  56.  
  57. Sort a list by using the keyboard:
  58. ---------------------------------------
  59.     Ctrl + F2 by type
  60.     Ctrl + F3 by name
  61.     Ctrl + F4 by extension
  62.     Ctrl + F5 by size
  63.     Ctrl + F6 by date
  64.     Ctrl + F7 by attributes
  65.  
  66. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  67.  
  68. Libraries used:
  69. ------------------------
  70.     Box_lib (Edit_box, ScrollBar)
  71.     Libimg  (loading icons, cursors, and fonts)
  72.     buf2d   (list rendering)
  73.  
  74. The following files should be in the application folder:
  75. -------------------------------------------------------
  76.     Fnav.set     (list of associated applications and file extensions)
  77.     Fnav.ext     (List of associated icon numbers and file extensions)
  78.     fnav_icn.png (icons)
  79.     fnav_fnt png (font)
  80.     fnav_cur png (cursor)
  81.  
  82. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;