update credits
[LibreOffice.git] / include / svx / tabline.hxx
blobaa415988e197625bb042c182603f5e8d9bb061b8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef _SVX_TAB_LINE_HXX
20 #define _SVX_TAB_LINE_HXX
22 #include <vcl/button.hxx>
23 #include <vcl/group.hxx>
24 #include <svtools/stdctrl.hxx>
25 #include <svx/svdpage.hxx>
26 #include <svx/xlineit0.hxx>
27 #include <svx/xlineit.hxx>
28 #include <svx/xsetit.hxx>
29 #include <svx/dlgctrl.hxx>
30 #include <vcl/menubtn.hxx>
31 class SvxBrushItem;
32 // define ----------------------------------------------------------------
34 typedef sal_uInt16 ChangeType; // auch in tab_area.hxx (mitpflegen !!!)
36 #define CT_NONE ( (ChangeType) 0x0000 )
37 #define CT_MODIFIED ( (ChangeType) 0x0001 )
38 #define CT_CHANGED ( (ChangeType) 0x0002 )
39 #define CT_SAVED ( (ChangeType) 0x0004 )
41 class SdrModel;
42 class SdrObject;
44 //defines fuer die Symbolauswahl auf der Page
45 //Positive Werte (0,...n) gibt den Indes in pSymbollist an, sonst :
46 #define SVX_SYMBOLTYPE_NONE (-3) //Symbol unsichtbar
47 #define SVX_SYMBOLTYPE_AUTO (-2) //Symbol automatisch erzeugen
48 #define SVX_SYMBOLTYPE_BRUSHITEM (-1) //Symbol ist als Graphic im Item enthalten:
49 #define SVX_SYMBOLTYPE_UNKNOWN (-100) //unbekannt/nicht initialisiert
51 #endif // _SVX_TAB_LINE_HXX
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */