ports/graphics/epsonscan2/files/patch-src_Standalone_mainwindow.cpp
Rainer Hurling 27df5bce08 graphics/epsonscan2: Add new port for Epson Scanners
This is a port of the Seiko/Epson Epsonscan2 scanner engine and GUI[1].

It provides a complete alternative to sane/xsane with its own scanner engine and GUI.
It also provides a sane back-end library (libsane-epsonscan2.so) so that it works with the sane package.

There are two parts to this port:
  - graphics/epsonscan2 - the main scanner engine and GUI that
    works with (most) USB scanners
  - graphics/epsonscan2-non-free-plugin - support for Epson's
    Linux binary that adds network access to scanners and
    usb access to some particular scanners

Please read the file %%PREFIX%%/lib/epsonscan2/Read_me.FreeBSD for notes on how to set this up and use it.

[1] https://download.ebz.epson.net/man/linux/epsonscan2_e.html

PR:		261891
Reviewed by:	(partly) Tatsuki Makino <tatsuki_makino@hotmail.com>, diizzy@
2022-04-03 10:44:09 +02:00

38 lines
2.3 KiB
C++

--- src/Standalone/mainwindow.cpp.orig 2021-11-25 00:56:57 UTC
+++ src/Standalone/mainwindow.cpp
@@ -682,7 +682,7 @@ bool MainWindow::SelectionRestrictions(int value){
limit_resolution = 300;
}
if(obj == ui->Resolution_comb){
- if(ui->Document_size_comb->current_item == USER_DEFINE){
+ if(ui->Document_size_comb->current_item == (DocumentSize)USER_DEFINE){
return UserDefineSizeRestrictions();
}else if(ui->Document_size_comb->current_item == Auto_Detect_long){
if(ui->Resolution_comb->currentText().toInt() > limit_resolution){
@@ -1234,7 +1234,7 @@ bool MainWindow::CheckAutoFunctionalUnit(bool isPrevie
if(this->m_viewPreviewWindow){
if(isPreview && sv->device_data.FunctionalUnit_Auto){
if(sv->GetPaperLoadedStatus()){
- if(sv->m_Preview_FunctionalUnit == kSDIFunctionalUnitDocumentFeeder){
+ if(sv->m_Preview_FunctionalUnit == (FunctionalUnit)kSDIFunctionalUnitDocumentFeeder){
sv->device_data.FunctionalUnit.select = kSDIFunctionalUnitDocumentFeeder;
}else {
if(m_messageBox->CreateSelectableMessageBox(TranslationString::GetString().translation_str.C_UI_005, Warning)){
@@ -1247,7 +1247,7 @@ bool MainWindow::CheckAutoFunctionalUnit(bool isPrevie
}
}
}else {
- if(sv->m_Preview_FunctionalUnit == kSDIFunctionalUnitFlatbed){
+ if(sv->m_Preview_FunctionalUnit == (FunctionalUnit)kSDIFunctionalUnitFlatbed){
sv->device_data.FunctionalUnit.select = kSDIFunctionalUnitFlatbed;
}else {
if(m_messageBox->CreateSelectableMessageBox(TranslationString::GetString().translation_str.C_UI_005, Warning)){
@@ -1332,7 +1332,7 @@ bool MainWindow::CheckBeforeScan()
}
}
if(!sv->device_data.DNShow_LongPaperWarning_dialog){
- if(ui->Document_size_comb->current_item == USER_DEFINE){
+ if(ui->Document_size_comb->current_item == (DocumentSize)USER_DEFINE){
if(this->CheckLongPaperMode()){
sv->device_data.DNShow_LongPaperWarning_dialog = m_messageBox->CreateMessageBox(TranslationString::GetString().translation_str.A_UI_005, TranslationString::GetString().translation_str.VERSION_003, Information, true);
}