2023-08-06 08:48:11 -04:00
|
|
|
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-07-06 17:36:58 -04:00
|
|
|
#pragma once
|
|
|
|
|
2023-10-13 15:36:36 -04:00
|
|
|
#include "sklbpart.h"
|
2023-10-12 23:44:48 -04:00
|
|
|
|
2023-07-06 17:36:58 -04:00
|
|
|
class GearView;
|
|
|
|
|
2023-10-13 15:36:36 -04:00
|
|
|
class BoneEditor : public SklbPart
|
2023-10-12 23:44:48 -04:00
|
|
|
{
|
2023-07-07 16:16:21 -04:00
|
|
|
Q_OBJECT
|
2023-07-06 17:36:58 -04:00
|
|
|
|
|
|
|
public:
|
2023-10-12 23:44:48 -04:00
|
|
|
explicit BoneEditor(GearView *gearView, QWidget *parent = nullptr);
|
2023-07-06 17:36:58 -04:00
|
|
|
|
|
|
|
private:
|
2023-12-09 21:18:34 -05:00
|
|
|
GearView *gearView = nullptr;
|
2023-07-06 17:36:58 -04:00
|
|
|
};
|