1 /**
2  * UGENE - Integrated Bioinformatics Tools.
3  * Copyright (C) 2008-2021 UniPro <ugene@unipro.ru>
4  * http://ugene.net
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  * MA 02110-1301, USA.
20  */
21 
22 #ifndef _U2_ADV_CONSTANTS_H_
23 #define _U2_ADV_CONSTANTS_H_
24 
25 namespace U2 {
26 
27 #define ADV_MENU_ANALYSE "ADV_MENU_ANALYSE"
28 #define ADV_MENU_COPY "ADV_MENU_COPY"
29 #define ADV_COPY_TRANSLATION_ACTION "ADV_COPY_TRANSLATION_ACTION"
30 #define ADV_MENU_SELECT "ADV_MENU_SELECT"
31 #define ADV_MENU_ADD "ADV_MENU_ADD"
32 #define ADV_MENU_REMOVE "ADV_MENU_REMOVE"
33 #define ADV_MENU_ZOOM "ADV_MENU_ZOOM"
34 #define ADV_MENU_ALIGN "ADV_MENU_ALIGN"
35 #define ADV_MENU_EXPORT "ADV_MENU_EXPORT"
36 #define ADV_GOTO_ACTION "ADV_GOTO_ACTION"
37 #define ADV_MENU_SECTION1_SEP "ADV_MENU_SEC1_SEP"
38 #define ADV_MENU_SECTION2_SEP "ADV_MENU_SEC2_SEP"
39 #define ADV_MENU_EDIT "ADV_MENU_EDIT"
40 #define ADV_MENU_REPLACE_WHOLE_SEQUENCE "ADV_MENU_REPLACE_WHOLE_SEQUENCE"
41 
42 #define SEQ_EDIT_SETTINGS_ROOT "sequence_edit_settings/"
43 #define SEQ_EDIT_SETTINGS_ANNOTATION_STRATEGY "annotation_strategy"
44 #define SEQ_EDIT_SETTINGS_RECALC_QUALIFIERS "recalculate_qualifiers"
45 
46 #define ANNOTATED_DNA_VIEW_FACTORY_ID "AnnotatedDNAView"
47 
48 }  // namespace U2
49 
50 #endif
51