Subversion Repositories Kolibri OS

Rev

Rev 7042 | 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
7409 0CodErr 15
    Right button                activate popup menu
6580 leency 16
 
7022 0CodErr 17
Keyboard control:
6580 leency 18
-----------------------
7022 0CodErr 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
6580 leency 37
 
7022 0CodErr 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
6580 leency 40
 
7022 0CodErr 41
    F5                    refresh the list of files
7409 0CodErr 42
    MENU                  activate popup menu
7022 0CodErr 43
 
44
Multiple selection of list items:
6580 leency 45
-----------------------------------------
7022 0CodErr 46
Mouse or keyboard:
6580 leency 47
    RightShift + (ArrowUp|ArrowDown|PageUp|PageDown|Home|End)
7022 0CodErr 48
    Leftctrl + A select all
6580 leency 49
 
7022 0CodErr 50
List item actions:
6580 leency 51
-----------------------------
7022 0CodErr 52
    Leftctrl + X        cut
53
    Leftctrl + C        copy
54
    Leftctrl + V        insert
7042 0CodErr 55
    Leftctrl + R        rename
7022 0CodErr 56
    Delete              delete
57
    Insert              create file
58
    RightShift + Insert create folder
6580 leency 59
 
7022 0CodErr 60
Sort a list by using the keyboard:
6580 leency 61
---------------------------------------
7022 0CodErr 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
6580 leency 68
 
69
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
70
 
7022 0CodErr 71
Libraries used:
6580 leency 72
------------------------
7022 0CodErr 73
    Box_lib (Edit_box, ScrollBar)
74
    Libimg  (loading icons, cursors, and fonts)
75
    buf2d   (list rendering)
6580 leency 76
 
7022 0CodErr 77
The following files should be in the application folder:
6580 leency 78
-------------------------------------------------------
7022 0CodErr 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)
6580 leency 84
 
85
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;