forked from amazingfate/loongoffice
116 lines
4.0 KiB
Plaintext
116 lines
4.0 KiB
Plaintext
/* -*- 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 .
|
|
*/
|
|
#include "svx/dialogs.hrc"
|
|
|
|
#define VS_SPACING_WIDTH 80
|
|
#define CUSTOM_HEIGHT CBOX_HEIGHT + MBOX_HEIGHT + POPUPPANEL_MARGIN_LARGE * 3 + POPUPPANEL_MARGIN_SMALL * 2 + TEXT_HEIGHT * 2
|
|
#define CUSTOM_WIDTH VS_SPACING_WIDTH - 8
|
|
#define CUSTOM_X POPUPPANEL_MARGIN_LARGE + OFFSET_X + 1
|
|
#define CUSTOM_Y OFFSET_Y + POPUPPANEL_MARGIN_SMALL * 3 + 15 * 6 + TEXT_HEIGHT
|
|
#define VS_UNDERLINE_WIDTH 57
|
|
#define VS_UNDERLINE_HEIGHT 12 * 10
|
|
|
|
//popup window underline
|
|
#define VS_UNDERLINE 1
|
|
#define PB_OPTIONS 2
|
|
|
|
#define IMG_SINGLE 10
|
|
#define IMG_DOUBLE 11
|
|
#define IMG_BOLD2 12
|
|
#define IMG_DOT 13
|
|
#define IMG_DOT_BOLD 14
|
|
#define IMG_DASH 15
|
|
#define IMG_DASH_LONG 16
|
|
#define IMG_DASH_DOT 17
|
|
#define IMG_DASH_DOT_DOT 18
|
|
#define IMG_WAVE 19
|
|
|
|
#define STR_SINGLE 20
|
|
#define STR_DOUBLE 21
|
|
#define STR_BOLD 22
|
|
#define STR_DOT 23
|
|
#define STR_DOT_BOLD 24
|
|
#define STR_DASH 25
|
|
#define STR_DASH_LONG 26
|
|
#define STR_DASH_DOT 27
|
|
#define STR_DASH_DOT_DOT 28
|
|
#define STR_WAVE 29
|
|
|
|
#define IMG_SINGLE_SEL 40
|
|
#define IMG_DOUBLE_SEL 41
|
|
#define IMG_BOLD2_SEL 42
|
|
#define IMG_DOT_SEL 43
|
|
#define IMG_DOT_BOLD_SEL 44
|
|
#define IMG_DASH_SEL 45
|
|
#define IMG_DASH_LONG_SEL 46
|
|
#define IMG_DASH_DOT_SEL 47
|
|
#define IMG_DASH_DOT_DOT_SEL 48
|
|
#define IMG_WAVE_SEL 49
|
|
|
|
#define STR_WITHOUT 50
|
|
|
|
//POPUP WINDOW OF SPACING
|
|
#define VS_SPACING 1
|
|
|
|
#define CT_BORDER 7
|
|
#define LB_KERNING 8
|
|
#define ED_KERNING 9
|
|
|
|
#define FT_SPACING 18
|
|
#define FT_BY 19
|
|
#define FT_LASTCUSTOM 20
|
|
|
|
#define IMG_NORMAL 31
|
|
#define IMG_VERY_TIGHT 32
|
|
#define IMG_TIGHT 33
|
|
#define IMG_LOOSE 34
|
|
#define IMG_VERY_LOOSE 35
|
|
#define IMG_CUSTOM 36
|
|
#define IMG_CUSTOM_GRAY 37
|
|
|
|
#define IMG_NORMAL_S 51
|
|
#define IMG_VERY_TIGHT_S 52
|
|
#define IMG_TIGHT_S 53
|
|
#define IMG_LOOSE_S 54
|
|
#define IMG_VERY_LOOSE_S 55
|
|
|
|
#define STR_VERY_TIGHT 61
|
|
#define STR_TIGHT 62
|
|
#define STR_NORMAL 63
|
|
#define STR_LOOSE 64
|
|
#define STR_VERY_LOOSE 65
|
|
#define STR_CUSTOM 66
|
|
|
|
#define STR_VERY_TIGHT_TIP 67
|
|
#define STR_TIGHT_TIP 68
|
|
#define STR_NORMAL_TIP 69
|
|
#define STR_LOOSE_TIP 70
|
|
#define STR_VERY_LOOSE_TIP 71
|
|
|
|
#define STR_CUSTOM_C_TIP 72
|
|
#define STR_CUSTOM_E_TIP 73
|
|
#define STR_PT 74
|
|
|
|
//help ids
|
|
#define HID_UNDERLINE_BTN "SVX_HID_UNDERLINE_BTN"
|
|
#define HID_SPACING_CB_KERN "SVX_HID_SPACING_CB_KERN"
|
|
#define HID_SPACING_MB_KERN "SVX_HID_SPACING_MB_KERN"
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|