Inkscape
Vector Graphics Editor
message.h
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * status-message-related types
4 *
5 * Authors:
6 * MenTaLguY <mental@rydia.net>
7 *
8 * Copyright (C) 2004 MenTaLguY
9 *
10 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
11 */
12
13#ifndef SEEN_INKSCAPE_MESSAGE_H
14#define SEEN_INKSCAPE_MESSAGE_H
15
16#include <cstdint>
17
18namespace Inkscape {
19
31};
32
39using MessageId = std::uint_least32_t;
40
41} // namespace Inkscape
42
43#endif // SEEN_INKSCAPE_MESSAGE_H
44
45/*
46 Local Variables:
47 mode:c++
48 c-file-style:"stroustrup"
49 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
50 indent-tabs-mode:nil
51 fill-column:99
52 End:
53*/
54// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
CMYK to sRGB conversion routines.
std::uint_least32_t MessageId
An integer ID which identifies a displayed message in a particular Inkscape::MessageStack.
Definition: message.h:39
MessageType
A hint about the meaning of a message; is it an ordinary message, a message advising the user of some...
Definition: message.h:25
@ INFORMATION_MESSAGE
Definition: message.h:30
@ ERROR_MESSAGE
Definition: message.h:29
@ NORMAL_MESSAGE
Definition: message.h:26
@ IMMEDIATE_MESSAGE
Definition: message.h:27
@ WARNING_MESSAGE
Definition: message.h:28