code_app/app/scanner2/mainwindow.h

339 lines
8.6 KiB
C
Raw Normal View History

2022-11-23 10:39:06 +00:00
#ifndef MAINWINDOW_H
2022-05-03 10:25:52 +00:00
#define MAINWINDOW_H
#include <QMainWindow>
#include <QLineEdit>
#include <QListWidgetItem>
2023-01-28 02:57:18 +00:00
#include <QTranslator>
#include <QtWidgets>
2023-04-08 08:33:36 +00:00
#include <QPropertyAnimation>
2022-05-03 10:25:52 +00:00
#include "HGImgView.h"
#include "HGImgThumb.h"
#include "dialog_aquireinto.h"
2023-04-08 08:33:36 +00:00
#include "widget_imgproc_base.h"
#include "widget_imgproc_sidebar.h"
2022-05-03 10:25:52 +00:00
#include "imgfmt/HGImgFmt.h"
#include "base/HGMsgPump.h"
#include "VersionDll.h"
2023-05-04 06:55:26 +00:00
#include "device_user.h"
2022-05-03 10:25:52 +00:00
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class HGLineEdit : public QLineEdit
{
Q_OBJECT
public:
HGLineEdit(QWidget* parent)
: QLineEdit(parent)
{
}
protected:
void focusInEvent(QFocusEvent* e)
{
(void)e;
QString text = this->text();
QStringList list = text.split("/");
text = list.first();
this->setText(text);
this->selectAll();
QLineEdit::focusInEvent(e);
}
};
enum askIfClear
{
cancelScan = 0,
clearAndScan,
notClearAndScan
};
2022-07-23 08:54:56 +00:00
//class dialog_wrong_img;
2022-05-03 10:25:52 +00:00
class MainWindow : public QMainWindow
{
Q_OBJECT
2022-07-23 08:54:56 +00:00
std::vector<class dialog_wrong_img*> wrong_imgs_;
2022-05-03 10:25:52 +00:00
public:
MainWindow(const QString& appLang, QWidget *parent = nullptr);
2022-05-03 10:25:52 +00:00
virtual ~MainWindow() override;
void exitFullScreen();
static HGResult saveImage(HGImage image, const HGImgFmtSaveInfo* info, bool ocr, const HGChar *fileName);
2022-11-24 09:02:26 +00:00
static QString getLogInfo(HGResult ret);
static void HGAPI ocrThreadFunc(HGThread thread, HGPointer param);
static void HGAPI ocrMsgPumpFunc(HGMsgPump msgPump, const HGMsg* msg, HGPointer param);
2022-05-03 10:25:52 +00:00
private slots:
void on_act_90Left_triggered();
void on_act_90Right_triggered();
void on_act_180_triggered();
void on_act_fitWindowSize_triggered();
void on_act_fitWindowWidth_triggered();
void on_act_realSize_triggered();
void on_act_zoomIn_triggered();
void on_act_zoomOut_triggered();
void on_act_statusBar_triggered(bool checked);
void on_act_toolBar_triggered(bool checked);
void on_act_colorInfo_triggered(bool checked);
void on_act_fullscreen_triggered();
2022-06-02 10:27:14 +00:00
void on_act_autoSave_triggered();
2023-05-19 07:50:47 +00:00
signals:
void post_new_image(QString fileName);
2023-05-19 07:50:47 +00:00
2022-05-03 10:25:52 +00:00
private slots:
2023-03-06 09:01:57 +00:00
void on_AcquireInto2();
void on_reloadAcquireIntoCfg();
void on_m_acquireIntoCfg_changed(QString schemeName);
2022-05-03 10:25:52 +00:00
void on_itemCountChanged(int count);
void on_itemSelectingChanged();
void on_currItemChanged(int index);
void on_itemDoubleClicked(int index);
void on_thumbContextMenu(int index);
void on_viewerScale(double scale);
void on_viewerMousePos(int x, int y);
void on_thumbDrop(const QObject *source, const QStringList &fileNames, int pos);
void on_viewerDrop(const QObject *source, const QStringList &fileNames);
2022-05-03 10:25:52 +00:00
void on_viewerDblClick();
void on_act_moveTo_triggered();
void on_act_thumbGrid_triggered(bool checked);
void on_dialog_adjust_applyToImage(HGImage img);
void on_dialog_multirotate_refreshImgFile(const QString &fileName);
void on_multiPageLineEditFinished();
void on_clearCache();
void on_post_new_image(QString fileName);
2023-05-04 06:55:26 +00:00
void on_newImage(void *image);
void on_scanFinishEvent();
void on_scanWorkingEvent();
//void on_wrong_image_decide(dialog_wrong_img* dlg, bool save);
2023-04-08 08:33:36 +00:00
void on_m_pbtn_push_clicked();
2023-04-08 10:43:46 +00:00
void on_dialog_sideBar_applyToImage(HGImage img, int brightness, int contrast, double gamma, bool enhanceText);
void on_dialog_sideBar_finish(bool ok);
2022-05-03 10:25:52 +00:00
void on_act_thumbnailBar_triggered(bool checked);
void on_act_previous_triggered();
void on_act_next_triggered();
void on_act_first_triggered();
void on_act_last_triggered();
void on_act_openPageNum_triggered();
void on_act_previousPage_triggered();
void on_act_nextPage_triggered();
void on_act_firstPage_triggered();
void on_act_lastPage_triggered();
void on_act_adjust_triggered();
void on_act_open_triggered();
void on_act_insert_triggered();
void on_act_closeFile_triggered();
void on_act_closeAll_triggered();
void on_act_exit_triggered();
void on_act_save_triggered();
void on_act_saveAs_triggered();
void on_act_Export_triggered();
void on_act_imageInfo_triggered();
void on_act_multiRotate_triggered();
void on_act_autoCrop_triggered();
void on_act_signIn_triggered();
void on_act_passwordChange_triggered();
void on_act_signOut_triggered();
void on_act_log_triggered();
void on_act_clrCache_triggered();
void on_act_consume_triggered();
void on_act_clearRoller_triggered();
void on_act_help_triggered();
void on_act_about_triggered();
void on_act_scannerSettings_triggered();
void on_act_acquire_triggered();
void on_act_acquireSingle_triggered();
void on_act_acquireInto_triggered();
void on_act_insertFromScanner_triggered();
void on_act_imageEdit_triggered();
void on_act_sortPages_triggered();
void on_actionact_update_triggered();
void on_act_feedback_triggered();
void on_act_driver_log_triggered();
void on_act_device_log_triggered();
2023-01-28 02:57:18 +00:00
void on_act_simpCN_triggered();
void on_act_English_triggered();
2023-02-03 02:21:33 +00:00
void on_act_deleteFile_triggered();
2023-05-04 06:55:26 +00:00
void on_act_selectDevice_triggered();
2022-05-03 10:25:52 +00:00
protected:
virtual void closeEvent(QCloseEvent *e) override;
2023-04-08 08:33:36 +00:00
virtual void resizeEvent(QResizeEvent *e) override;
2022-05-03 10:25:52 +00:00
private:
2022-10-12 03:51:41 +00:00
static void HGAPI CrashFunc(HGPointer crashAddr, HGPointer param);
2022-05-03 10:25:52 +00:00
QString getCacheFileName(HGImage img);
2022-05-03 10:25:52 +00:00
HGImage createImage();
int getMultiPageCount();
void updateStatusBarPixelInfo();
void updateActionStatus();
void startSaveMessageBox(QWidget* parent);
askIfClear startScanMessageBox(QWidget* parent);
QString passwordEncrypt(const QString& password);
QString passwordDecrypt(const QString& transcode);
2023-05-04 06:55:26 +00:00
bool judgeDiskSpace(QString currentPath);
2022-07-22 06:25:24 +00:00
void upgradeApp(QString pkgPath);
bool isLimitAccessFolder(int type); //type:1-aquire,2-aquireInto
static QString GetDevType(const QString& fwVersion, bool &canLock);
void deleteOverdueLogFile(const QString& logFilePath);
void deleteUpgradePkg(const QString& cfgFilePath);
void initAcquireIntoComboBox();
2023-04-08 08:33:36 +00:00
void updateSideBar();
2023-06-29 08:10:09 +00:00
void deleteDevUser();
#if !defined(HG_CMP_MSC)
2023-06-13 07:24:58 +00:00
void checkRollerLife();
#endif
2022-05-03 10:25:52 +00:00
private:
Ui::MainWindow *ui;
2023-05-04 06:55:26 +00:00
DeviceUserMgr *m_devUserMgr;
DeviceUser *m_devUser;
2023-03-06 09:01:57 +00:00
QAction *m_act_acquireInto2;
QComboBox *m_cbtn_acquireIntoCfg;
2023-01-28 07:32:08 +00:00
QString m_currLang;
VersionDll *m_versionDll;
2022-05-03 10:25:52 +00:00
QString m_password;
bool m_admin_loggedIn;
HGImgView *m_view;
HGImgThumb *m_thumb;
QMenu *m_thumbMenu;
2023-01-28 07:32:08 +00:00
QMenu* m_menu_imageInsert;
2022-05-03 10:25:52 +00:00
QAction *m_moveToAction;
2023-01-28 07:32:08 +00:00
QAction* m_act_thumbGrid;
QListWidget* m_listwidget;
2023-01-28 07:32:08 +00:00
QMenu *m_menu_language;
2023-01-28 02:57:18 +00:00
QAction *m_act_simpCN;
QAction *m_act_English;
2023-04-08 08:33:36 +00:00
QPushButton *m_pbtn_push;
Widget_Imgproc_SideBar *m_widget_sideBar;
QPropertyAnimation *m_propertyAnimation;
QPropertyAnimation *m_propertyAnimation2;
2022-05-03 10:25:52 +00:00
2023-05-04 06:55:26 +00:00
bool auto_save_changes_;
bool save_from_changed_;
2022-06-02 10:27:14 +00:00
typedef struct _save_opt
{
QString path;
int index;
int jpegQuality;
int tiffCompressionBW;
int tiffCompression;
int tiffQuality;
bool isOcr;
}SAVEOPT;
SAVEOPT auto_save_info_;
union VIDPID
{
struct
{
unsigned short VID;
unsigned short PID;
};
unsigned int Value;
};
2022-05-03 10:25:52 +00:00
QString m_currFilePath;
int m_currIndex;
int m_multiPageCount;
int m_multiIndex;
bool m_modify; // m_view上面的图像是否改变
bool m_singleScan; // 是否单张扫描
int m_scanType; // 1-扫描到缓存目录2-扫描到本地目录
int m_scanInsertPos; // 扫描插入位置,-1表示插入到最后
QString m_scanFileName;
HGImgFmtWriter m_scanImgFmtWriter;
AquireIntoSaveParam m_aquireIntoSaveParam;
bool m_aquireIntoInBlank;
int m_aquireIntoBatchStartIndex;
int m_aquireIntoPageIndex;
int m_aquireIntoMultiPageCount;
2022-05-03 10:25:52 +00:00
bool m_isScanning;
2022-07-14 11:13:00 +00:00
bool m_closeTip;
2022-07-30 01:27:43 +00:00
int m_currScanCount;
QString m_devSerialNum;
QString m_devVersionNum;
QString m_currDeviceName;
2023-04-14 10:35:14 +00:00
QString m_devPid;
const char* m_oemName;
2022-11-24 15:48:08 +00:00
bool m_cacheDirNotify;
bool m_AquirePathNotify;
2023-04-08 08:33:36 +00:00
bool m_bSideflag;
2023-04-08 10:43:46 +00:00
bool m_bSideEditing;
HGMsgPump m_ocrMsgPump;
HGThread m_ocrThread;
2022-05-03 10:25:52 +00:00
class HGLineEdit* m_multiPageLineEdit;
class Widget_StatusBar *m_wndStatusBar;
class Dialog_AquireInto *m_dialogAcquireinto;
2022-05-03 10:25:52 +00:00
class Dialog_FullScreen *m_dlgFullScreen;
class Dialog_WaitingOcr *m_dlgWaitingOcr;
2022-05-03 10:25:52 +00:00
};
#endif // MAINWINDOW_H