1 /***************************************************************************
2  *   Copyright (C) 2012~2012 by Yichao Yu                                  *
3  *   yyc1992@gmail.com                                                     *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.              *
19  ***************************************************************************/
20 #include "clipboard-internal.h"
21 
22 CONFIG_BINDING_BEGIN(FcitxClipboardConfig);
23 CONFIG_BINDING_REGISTER("Clipboard", "SaveHistoryToFile", save_history);
24 CONFIG_BINDING_REGISTER("Clipboard", "HistoryLength", history_len);
25 CONFIG_BINDING_REGISTER("Clipboard", "CandidateMaxLength", cand_max_len);
26 CONFIG_BINDING_REGISTER("Clipboard", "TriggerKey", trigger_key);
27 CONFIG_BINDING_REGISTER("Clipboard", "UsePrimary", use_primary);
28 CONFIG_BINDING_REGISTER("Clipboard", "ChooseModifier", choose_modifier);
29 CONFIG_BINDING_REGISTER("Clipboard", "IgnoreBlank", ignore_blank);
30 CONFIG_BINDING_END();
31