Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
9506 leency 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
    Right button                activate popup menu
16
 
17
Keyboard control:
18
-----------------------
19
    Home                  to top of list
20
    End                   to bottom of list
21
    PageUp                one page up
22
    PageDown              one page down
23
    ArrowUp               one item up
24
    ArrowDown             one item down
25
    Rightctrl + Home      to top of the list without changing the selection
26
    Rightctrl + END       to bottom of the list without changing the selection
27
    Rightctrl + PageUp    one page up without changing the selection
28
    Rightctrl + PageDown  one page down without changing the selection
29
    Rightctrl + ArrowUp   one element up without changing the selection
30
    Rightctrl + ArrowDown one element down without changing the selection
31
    Rightctrl + L         go to address bar
32
    BACKSPACE             go to parent directory
33
    Arrowleft             go to previous directory
34
    Arrowright            go to next directory
35
    Enter                 go to the selected directory (or entered in the address bar) or
36
                          open(launch) the selected file
37
 
38
                  move to the next item that begins with this character
39
    RightShift +  go to the previous item in the list that begins with this character
40
 
41
    F5                    refresh the list of files
42
    MENU                  activate popup menu
43
 
44
Multiple selection of list items:
45
-----------------------------------------
46
Mouse or keyboard:
47
    RightShift + (ArrowUp|ArrowDown|PageUp|PageDown|Home|End)
48
    Leftctrl + A select all
49
 
50
List item actions:
51
-----------------------------
52
    Leftctrl + X        cut
53
    Leftctrl + C        copy
54
    Leftctrl + V        insert
55
    Leftctrl + R        rename
56
    Delete              delete
57
    Insert              create file
58
    RightShift + Insert create folder
59
 
60
Sort a list by using the keyboard:
61
---------------------------------------
62
    Ctrl + F2 by type
63
    Ctrl + F3 by name
64
    Ctrl + F4 by extension
65
    Ctrl + F5 by size
66
    Ctrl + F6 by date
67
    Ctrl + F7 by attributes
68
 
69
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
70
 
71
Libraries used:
72
------------------------
73
    Box_lib (Edit_box, ScrollBar)
74
    Libimg  (loading icons, cursors, and fonts)
75
    buf2d   (list rendering)
76
 
77
The following files should be in the application folder:
78
-------------------------------------------------------
79
    Fnav.set     (list of associated applications and file extensions)
80
    Fnav.ext     (List of associated icon numbers and file extensions)
81
    fnav_icn.png (icons)
82
    fnav_fnt png (font)
83
    fnav_cur png (cursor)
84
 
85
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;