2023-12-09 21:18:58 -05:00
|
|
|
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-12-09 16:34:51 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class SettingsWindow : public QWidget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit SettingsWindow(QWidget *parent = nullptr);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void applySettings();
|
|
|
|
|
2023-12-10 12:54:46 -05:00
|
|
|
QLineEdit *m_sourcesLineEdit = nullptr;
|
2023-12-09 16:34:51 -05:00
|
|
|
QLineEdit *m_outputLineEdit = nullptr;
|
2024-01-29 22:25:23 -05:00
|
|
|
QLineEdit *m_blenderPath = nullptr;
|
2023-12-09 16:34:51 -05:00
|
|
|
};
|