Krita

TransparencyMask.h
1/*
2 * SPDX-FileCopyrightText: 2017 Wolthera van Hövell tot Westerflier <griffinvalley@gmail.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6#ifndef LIBKIS_TRANSPARENCYMASK_H
7#define LIBKIS_TRANSPARENCYMASK_H
8
9#include <QObject>
10#include "Node.h"
11
12#include <kis_types.h>
13
14#include "kritalibkis_export.h"
15#include "libkis.h"
16
17/**
18 * @brief The TransparencyMask class
19 * A transparency mask is a mask type node that can be used
20 * to show and hide parts of a layer.
21 *
22 */
23class KRITALIBKIS_EXPORT TransparencyMask : public Node
24{
25 Q_OBJECT
26 Q_DISABLE_COPY(TransparencyMask)
27
28public:
29 explicit TransparencyMask(KisImageSP image, QString name, QObject *parent = 0);
30 explicit TransparencyMask(KisImageSP image, KisTransparencyMaskSP mask, QObject *parent = 0);
31 ~TransparencyMask() override;
32public Q_SLOTS:
33
34 /**
35 * @brief type Krita has several types of nodes, split in layers and masks. Group
36 * layers can contain other layers, any layer can contain masks.
37 *
38 * @return transparencymask
39 *
40 * If the Node object isn't wrapping a valid Krita layer or mask object, and
41 * empty string is returned.
42 */
43 virtual QString type() const override;
44
45 Selection *selection() const;
46
47 void setSelection(Selection *selection);
48};
49
50#endif // LIBKIS_TRANSPARENCYMASK_H
51
Node represents a layer or mask in a Krita image's Node hierarchy.
Definition Node.h:24
virtual QString type() const
type Krita has several types of nodes, split in layers and masks.
Definition Node.cpp:462
Selection represents a selection on Krita.
Definition Selection.h:31
The TransparencyMask class A transparency mask is a mask type node that can be used to show and hide ...
Q_SLOTSQ_SLOTS
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:55:54 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.