summaryrefslogtreecommitdiff
path: root/cui/source/tabpages/macroass.hrc
blob: 0eb1cb5f766b6ac9ec28a002bb158a36bc0dbd80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#ifndef _MACROASS_HRC
#define _MACROASS_HRC

#include <svtools/controldims.hrc>

#define     LB_EVENT                2
#define     PB_ASSIGN               3
#define     PB_DELETE               4
#define     FT_MACRO                5
#define     LB_GROUP                6
#define     LB_MACROS               7
    // FREE
#define     FT_LABEL4LB_MACROS      9
#define     STR_MACROS              11
#define     STR_EVENT               13
#define     STR_ASSMACRO            14


// COL0<---------------WIDTH_1_2--------------->COL3<->COL4<----WIDTH4---->COL5
//     <--WIDTH1-->COL1<-SPACE1->COL2<--WIDTH2->

#define WIDTH_TP        260                                     // of whole tabpage
#define COL5            (WIDTH_TP-RSC_SP_DLG_INNERBORDER_RIGHT)
#define COL4            (COL5-RSC_CD_PUSHBUTTON_WIDTH)
#define COL3            (COL4-RSC_SP_CTRL_X)
#define COL0            (RSC_SP_TBPG_INNERBORDER_LEFT)
#define WIDTH1_2        (COL3-COL0)                             // width of upper listbox
#define SPACE1          4                                       // space between lower listboxes
#define WIDTH1          ((WIDTH1_2-SPACE1)/2)                   // width of lower left listbox
#define WIDTH2          (WIDTH1_2-WIDTH1-SPACE1)                // width of lower right listbox
#define COL1            (COL0+WIDTH1)
#define COL2            (COL1+SPACE1)

#define HEIGHT_TP       185                                     // of whole tabpage
#define HEIGHT0         62                                      // of upper listbox
#define ROW0            6                                       // more than RSC_SP_FLGR_INNERBORDER_TOP cause of bad design
#define ROW1            (ROW0+RSC_CD_PUSHBUTTON_HEIGHT)         // Assign button
#define ROW2            (ROW1+RSC_SP_CTRL_GROUP_Y)
#define ROW3            (ROW2+RSC_CD_PUSHBUTTON_HEIGHT)         // Remove button
#define ROW4            (ROW3+RSC_SP_CTRL_GROUP_Y)
#define ROW5            (ROW4+RSC_CD_DROPDOWN_HEIGHT)           // script type listbox (hidden)
#define ROW6            (ROW0+HEIGHT0)
#define ROW7            (ROW6+RSC_SP_CTRL_Y)
#define HEIGHT_EXTRA7   (RSC_CD_FIXEDTEXT_HEIGHT)               // additional height for FT_LABEL4LB_MACROS
#define ROW7A           (ROW7+HEIGHT_EXTRA7)
#define ROW8            (ROW7+RSC_CD_FIXEDTEXT_HEIGHT+HEIGHT_EXTRA7)// label for lower listboxes (2 lines!)
#define ROW9            (HEIGHT_TP-RSC_SP_TBPG_INNERBORDER_BOTTOM)
#define HEIGHT8         (ROW9-ROW8)                             // of lower listboxes

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */