xref: /trunk/main/sd/source/ui/dlg/tpaction.src (revision 36a981aef5024e2d3590132f716f67ef73eafba1)
166220049SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
366220049SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
466220049SAndrew Rist * or more contributor license agreements.  See the NOTICE file
566220049SAndrew Rist * distributed with this work for additional information
666220049SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
766220049SAndrew Rist * to you under the Apache License, Version 2.0 (the
866220049SAndrew Rist * "License"); you may not use this file except in compliance
966220049SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
1166220049SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
1366220049SAndrew Rist * Unless required by applicable law or agreed to in writing,
1466220049SAndrew Rist * software distributed under the License is distributed on an
1566220049SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1666220049SAndrew Rist * KIND, either express or implied.  See the License for the
1766220049SAndrew Rist * specific language governing permissions and limitations
1866220049SAndrew Rist * under the License.
19cdf0e10cSrcweir *
2066220049SAndrew Rist *************************************************************/
2166220049SAndrew Rist
2266220049SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "app.hrc"
25cdf0e10cSrcweir#include "helpids.h"
26cdf0e10cSrcweir#include "tpaction.hrc"
27cdf0e10cSrcweir#include <svtools/controldims.hrc>
28cdf0e10cSrcweir
29cdf0e10cSrcweirTabPage TP_ANIMATION
30cdf0e10cSrcweir{
31cdf0e10cSrcweir    HelpID = CMD_SID_ANIMATION_EFFECTS ;
32cdf0e10cSrcweir    Pos = MAP_APPFONT ( 0 , 0 ) ;
33cdf0e10cSrcweir    Size = MAP_APPFONT ( 260 , 164 ) ;
34cdf0e10cSrcweir    Hide = TRUE ;
35cdf0e10cSrcweir    // always visible ---------------------------------------------------------------------
36cdf0e10cSrcweir#define MA_ACTIONLB_TOP     (RSC_SP_DLG_INNERBORDER_TOP + (2*RSC_CD_PUSHBUTTON_HEIGHT + RSC_SP_CTRL_GROUP_Y - RSC_CD_DROPDOWN_HEIGHT) / 2)
37cdf0e10cSrcweir#define MA_ACTIONLB_LEFT    (103)
38cdf0e10cSrcweir    FixedText FT_ACTION
39cdf0e10cSrcweir    {
40cdf0e10cSrcweir        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT , MA_ACTIONLB_TOP + 1 ) ;
41cdf0e10cSrcweir        Size = MAP_APPFONT ( 86 , 10 ) ;
42cdf0e10cSrcweir        Hide = TRUE ;
43cdf0e10cSrcweir        Text [ en-US ] = "Action at mouse click" ;
44cdf0e10cSrcweir    };
45cdf0e10cSrcweir    ListBox LB_ACTION
46cdf0e10cSrcweir    {
47cdf0e10cSrcweir        HelpID = "sd:ListBox:TP_ANIMATION:LB_ACTION" ;
48cdf0e10cSrcweir        Border = TRUE ;
49cdf0e10cSrcweir        Pos = MAP_APPFONT ( MA_ACTIONLB_LEFT , MA_ACTIONLB_TOP ) ;
50cdf0e10cSrcweir        Size = MAP_APPFONT ( 150 - RSC_SP_GRP_INNERBORDER_RIGHT , 79 ) ;
51cdf0e10cSrcweir        Hide = TRUE ;
52cdf0e10cSrcweir        TabStop = TRUE ;
53cdf0e10cSrcweir        DropDown = TRUE ;
54cdf0e10cSrcweir    };
55cdf0e10cSrcweir
56cdf0e10cSrcweir    // sometimes visible ---------------------------------------------------------------------
57cdf0e10cSrcweir
58cdf0e10cSrcweir#define MA_Y0 (MA_ACTIONLB_TOP + RSC_CD_DROPDOWN_HEIGHT + RSC_SP_FLGR_SPACE_Y + RSC_SP_FLGR_INNERBORDER_BOTTOM)
59cdf0e10cSrcweir#define MA_Y1 (MA_Y0 + RSC_CD_FIXEDLINE_HEIGHT + RSC_SP_FLGR_INNERBORDER_TOP)
60cdf0e10cSrcweir#define MA_Y2 (MA_Y1 + RSC_CD_DROPDOWN_HEIGHT + RSC_SP_CTRL_GROUP_Y)
61cdf0e10cSrcweir#define MA_Y3 (MA_Y2 + 3*(RSC_CD_RADIOBUTTON_HEIGHT + RSC_SP_CTRL_GROUP_Y))
62cdf0e10cSrcweir#define MA_Y4 (MA_Y3 + RSC_CD_DROPDOWN_HEIGHT + RSC_SP_CTRL_GROUP_Y)
63cdf0e10cSrcweir
64cdf0e10cSrcweir    Edit EDT_SOUND
65cdf0e10cSrcweir    {
66cdf0e10cSrcweir        HelpID = "sd:Edit:TP_ANIMATION:EDT_SOUND" ;
67cdf0e10cSrcweir        Border = TRUE ;
68cdf0e10cSrcweir        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT + RSC_SP_CHK_TEXTINDENT , MA_Y4 + RSC_CD_CHECKBOX_HEIGHT + 1 ) ;
69cdf0e10cSrcweir        Size = MAP_APPFONT ( 247 - 65 - 10 - (RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT + RSC_SP_CHK_TEXTINDENT) , 12 ) ;
70cdf0e10cSrcweir        TabStop = TRUE ;
71cdf0e10cSrcweir        Hide = TRUE ;
72cdf0e10cSrcweir    };
73cdf0e10cSrcweir
74cdf0e10cSrcweir     // Es ist schon wichtig, da� Durchsuchen (search) und Suchen (seek/find) unter-
75cdf0e10cSrcweir     // schiedlich heissen, da sie eben auch eine unterschiedliche Bedeutung haben
76cdf0e10cSrcweir    PushButton BTN_SEARCH
77cdf0e10cSrcweir    {
78cdf0e10cSrcweir        HelpID = "sd:PushButton:TP_ANIMATION:BTN_SEARCH" ;
79cdf0e10cSrcweir        Pos = MAP_APPFONT ( 247 - 65, MA_Y4 + RSC_CD_CHECKBOX_HEIGHT ) ;
80cdf0e10cSrcweir        Size = MAP_APPFONT ( 65 , 14 ) ;
81cdf0e10cSrcweir        TabStop = TRUE ;
82cdf0e10cSrcweir        Hide = TRUE ;
83cdf0e10cSrcweir        Text [ en-US ] = "~Browse..." ;
84cdf0e10cSrcweir    };
85cdf0e10cSrcweir
86cdf0e10cSrcweir    //------------------------------------
87cdf0e10cSrcweir    // Goto page/object/document stuff
88cdf0e10cSrcweir    FixedText FT_TREE
89cdf0e10cSrcweir    {
90cdf0e10cSrcweir        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT , MA_Y0 + 4 );
91cdf0e10cSrcweir        Size = MAP_APPFONT ( 86 , 10 ) ;
92cdf0e10cSrcweir        Hide = TRUE ;
93cdf0e10cSrcweir    };
94cdf0e10cSrcweir    Control LB_TREE
95cdf0e10cSrcweir    {
96cdf0e10cSrcweir        HelpID = HID_CTL_ACTION_DLG_1 ;
97cdf0e10cSrcweir        Border = TRUE ;
98cdf0e10cSrcweir        Pos = MAP_APPFONT ( MA_ACTIONLB_LEFT, MA_Y0 + 3 ) ;
99cdf0e10cSrcweir        Size = MAP_APPFONT ( 150 - RSC_SP_GRP_INNERBORDER_RIGHT , 77 ) ;
100cdf0e10cSrcweir        TabStop = TRUE ;
101cdf0e10cSrcweir        Hide = TRUE ;
102cdf0e10cSrcweir    };
103cdf0e10cSrcweir    Control LB_TREE_DOCUMENT
104cdf0e10cSrcweir    {
105cdf0e10cSrcweir        HelpID = HID_CTL_ACTION_DLG_2 ;
106cdf0e10cSrcweir        Border = TRUE ;
107cdf0e10cSrcweir        Pos = MAP_APPFONT ( MA_ACTIONLB_LEFT, MA_Y0 + 3 ) ;
108cdf0e10cSrcweir        Size = MAP_APPFONT ( 150 - RSC_SP_GRP_INNERBORDER_RIGHT , 77 ) ;
109cdf0e10cSrcweir        TabStop = TRUE ;
110cdf0e10cSrcweir        Hide = TRUE ;
111cdf0e10cSrcweir    };
112cdf0e10cSrcweir    ListBox LB_OLE_ACTION
113cdf0e10cSrcweir    {
114cdf0e10cSrcweir        HelpID = "sd:ListBox:TP_ANIMATION:LB_OLE_ACTION" ;
115cdf0e10cSrcweir        Border = TRUE ;
116cdf0e10cSrcweir        Pos = MAP_APPFONT ( MA_ACTIONLB_LEFT, MA_Y0 + 3 ) ;
117cdf0e10cSrcweir        Size = MAP_APPFONT ( 150 - RSC_SP_GRP_INNERBORDER_RIGHT , 77 ) ;
118cdf0e10cSrcweir        TabStop = TRUE ;
119cdf0e10cSrcweir        Hide = TRUE ;
120cdf0e10cSrcweir    };
121cdf0e10cSrcweir    FixedLine FL_SEPARATOR
122cdf0e10cSrcweir    {
123cdf0e10cSrcweir        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT , MA_Y1 + 63 + RSC_SP_FLGR_SPACE_Y + RSC_SP_FLGR_INNERBORDER_BOTTOM + 6 ) ;
124cdf0e10cSrcweir        Size = MAP_APPFONT ( 247 , 8 ) ;
125cdf0e10cSrcweir        Hide = TRUE ;
126cdf0e10cSrcweir    };
127cdf0e10cSrcweir    Edit EDT_BOOKMARK
128cdf0e10cSrcweir    {
129cdf0e10cSrcweir        HelpID = "sd:Edit:TP_ANIMATION:EDT_BOOKMARK" ;
130cdf0e10cSrcweir        Border = TRUE ;
131cdf0e10cSrcweir        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT , MA_Y4 + RSC_CD_CHECKBOX_HEIGHT + 1 ) ;
132cdf0e10cSrcweir        Size = MAP_APPFONT ( 247 - 65 - 10 - (RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT) , 12 ) ;
133cdf0e10cSrcweir        TabStop = TRUE ;
134cdf0e10cSrcweir        Hide = TRUE ;
135cdf0e10cSrcweir    };
136cdf0e10cSrcweir    Edit EDT_DOCUMENT
137cdf0e10cSrcweir    {
138cdf0e10cSrcweir        HelpID = "sd:Edit:TP_ANIMATION:EDT_DOCUMENT" ;
139cdf0e10cSrcweir        Border = TRUE ;
140cdf0e10cSrcweir        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT , MA_Y4 + RSC_CD_CHECKBOX_HEIGHT + 1 ) ;
141cdf0e10cSrcweir        Size = MAP_APPFONT ( 247 - 65 - 10 - (RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT) , 12 ) ;
142cdf0e10cSrcweir        TabStop = TRUE ;
143cdf0e10cSrcweir        Hide = TRUE ;
144cdf0e10cSrcweir    };
145cdf0e10cSrcweir    Edit EDT_PROGRAM
146cdf0e10cSrcweir    {
147cdf0e10cSrcweir        HelpID = "sd:Edit:TP_ANIMATION:EDT_PROGRAM" ;
148cdf0e10cSrcweir        Border = TRUE ;
149cdf0e10cSrcweir        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT , MA_Y4 + RSC_CD_CHECKBOX_HEIGHT + 1 ) ;
150cdf0e10cSrcweir        Size = MAP_APPFONT ( 247 - 65 - 10 - (RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT) , 12 ) ;
151cdf0e10cSrcweir        TabStop = TRUE ;
152cdf0e10cSrcweir        Hide = TRUE ;
153cdf0e10cSrcweir    };
154cdf0e10cSrcweir    Edit EDT_MACRO
155cdf0e10cSrcweir    {
156cdf0e10cSrcweir        HelpID = "sd:Edit:TP_ANIMATION:EDT_MACRO" ;
157cdf0e10cSrcweir        Border = TRUE ;
158cdf0e10cSrcweir        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT , MA_Y4 + RSC_CD_CHECKBOX_HEIGHT + 1 ) ;
159cdf0e10cSrcweir        Size = MAP_APPFONT ( 247 - 65 - 10 - (RSC_SP_DLG_INNERBORDER_LEFT + RSC_SP_FLGR_INNERBORDER_LEFT) , 12 ) ;
160cdf0e10cSrcweir        TabStop = TRUE ;
161cdf0e10cSrcweir        Hide = TRUE ;
162cdf0e10cSrcweir    };
163cdf0e10cSrcweir    PushButton BTN_SEEK
164cdf0e10cSrcweir    {
165cdf0e10cSrcweir        HelpID = "sd:PushButton:TP_ANIMATION:BTN_SEEK" ;
166cdf0e10cSrcweir        Pos = MAP_APPFONT ( 247 - 65, MA_Y4 + RSC_CD_CHECKBOX_HEIGHT ) ;
167cdf0e10cSrcweir        Size = MAP_APPFONT ( 65, 14 ) ;
168cdf0e10cSrcweir        TabStop = TRUE ;
169cdf0e10cSrcweir        Hide = TRUE ;
170cdf0e10cSrcweir        Text [ en-US ] = "~Find" ;
171cdf0e10cSrcweir    };
172cdf0e10cSrcweir    String STR_PATHNAME
173cdf0e10cSrcweir    {
174cdf0e10cSrcweir        Text [ en-US ] = "Path Name" ;
175cdf0e10cSrcweir    };
176cdf0e10cSrcweir    Text [ en-US ] = "Interaction" ;
177cdf0e10cSrcweir};
178cdf0e10cSrcweir
179*36a981aeSmseidel// ********************************************************************** EOF
180