Subversion Repositories Kolibri OS

Rev

Rev 7022 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6580 leency 1
;;;;;;;;;;;;;
2
;;; fNav ;;;;
3
;;;;;;;;;;;;;
4
 
7022 0CodErr 5
Application author: 0CodErr
6
Application address: http://board.kolibrios.org/viewtopic.php?f=44&t=2178
6580 leency 7
 
7022 0CodErr 8
fNav - file navigator for KolibriOS.
6580 leency 9
 
7022 0CodErr 10
Mouse control:
6580 leency 11
-----------------
7022 0CodErr 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
6580 leency 15
 
7022 0CodErr 16
Keyboard control:
6580 leency 17
-----------------------
7022 0CodErr 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
6580 leency 36
 
7022 0CodErr 37
                  move to the next item that begins with this character
38
    RightShift +  go to the previous item in the list that begins with this character
6580 leency 39
 
7022 0CodErr 40
    F5                    refresh the list of files
41
 
42
Multiple selection of list items:
6580 leency 43
-----------------------------------------
7022 0CodErr 44
Mouse or keyboard:
6580 leency 45
    RightShift + (ArrowUp|ArrowDown|PageUp|PageDown|Home|End)
7022 0CodErr 46
    Leftctrl + A select all
6580 leency 47
 
7022 0CodErr 48
List item actions:
6580 leency 49
-----------------------------
7022 0CodErr 50
    Leftctrl + X        cut
51
    Leftctrl + C        copy
52
    Leftctrl + V        insert
7042 0CodErr 53
    Leftctrl + R        rename
7022 0CodErr 54
    Delete              delete
55
    Insert              create file
56
    RightShift + Insert create folder
6580 leency 57
 
7022 0CodErr 58
Sort a list by using the keyboard:
6580 leency 59
---------------------------------------
7022 0CodErr 60
    Ctrl + F2 by type
61
    Ctrl + F3 by name
62
    Ctrl + F4 by extension
63
    Ctrl + F5 by size
64
    Ctrl + F6 by date
65
    Ctrl + F7 by attributes
6580 leency 66
 
67
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
68
 
7022 0CodErr 69
Libraries used:
6580 leency 70
------------------------
7022 0CodErr 71
    Box_lib (Edit_box, ScrollBar)
72
    Libimg  (loading icons, cursors, and fonts)
73
    buf2d   (list rendering)
6580 leency 74
 
7022 0CodErr 75
The following files should be in the application folder:
6580 leency 76
-------------------------------------------------------
7022 0CodErr 77
    Fnav.set     (list of associated applications and file extensions)
78
    Fnav.ext     (List of associated icon numbers and file extensions)
79
    fnav_icn.png (icons)
80
    fnav_fnt png (font)
81
    fnav_cur png (cursor)
6580 leency 82
 
83
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;