Files
HPPA/HPPA/LayerTreeGroupNode.h
tangchao0503 631216dc66 初步实现单独的图层管理器。
注意:没有和mapcavas通讯。
2026-02-05 15:32:34 +08:00

16 lines
350 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "LayerTreeNode.h"
/** Group 节点 */
class LayerTreeGroupNode : public LayerTreeNode
{
Q_OBJECT
public:
explicit LayerTreeGroupNode(const QString& name,
QObject* parent = nullptr);
Type type() const override { return Type::Group; }
// 以后可扩展collapsed / groupOpacity 等
};