mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-21 04:49:14 +12:00
Qt: Add file patcher
This commit is contained in:
parent
70f443b06e
commit
66bcf384f3
9 changed files with 206 additions and 2 deletions
21
include/panda_qt/patch_window.hpp
Normal file
21
include/panda_qt/patch_window.hpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
#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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue