Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_node_selection_adapter.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2015 Dmitry Kazakov <dimula73@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
8
9#include "kis_node_manager.h"
10#include "kis_node.h"
11
16
18 : m_d(new Private)
19{
20 m_d->nodeManager = nodeManager;
21}
22
26
28{
29 return m_d->nodeManager->activeNode();
30}
31
33{
34 m_d->nodeManager->slotUiActivatedNode(node);
35}
KisNodeSelectionAdapter(KisNodeManager *nodeManager)
const QScopedPointer< Private > m_d