feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
Showing only changes of commit 9d8e214ae3 - Show all commits

View File

@ -1,33 +1,33 @@
#ifndef ZONEFILEVIEWER_H
#define ZONEFILEVIEWER_H
#include "zonefile.h"
#include "utils.h"
#include <QWidget>
namespace Ui {
class ZoneFileViewer;
}
class ZoneFileViewer : public QWidget
{
Q_OBJECT
public:
explicit ZoneFileViewer(QWidget *parent = nullptr);
~ZoneFileViewer();
void SetZoneFile(std::shared_ptr<ZoneFile> aZoneFile);
public slots:
void SortTags(const QString &aSearchText);
void HighlightRecordInOrder();
private:
Ui::ZoneFileViewer *ui;
std::shared_ptr<ZoneFile> mZoneFile;
};
#endif // ZONEFILEVIEWER_H
#ifndef ZONEFILEVIEWER_H
#define ZONEFILEVIEWER_H
#include "zonefile.h"
#include "utils.h"
#include <QWidget>
namespace Ui {
class ZoneFileViewer;
}
class ZoneFileViewer : public QWidget
{
Q_OBJECT
public:
explicit ZoneFileViewer(QWidget *parent = nullptr);
~ZoneFileViewer();
void SetZoneFile(const ZoneFile *aZoneFile);
public slots:
void SortTags(const QString &aSearchText);
void HighlightRecordInOrder();
private:
Ui::ZoneFileViewer *ui;
const ZoneFile* mZoneFile;
};
#endif // ZONEFILEVIEWER_H