Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / svx / svxerr.hxx
blobf8c0ffae98c5dd10378d037cd6612b34269092ea
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 INCLUDED_SVX_SVXERR_HXX
20 #define INCLUDED_SVX_SVXERR_HXX
22 #include <vcl/errcode.hxx>
24 // define ----------------------------------------------------------------
26 #define ERRCODE_SVX_LINGU_THESAURUSNOTEXISTS (1UL | ERRCODE_AREA_SVX | \
27 ERRCODE_CLASS_NOTEXISTS)
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 )
38 #define ERRCODE_SVX_GRAPHIC_NOTREADABLE (7UL | ERRCODE_AREA_SVX | \
39 ERRCODE_CLASS_READ )
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 )
46 #define ERRCODE_SVX_BULLETITEM_NOBULLET (12UL | ERRCODE_AREA_SVX )
48 #define ERRCODE_SVX_MODIFIED_VBASIC_STORAGE (13UL | ERRCODE_AREA_SVX \
49 | ERRCODE_WARNING_MASK \
50 | ERRCODE_CLASS_WRITE )
52 #define ERRCODE_SVX_VBASIC_STORAGE_EXIST (14UL | ERRCODE_AREA_SVX \
53 | ERRCODE_WARNING_MASK \
54 | ERRCODE_CLASS_WRITE )
56 /** Error message: "Wrong password." */
57 #define ERRCODE_SVX_WRONGPASS (15UL | ERRCODE_AREA_SVX | ERRCODE_CLASS_NONE)
59 /** Error message: "Read error. Unsupported encryption method." */
60 #define ERRCODE_SVX_READ_FILTER_CRYPT (16UL | ERRCODE_AREA_SVX | ERRCODE_CLASS_READ)
62 /** Error message: "Read error. Passwort encrypted Powerpoint documents..." */
63 #define ERRCODE_SVX_READ_FILTER_PPOINT (17UL | ERRCODE_AREA_SVX | ERRCODE_CLASS_READ)
65 /** Error message: "Warning. Passwort protection is not supported when..." */
66 #define ERRCODE_SVX_EXPORT_FILTER_CRYPT (18UL | ERRCODE_AREA_SVX | ERRCODE_CLASS_EXPORT | ERRCODE_WARNING_MASK)
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
77 // class SvxErrorHandler -------------------------------------------------
79 #ifndef __RSC
81 #include <svtools/ehdl.hxx>
82 #include <svx/svxdllapi.h>
84 class SVX_DLLPUBLIC SvxErrorHandler : private SfxErrorHandler
86 public:
87 SvxErrorHandler();
88 static void ensure();
91 #endif
94 #endif
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */