Line data Source code
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 : #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_CNTTAB_HXX
20 : #define INCLUDED_SW_SOURCE_UIBASE_INC_CNTTAB_HXX
21 :
22 : #include <svx/stddlg.hxx>
23 : #include <vcl/button.hxx>
24 : #include <vcl/edit.hxx>
25 : #include <vcl/fixed.hxx>
26 : #include <vcl/field.hxx>
27 : #include <vcl/lstbox.hxx>
28 : #include <sfx2/tabdlg.hxx>
29 :
30 : #include "tox.hxx"
31 : #include <toxmgr.hxx>
32 : #include <svx/checklbx.hxx>
33 : #include <tools/resary.hxx>
34 : #include <svtools/treelistbox.hxx>
35 : #include <vcl/menubtn.hxx>
36 : #include <svx/langbox.hxx>
37 :
38 : #define TOX_PAGE_SELECT 1
39 : #define TOX_PAGE_ENTRY 2
40 : #define TOX_PAGE_STYLES 3
41 :
42 : #define TO_CONTENT 1
43 : #define TO_INDEX 2
44 : #define TO_ILLUSTRATION 4
45 : #define TO_TABLE 8
46 : #define TO_USER 16
47 : #define TO_OBJECT 32
48 : #define TO_AUTHORITIES 64
49 : #define TO_BIBLIOGRAPHY 128
50 :
51 : struct CurTOXType
52 : {
53 : TOXTypes eType;
54 : sal_uInt16 nIndex; //for TOX_USER only
55 :
56 0 : bool operator==(const CurTOXType& rCmp)
57 : {
58 0 : return eType == rCmp.eType && nIndex == rCmp.nIndex;
59 : }
60 : sal_uInt16 GetFlatIndex() const;
61 :
62 0 : CurTOXType () : eType (TOX_INDEX), nIndex (0) {};
63 :
64 0 : CurTOXType (TOXTypes t, sal_uInt16 i) : eType (t), nIndex (i) {};
65 : };
66 :
67 0 : class SwOLENames : public Resource
68 : {
69 : ResStringArray aNamesAry;
70 : public:
71 0 : SwOLENames(const ResId& rResId) :
72 : Resource(rResId),
73 0 : aNamesAry(ResId(1,*rResId.GetResMgr()))
74 : {
75 0 : FreeResource();
76 0 : }
77 :
78 0 : ResStringArray& GetNames() { return aNamesAry;}
79 :
80 : };
81 :
82 : #endif
83 :
84 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|