Files
loongoffice/include/svx/rectenum.hxx
Tor Lillqvist d19c2417a5 Bin noise comment and superfluous newline
Change-Id: I9094a0a21880e516bb65b1a324b6220bab0e27da
2016-08-30 09:45:53 +03:00

46 lines
1.3 KiB
C++

/* -*- 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 INCLUDED_SVX_RECTENUM_HXX
#define INCLUDED_SVX_RECTENUM_HXX
enum class RectPoint
{
LT, // top left
MT, // top center
RT, // top right
LM, // left center
MM, // center
RM, // right center
LB, // bottom left
MB, // bottom center
RB // bottom right
};
enum class CTL_STYLE
{
Rect,
Line,
Angle,
Shadow
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */