summaryrefslogtreecommitdiff
path: root/desktop/treeview.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2015-01-03 00:15:58 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2015-01-03 00:21:31 +0000
commiteb86217ead389050e76946b7be976b9147b16a52 (patch)
treecd7d4392668a16f2f8b1c383b1052bba482e1faf /desktop/treeview.h
parent21d5d30571dc3bd1b51999bcadfbb30d38d8336d (diff)
downloadnetsurf-eb86217ead389050e76946b7be976b9147b16a52.tar.gz
netsurf-eb86217ead389050e76946b7be976b9147b16a52.tar.bz2
Add ability to copy text from marked fields in selected nodes to clipboard.
Diffstat (limited to 'desktop/treeview.h')
-rw-r--r--desktop/treeview.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/treeview.h b/desktop/treeview.h
index 674c692d5..d4d4ce9a7 100644
--- a/desktop/treeview.h
+++ b/desktop/treeview.h
@@ -87,8 +87,8 @@ enum treeview_field_flags {
TREE_FLAG_NONE = 0, /**< No flags set */
TREE_FLAG_ALLOW_EDIT = (1 << 0), /**< Whether allow edit field */
TREE_FLAG_DEFAULT = (1 << 1), /**< Whether field is default */
- TREE_FLAG_SHOW_NAME = (1 << 2) /**< Whether field name shown */
-
+ TREE_FLAG_SHOW_NAME = (1 << 2), /**< Whether field name shown */
+ TREE_FLAG_COPY_TEXT = (1 << 3) /**< Whether to copy to clipb */
};
struct treeview_field_desc {
lwc_string *field; /**< A treeview field name */