From 35029b250318b3a4f02cef5194abdd3f68311c43 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 26 May 2014 17:43:14 +0200 Subject: sw: move sw/source/core/uibase to sw/source/uibase It's too confusing to have UI code inside of core; the important part is that it's separated from the optional UI code in swui library. Change-Id: I640a52723d5802faf08f3b8eaa03cd937fd93449 --- sw/source/uibase/inc/frmui.hrc | 69 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 sw/source/uibase/inc/frmui.hrc (limited to 'sw/source/uibase/inc/frmui.hrc') diff --git a/sw/source/uibase/inc/frmui.hrc b/sw/source/uibase/inc/frmui.hrc new file mode 100644 index 000000000000..e138db1c02f3 --- /dev/null +++ b/sw/source/uibase/inc/frmui.hrc @@ -0,0 +1,69 @@ +/* -*- 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 _FRMUI_HRC +#define _FRMUI_HRC + +#include "rcid.hrc" +#include "globals.hrc" + +#define DLG_COLUMN (RC_FRMDLG_BEGIN + 4) + +#define DLG_CAPTION (RC_FRMDLG_BEGIN + 11) + +#define STR_FRMUI_BORDER (RC_FRMDLG_BEGIN + 16) +#define STR_FRMUI_PATTERN (RC_FRMDLG_BEGIN + 17) + +#define BMP_BEGIN (RC_FRMDLG_BEGIN + 18) +#define BMP_NOWRAP (BMP_BEGIN+5) + +#define BMP_END (BMP_NOWRAP) + +#define MN_BACKGROUND (BMP_END + 4) + +#define MN_FOOTNOTE (BMP_END + 7) + +#define STR_FRMDLG_BEGIN (MN_FOOTNOTE + 1) + +#define STR_TOPPRT (STR_FRMDLG_BEGIN + 1) + +#define STR_BORDER (STR_FRMDLG_BEGIN + 16) +#define STR_COLUMN (STR_FRMDLG_BEGIN + 17) +#define STR_CHAR (STR_FRMDLG_BEGIN + 19) + +#define STR_OLE_INSERT (STR_FRMDLG_BEGIN + 45) +#define STR_OLE_EDIT (STR_FRMDLG_BEGIN + 46) +#define STR_COLL_HEADER (STR_FRMDLG_BEGIN + 47) + +#define STR_LINE_TOP (STR_FRMDLG_BEGIN + 50) +#define STR_LINE_BOTTOM (STR_FRMDLG_BEGIN + 51) +#define STR_LINE_CENTER (STR_FRMDLG_BEGIN + 52) +#define STR_CHAR_TOP (STR_FRMDLG_BEGIN + 53) +#define STR_CHAR_BOTTOM (STR_FRMDLG_BEGIN + 54) +#define STR_CHAR_CENTER (STR_FRMDLG_BEGIN + 55) + +#define FRMDLG_ACT_END STR_CHAR_CENTER + +#if FRMDLG_ACT_END > RC_FRMDLG_END +#error Resource-Id Ueberlauf in #file, #line +#endif + +#endif // FRMUI_HRC + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit