bump product version to 5.0.4.1
[LibreOffice.git] / sd / source / ui / inc / prltempl.hxx
bloba4e5cca4e2e860a49f7b029cc246699b229c1467
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 .
20 #ifndef INCLUDED_SD_SOURCE_UI_INC_PRLTEMPL_HXX
21 #define INCLUDED_SD_SOURCE_UI_INC_PRLTEMPL_HXX
23 #include "sdresid.hxx"
24 #include <sfx2/tabdlg.hxx>
25 #include <svx/tabarea.hxx>
27 #include "prlayout.hxx"
29 class SfxObjectShell;
30 class SfxStyleSheetBase;
31 class SfxStyleSheetBasePool;
33 /**
34 * Template-Tab-Dialog
36 class SdPresLayoutTemplateDlg : public SfxTabDialog
38 private:
39 const SfxObjectShell* mpDocShell;
41 XColorListRef pColorTab;
42 XGradientListRef pGradientList;
43 XHatchListRef pHatchingList;
44 XBitmapListRef pBitmapList;
45 XDashListRef pDashList;
46 XLineEndListRef pLineEndList;
48 sal_uInt16 nPageType;
49 sal_uInt16 nDlgType;
50 sal_uInt16 nPos;
52 sal_uInt16 mnLine;
53 sal_uInt16 mnArea;
54 sal_uInt16 mnShadow;
55 sal_uInt16 mnTransparency;
56 sal_uInt16 mnFont;
57 sal_uInt16 mnEffects;
58 sal_uInt16 mnParagr;
59 sal_uInt16 mnTextAtt;
60 sal_uInt16 mnBullet;
61 sal_uInt16 mnNum;
62 sal_uInt16 mnBitmap;
63 sal_uInt16 mnOptions;
64 sal_uInt16 mnTab;
65 sal_uInt16 mnAsian;
66 sal_uInt16 mnAlign;
68 ChangeType nColorTableState;
69 ChangeType nBitmapListState;
70 ChangeType nGradientListState;
71 ChangeType nHatchingListState;
73 PresentationObjects ePO;
75 virtual void PageCreated( sal_uInt16 nId, SfxTabPage &rPage ) SAL_OVERRIDE;
77 // for mapping with the new SvxNumBulletItem
78 SfxItemSet aInputSet;
79 SfxItemSet* pOutSet;
80 const SfxItemSet* pOrgSet;
82 sal_uInt16 GetOutlineLevel() const;
84 using SfxTabDialog::GetOutputItemSet;
86 public:
87 SdPresLayoutTemplateDlg( SfxObjectShell* pDocSh, vcl::Window* pParent, SdResId DlgId, SfxStyleSheetBase& rStyleBase, PresentationObjects ePO, SfxStyleSheetBasePool* pSSPool );
88 virtual ~SdPresLayoutTemplateDlg();
89 virtual void dispose() SAL_OVERRIDE;
91 const SfxItemSet* GetOutputItemSet() const;
94 #endif // INCLUDED_SD_SOURCE_UI_INC_PRLTEMPL_HXX
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */