mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
21 lines
420 B
C++
21 lines
420 B
C++
#pragma once
|
|
#include <QLabel>
|
|
#include <QWidget>
|
|
#include <filesystem>
|
|
|
|
#include "panda_qt/ellided_label.hpp"
|
|
|
|
class PatchWindow final : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PatchWindow(QWidget* parent = nullptr);
|
|
~PatchWindow() = default;
|
|
|
|
private:
|
|
std::filesystem::path inputPath = "";
|
|
std::filesystem::path patchPath = "";
|
|
|
|
EllidedLabel* inputPathLabel = nullptr;
|
|
EllidedLabel* patchPathLabel = nullptr;
|
|
};
|