LibreOffice Module svx (master) 1
tabledesign.hxx
Go to the documentation of this file.
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 */
19
20#ifndef INCLUDED_SVX_SDR_TABLE_TABLEDESIGN_HXX
21#define INCLUDED_SVX_SDR_TABLE_TABLEDESIGN_HXX
22
23#include <svx/svxdllapi.h>
24
25#include <com/sun/star/container/XNameAccess.hpp>
26
27namespace sdr::table
28{
29const sal_Int32 first_row_style = 0;
30const sal_Int32 last_row_style = 1;
31const sal_Int32 first_column_style = 2;
32const sal_Int32 last_column_style = 3;
33const sal_Int32 even_rows_style = 4;
34const sal_Int32 odd_rows_style = 5;
35const sal_Int32 even_columns_style = 6;
36const sal_Int32 odd_columns_style = 7;
37const sal_Int32 body_style = 8;
38const sal_Int32 background_style = 9;
39const sal_Int32 style_count = 10;
40
41extern SVX_DLLPUBLIC css::uno::Reference<css::container::XNameAccess> CreateTableDesignFamily();
42}
43
44#endif
45
46/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const sal_Int32 background_style
Definition: tabledesign.hxx:38
const sal_Int32 style_count
Definition: tabledesign.hxx:39
const sal_Int32 last_column_style
Definition: tabledesign.hxx:32
const sal_Int32 first_column_style
Definition: tabledesign.hxx:31
const sal_Int32 odd_columns_style
Definition: tabledesign.hxx:36
const sal_Int32 body_style
Definition: tabledesign.hxx:37
const sal_Int32 even_rows_style
Definition: tabledesign.hxx:33
const sal_Int32 first_row_style
Definition: tabledesign.hxx:29
const sal_Int32 last_row_style
Definition: tabledesign.hxx:30
Reference< XNameAccess > CreateTableDesignFamily()
const sal_Int32 even_columns_style
Definition: tabledesign.hxx:35
const sal_Int32 odd_rows_style
Definition: tabledesign.hxx:34
#define SVX_DLLPUBLIC
Definition: svxdllapi.h:28