diff options
author | Saturn&Eric <[email protected]> | 2021-12-07 08:37:54 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-07 08:37:54 +0000 |
commit | cc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c (patch) | |
tree | 865d2298d836c8eb36584b5d268325bca4a66a78 /src/ui/SignalStation.h | |
parent | Merge pull request #26 from saturneric/develop (diff) | |
parent | Fix Bugs on KeyUploadDialog (diff) | |
download | GpgFrontend-cc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c.tar.gz GpgFrontend-cc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c.zip |
Merge pull request #28 from saturneric/develop
Diffstat (limited to 'src/ui/SignalStation.h')
-rw-r--r-- | src/ui/SignalStation.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ui/SignalStation.h b/src/ui/SignalStation.h index 38e55d9f..bfd5e197 100644 --- a/src/ui/SignalStation.h +++ b/src/ui/SignalStation.h @@ -26,6 +26,9 @@ #define GPGFRONTEND_SIGNALSTATION_H #include "ui/GpgFrontendUI.h" +#include "ui/widgets/InfoBoardWidget.h" + +namespace GpgFrontend::UI { class SignalStation : public QObject { Q_OBJECT @@ -36,6 +39,11 @@ class SignalStation : public QObject { signals: void KeyDatabaseRefresh(); + + void signalRefreshInfoBoard(const QString& text, + InfoBoardStatus verify_label_status); }; +} // namespace GpgFrontend::UI + #endif // GPGFRONTEND_SIGNALSTATION_H |