mirror of
https://github.com/johndoe6345789/GithubWorkflowTool.git
synced 2026-04-25 06:05:02 +00:00
26 lines
397 B
C++
26 lines
397 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
namespace gwt {
|
|
namespace gui {
|
|
|
|
/**
|
|
* @brief Widget for displaying job execution details
|
|
*/
|
|
class JobView : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit JobView(QWidget* parent = nullptr);
|
|
~JobView() override;
|
|
|
|
void setJobInfo(const QString& jobId, const QString& status);
|
|
|
|
private:
|
|
void setupUI();
|
|
};
|
|
|
|
} // namespace gui
|
|
} // namespace gwt
|