Fix compilation
[hclip.git] / README
1 hclip - Simple clipboard history application that keeps history of clipboard 
2 operations and allows you to put previously copied items back to the clipboard 
3 for pasting to other applications.
4
5 Aplications works withouit main window and it's very simple, all configurable
6 options are configured at compile time as defines at begining of source file.
7
8 Item in list may be locked (and unlocked) by right click. Locked items stay 
9 forever in list.
10
11 hclip works only with text content of clipborad and simply ignore all other 
12 types. hclip correctly works with encodings because internally it works with 
13 UTF-8 encoding which is provided by GTK 2 clipboard interface.
14
15 NHistItem - maximum number of remembering clipboard's items
16 MaxItemName - maximum length in characters of displayed name of items
17 KeyToPopup - key which should be pressed to call menu of item's list
18 MaskKeyToPopup - key's modificator of KeyToPopup
19
20 Default values:
21 NHistItem           16
22 MaxItemName         32
23 Key to call list    Ctrl+B
24
25 Tested on FreeBSD with GTK 2.10.6
26
27 Author: Teodor Sigaev <teodor@sigaev.ru>