Textractor_test/GUI/extenwindow.h

29 lines
566 B
C
Raw Normal View History

2018-12-02 08:12:45 +08:00
#pragma once
#include "qtcommon.h"
2018-11-02 06:47:19 +08:00
#include <QDragEnterEvent>
#include <QDropEvent>
namespace Ui
{
class ExtenWindow;
}
bool DispatchSentenceToExtensions(std::wstring& sentence, std::unordered_map<std::string, int64_t> miscInfo);
class ExtenWindow : public QMainWindow
{
public:
explicit ExtenWindow(QWidget* parent = nullptr);
~ExtenWindow();
private:
void Add(QFileInfo extenFile);
void Sync();
2018-11-02 06:47:19 +08:00
bool eventFilter(QObject* target, QEvent* event);
void dragEnterEvent(QDragEnterEvent* event);
void dropEvent(QDropEvent* event);
Ui::ExtenWindow* ui;
};