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 _SVXERR_HXX
20 : #define _SVXERR_HXX
21 :
22 : #include <tools/errcode.hxx>
23 :
24 : // define ----------------------------------------------------------------
25 :
26 : #define ERRCODE_SVX_LINGU_THESAURUSNOTEXISTS (1UL | ERRCODE_AREA_SVX | \
27 : ERRCODE_CLASS_NOTEXISTS)
28 :
29 : #define ERRCODE_SVX_LINGU_LINGUNOTEXISTS (3UL | ERRCODE_AREA_SVX | \
30 : ERRCODE_CLASS_NOTEXISTS )
31 : #define ERRCODE_SVX_LINGU_HYPHENNOTEXISTS (4UL | ERRCODE_AREA_SVX | \
32 : ERRCODE_CLASS_NOTEXISTS )
33 : #define ERRCODE_SVX_LINGU_DICT_NOTREADABLE (5UL | ERRCODE_AREA_SVX | \
34 : ERRCODE_CLASS_READ )
35 : #define ERRCODE_SVX_LINGU_DICT_NOTWRITEABLE (6UL | ERRCODE_AREA_SVX | \
36 : ERRCODE_CLASS_WRITE )
37 :
38 : #define ERRCODE_SVX_GRAPHIC_NOTREADABLE (7UL | ERRCODE_AREA_SVX | \
39 : ERRCODE_CLASS_READ )
40 :
41 : #define ERRCODE_SVX_LINGU_NOLANGUAGE (9UL | ERRCODE_AREA_SVX | \
42 : ERRCODE_CLASS_NOTEXISTS )
43 : #define ERRCODE_SVX_FORMS_NOIOSERVICES (10UL | ERRCODE_AREA_SVX )
44 : #define ERRCODE_SVX_FORMS_READWRITEFAILED (11UL | ERRCODE_AREA_SVX )
45 :
46 : #define ERRCODE_SVX_BULLETITEM_NOBULLET (12UL | ERRCODE_AREA_SVX )
47 :
48 : #define ERRCODE_SVX_MODIFIED_VBASIC_STORAGE (13UL | ERRCODE_AREA_SVX \
49 : | ERRCODE_WARNING_MASK \
50 : | ERRCODE_CLASS_WRITE )
51 :
52 : #define ERRCODE_SVX_VBASIC_STORAGE_EXIST (14UL | ERRCODE_AREA_SVX \
53 : | ERRCODE_WARNING_MASK \
54 : | ERRCODE_CLASS_WRITE )
55 :
56 : /** Error message: "Wrong password." */
57 : #define ERRCODE_SVX_WRONGPASS (15UL | ERRCODE_AREA_SVX | ERRCODE_CLASS_NONE)
58 :
59 : /** Error message: "Read error. Unsupported encryption method." */
60 : #define ERRCODE_SVX_READ_FILTER_CRYPT (16UL | ERRCODE_AREA_SVX | ERRCODE_CLASS_READ)
61 :
62 : /** Error message: "Read error. Passwort encrypted Powerpoint documents..." */
63 : #define ERRCODE_SVX_READ_FILTER_PPOINT (17UL | ERRCODE_AREA_SVX | ERRCODE_CLASS_READ)
64 :
65 : /** Error message: "Warning. Passwort protection is not suppported when ..." */
66 : #define ERRCODE_SVX_EXPORT_FILTER_CRYPT (18UL | ERRCODE_AREA_SVX | ERRCODE_CLASS_EXPORT | ERRCODE_WARNING_MASK)
67 :
68 :
69 : // both codes will be used twice : with ERRCODE_CLASS_READ- and ERRCODE_CLASS_WRITE-bits
70 : #define ERRCTX_SVX_LINGU_THESAURUS 1
71 : #define ERRCTX_SVX_LINGU_SPELLING 2
72 : #define ERRCTX_SVX_LINGU_HYPHENATION 3
73 : #define ERRCTX_SVX_LINGU_DICTIONARY 4
74 : #define ERRCTX_SVX_BACKGROUND 5
75 : #define ERRCTX_SVX_IMPORT_GRAPHIC 6
76 :
77 : // class SvxErrorHandler -------------------------------------------------
78 :
79 : #ifndef __RSC
80 :
81 : #include <svtools/ehdl.hxx>
82 : #include "svx/svxdllapi.h"
83 :
84 68 : class SVX_DLLPUBLIC SvxErrorHandler : private SfxErrorHandler
85 : {
86 : public:
87 : SvxErrorHandler();
88 : static void ensure();
89 : };
90 :
91 : #endif
92 :
93 :
94 : #endif
95 :
96 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|