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
|
/**
* vimb - a webkit based vim like browser.
*
* Copyright (C) 2012-2013 Daniel Carl
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
#ifndef _COMMAND_H
#define _COMMAND_H
/*
bitmap
1: primary cliboard
2: secondary cliboard
3: yank uri
4: yank selection
*/
enum {
COMMAND_YANK_URI = (VB_CLIPBOARD_SECONDARY<<1),
COMMAND_YANK_SELECTION = (VB_CLIPBOARD_SECONDARY<<2)
};
enum {
COMMAND_ZOOM_OUT,
COMMAND_ZOOM_IN,
COMMAND_ZOOM_FULL = (1<<1),
COMMAND_ZOOM_RESET = (1<<2)
};
enum {
COMMAND_SAVE_CURRENT,
COMMAND_SAVE_URI
};
typedef gboolean (*Command)(const Arg *arg);
void command_init(void);
void command_cleanup(void);
gboolean command_parse_from_string(const char *input, Command *func, Arg *arg, guint *count);
gboolean command_run_string(const char *input);
gboolean command_run_multi(const Arg *arg);
gboolean command_fill_completion(GtkListStore *store, const char *input);
gboolean command_open(const Arg *arg);
gboolean command_open_home(const Arg *arg);
gboolean command_open_closed(const Arg *arg);
gboolean command_input(const Arg *arg);
gboolean command_close(const Arg *arg);
gboolean command_view_source(const Arg *arg);
gboolean command_navigate(const Arg *arg);
gboolean command_scroll(const Arg *arg);
gboolean command_map(const Arg *arg);
gboolean command_unmap(const Arg *arg);
gboolean command_set(const Arg *arg);
gboolean command_inspect(const Arg *arg);
gboolean command_hints(const Arg *arg);
gboolean command_yank(const Arg *arg);
gboolean command_paste(const Arg *arg);
gboolean command_search(const Arg *arg);
gboolean command_selsearch(const Arg *arg);
gboolean command_shortcut(const Arg *arg);
gboolean command_shortcut_default(const Arg *arg);
gboolean command_zoom(const Arg *arg);
gboolean command_history(const Arg *arg);
gboolean command_bookmark(const Arg *arg);
gboolean command_eval(const Arg *arg);
gboolean command_editor(const Arg *arg);
gboolean command_nextprev(const Arg *arg);
gboolean command_descent(const Arg *arg);
gboolean command_save(const Arg *arg);
gboolean command_shellcmd(const Arg *arg);
#endif /* end of include guard: _COMMAND_H */
|