-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
130 lines (95 loc) · 2.74 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
NAME
QVV -- Qt-based compact image viewer
SYNOPSIS
qvv [image-files...]
QVV will open all images specified at the command line.
If started without arguments, will open file browser window.
INSTALL
QVV supports QT 4.x and QT 5.x.
to generate compile Makefile you have to choose appropriate qmake file:
qvv.qt4.pro -- for QT 4.x
qvv.qt5.pro -- for QT 5.x
qmake is Qt utility which creates Makefile accordingly to your Qt
installation paths and other parameters.
type "qmake qvv.qt4.pro" or "qmake qvv.qt5.pro" and wait for Makefile to
be generated.
type 'make' and wait for the 'qvv' binary -- if you don't succeed
try use precompiled qvv pack or contact the author.
QVV has no external run-time dependancies.
then take qvv binary and put it somewhere in the $PATH, for example
/usr/local/bin/ or /usr/bin/ are fine.
requirements for compile process:
Qt 4.x -- http://qt.io
Qt 5.x -- http://qt.io
under debian you need to run:
apt-get install g++ qt-sdk
KEYBOARD REFERENCE
Press F1 inside QVV to get help about keyboard shortcuts or
check qvv_help.html file.
Images List Browser Window Keys
[
show previous image
]
show next image
*
show random image
~
got to user home directory
DELETE
moves all selected/current image to the trash ($HOME/.qvv4_trash_can)
Image View Window Keys
[ or PageUp
show previous image
] or PageDown
show next image
Mouse Wheel Up/Down
show previous/next image
*
show random image
ARROW KEYS
move image window
F3
show image list browser (if hidden)
F4
close image
ESC
close image
ENTER
close image
0
fit image to display if larger (scale down)
1
show image at 100% (1:1)
2
show image at 200%
3
show image at 300%
4
show image at 400%
5
show image at 500%
+
increase scale by 10%
-
decrease scale by 10%
z
scale image to screen size, keep aspect ratio
x
scale image to screen size
INSERT
center image
DELETE
moves this image to the trash can ($HOME/.qvv4_trash_can)
FEEDBACK
You can contact me with any notes you have at:
mailto:[email protected]
mailto:[email protected]
mailto:[email protected]
LICENSE
GPLv2, check COPYING file for license usege details.
AUTHOR, WEBSITE & GITHUB
1999-2021 (c) Vladi Belperchinov-Shabanski "Cade"
http://cade.noxrun.com/projects/qvv
http://github.com/cade-vs/qvv
EOF