Textractor/GUI/extenwindow.h

25 lines
681 B
C
Raw Permalink Normal View History

2018-12-01 19:12:45 -05:00
#pragma once
#include "qtcommon.h"
2019-02-09 00:30:38 -05:00
struct InfoForExtension
{
const char* name;
int64_t value;
};
2019-09-04 12:29:48 -04:00
bool DispatchSentenceToExtensions(std::wstring& sentence, const InfoForExtension* sentenceInfo);
2019-06-21 01:29:48 -04:00
void CleanupExtensions(); // must call this before exiting the program, only way to uphold guarantee that DllMain and OnNewSentence won't be called concurrently
class ExtenWindow : public QMainWindow
{
public:
explicit ExtenWindow(QWidget* parent = nullptr);
private:
2018-12-21 09:34:01 -05:00
bool eventFilter(QObject* target, QEvent* event) override;
void keyPressEvent(QKeyEvent* event) override;
2018-12-21 09:34:01 -05:00
void dragEnterEvent(QDragEnterEvent* event) override;
void dropEvent(QDropEvent* event) override;
};