bump product version to 5.0.4.1
[LibreOffice.git] / extensions / source / bibliography / toolbar.src
blob1c02b36a32780e2c3248925b1ec3751ea59c4cbe
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 #include <svx/svxids.hrc>
20 #include "bibliography.hrc"
21 #include "toolbar.hrc"
22 #include "svx/svxcommands.h"
24 #define MASKCOLOR   MaskColor = Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; };
26 ToolBox RID_BIB_TOOLBAR
28     HelpId = HID_BIB_DB_TBX;
29     Sizeable = TRUE ;
30     HideWhenDeactivate = TRUE ;
31     LineSpacing = TRUE ;
32     Border = TRUE ;
33     SVLook = TRUE ;
34     Pos = MAP_APPFONT ( 0 , 0 ) ;
35     Size = MAP_APPFONT ( 200 , 16 ) ;
36     ButtonType = BUTTON_SYMBOL ;
37     ItemList =
38     {
39         ToolBoxItem
40         {
41             Identifier = TBC_FT_SOURCE;
42             Text [ en-US ] = "Table";
43         };
44         ToolBoxItem
45         {
46             Identifier = TBC_LB_SOURCE;
47             HelpID = HID_BIB_TBX_TABLE;
48             Command = ".uno:Bib/source" ;
49         };
50         ToolBoxItem
51         {
52             Type = TOOLBOXITEM_SEPARATOR ;
53         };
55         ToolBoxItem
56         {
57             Identifier = TBC_FT_QUERY;
58             Text [ en-US ] = "Search Key";
59         };
60         ToolBoxItem
61         {
62             Identifier = TBC_ED_QUERY;
63             HelpID = HID_BIB_TBX_SEARCH;
64             Command = ".uno:Bib/query" ;
65         };
66         ToolBoxItem
67         {
68             Type = TOOLBOXITEM_SEPARATOR ;
69         };
71         ToolBoxItem
72         {
73             Identifier = TBC_BT_AUTOFILTER ;
74             HelpID = HID_BIB_TBX_AUTOFILTER;
75             DropDown = TRUE ;
76             Command = ".uno:Bib/autoFilter" ;
77             Text [ en-US ] = "AutoFilter";
78         };
80         ToolBoxItem
81         {
82             Identifier = TBC_BT_FILTERCRIT ;
83             Command = ".uno:Bib/standardFilter" ;
84             Text [ en-US ] = "Standard Filter";
85         };
87         ToolBoxItem
88         {
89             Identifier = TBC_BT_REMOVEFILTER ;
90             Command = ".uno:Bib/removeFilter" ;
91             Text [ en-US ] = "Reset Filter";
92         };
93         ToolBoxItem
94         {
95             Identifier = TBC_BT_COL_ASSIGN ;
96             HelpId = HID_BIB_MAPPINGDLG;
97             Text [ en-US ] = "Column Arrangement";
98         };
99         ToolBoxItem
100         {
101             Identifier = TBC_BT_CHANGESOURCE ;
102             HelpId = HID_BIB_CHANGESOURCE;
103             Command = ".uno:Bib/sdbsource" ;
104             Checkable=TRUE;
105             Text [ en-US ] = "Data Source";
106         };
107     };
108     Scroll = TRUE ;
110 #define BIB_IMAGES \
111     IdList =                                \
112     {                                       \
113         SID_FM_AUTOFILTER;      /*10716*/     \
114         SID_FM_FILTERCRIT;      /*10715*/     \
115         SID_FM_REMOVE_FILTER_SORT ; /*10711*/ \
116     };                                     \
117     IdCount = { 3; };
119 ImageList RID_TOOLBAR_IMGLIST
121     Prefix = "sc";
122     MASKCOLOR
123     BIB_IMAGES
126 ImageList RID_TOOLBAR_BIGIMGLIST
128     Prefix = "lc";
129     MASKCOLOR
130     BIB_IMAGES
133 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */