fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / sd / source / ui / dlg / navigatr.src
blobf534c3f5611347c9bcfc669ae8f5e4fca4242a98
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  */
20 #include "navigatr.hrc"
21 #include "helpids.h"
22 #include "res_bmp.hrc"
23 #define BUTTON_WIDTH 13
24 #define BUTTON_COUNT 7
25 #define BUTTON_SIZE MAP_APPFONT( BUTTON_WIDTH, BUTTON_WIDTH );
26 Window FLT_NAVIGATOR
28     HelpId = HID_SD_NAVIGATOR ;
29     Size = MAP_APPFONT ( 12 + BUTTON_WIDTH * BUTTON_COUNT , 105 ) ;
30     Text = "Navigator" ;
31     SVLook = TRUE ;
32     DialogControl = TRUE;
33     Control TLB_OBJECTS
34     {
35         HelpId = HID_SD_NAVIGATOR_TLB ;
36         Border = TRUE ;
37         Pos = MAP_APPFONT ( 3 , 20 ) ;
38         Size = MAP_APPFONT ( 6 + BUTTON_WIDTH * BUTTON_COUNT , 67 ) ;
39         TabStop = TRUE ;
40     };
41     ToolBox 1
42     {
43         HelpId = HID_SD_NAVIGATOR_TBX ;
44         SVLook = TRUE ;
45         Pos = MAP_APPFONT ( 3 , 3 ) ;
46         Size = MAP_APPFONT ( 6 + BUTTON_WIDTH , 15 ) ;
47         TabStop = TRUE ;
48         ItemList =
49         {
50             ToolBoxItem
51             {
52                 AutoCheck = TRUE ;
53                 Identifier = TBI_PEN ;
54                 HelpId = HID_SD_NAVIGATOR_TBI_PEN ;
55                 Text [ en-US ] = "Pointer" ;
56             };
57             ToolBoxItem
58             {
59                 Type = TOOLBOXITEM_SEPARATOR ;
60             };
61             ToolBoxItem
62             {
63                 Identifier = TBI_FIRST ;
64                 HelpId = HID_SD_NAVIGATOR_TBI_FIRST ;
65                  //Symbol = IMAGEBUTTON_FIRST ;
66                 Text [ en-US ] = "First Slide" ;
67             };
68             ToolBoxItem
69             {
70                 Identifier = TBI_PREVIOUS ;
71                 HelpId = HID_SD_NAVIGATOR_TBI_PREV ;
72                  //Symbol = IMAGEBUTTON_PREV ;
73                 Text [ en-US ] = "Previous Slide" ;
74             };
75             ToolBoxItem
76             {
77                 Identifier = TBI_NEXT ;
78                 HelpId = HID_SD_NAVIGATOR_TBI_NEXT ;
79                  //Symbol = IMAGEBUTTON_NEXT ;
80                 Text [ en-US ] = "Next Slide" ;
81             };
82             ToolBoxItem
83             {
84                 Identifier = TBI_LAST ;
85                 HelpId = HID_SD_NAVIGATOR_TBI_LAST ;
86                  //Symbol = IMAGEBUTTON_LAST ;
87                 Text [ en-US ] = "Last Slide" ;
88             };
89             ToolBoxItem
90             {
91                 Type = TOOLBOXITEM_SEPARATOR ;
92             };
93             ToolBoxItem
94             {
95                 Identifier = TBI_DRAGTYPE ;
96                 HelpId = HID_SD_NAVIGATOR_TBI_DRAGTYPE ;
97                 DropDown = TRUE ;
98                  //Left = FALSE;
99                 Text [ en-US ] = "Drag Mode" ;
100             };
101             ToolBoxItem
102             {
103                 Identifier = TBI_SHAPE_FILTER ;
104                 HelpId = HID_SD_NAVIGATOR_TBI_SHAPE_FILTER ;
105                 DropDown = TRUE ;
106                 Text [ en-US ] = "Show Shapes" ;
107             };
108         };
109     };
110     ListBox LB_DOCS
111     {
112         HelpId = HID_SD_NAVIGATOR_LB ;
113         Border = TRUE ;
114         Pos = MAP_APPFONT ( 3 , 89 ) ;
115         Size = MAP_APPFONT ( 6 + BUTTON_WIDTH * BUTTON_COUNT , 90 ) ;
116         TabStop = TRUE ;
117         DropDown = TRUE ;
118         QuickHelpText [ en-US ] = "Documents" ;
119     };
121     #define NAVIGATR_IDLIST \
122         IdList =            \
123         {                   \
124             TBI_PEN ;   \
125             TBI_FIRST ; \
126             TBI_PREVIOUS ;  \
127             TBI_NEXT ;  \
128             TBI_LAST ;  \
129             TBI_EMBEDDED ;  \
130             TBI_LINK ; \
131             TBI_HYPERLINK ; \
132         };                 \
133         IdCount = { 8 ; };
135     #define IMAGE_STDBTN_COLOR Color { Red = 0xff00; Green = 0x0000; Blue = 0xff00; }
137     ImageList IL_NAVIGATR
138     {
139         Prefix = "nv";
140         MaskColor = IMAGE_STDBTN_COLOR ;
141         NAVIGATR_IDLIST
142     };
145 String STR_OBJECTS_TREE
147     Text [ en-US ] = "Page Tree";
150 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */