mirror of
https://git.freebsd.org/ports.git
synced 2025-07-01 17:40:40 -04:00
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@
20 lines
899 B
C++
20 lines
899 B
C++
--- src/Standalone/foldercomb.cpp.orig 2021-11-25 00:56:57 UTC
|
|
+++ src/Standalone/foldercomb.cpp
|
|
@@ -31,7 +31,7 @@ void FolderComb::initialize(SCANPARA dev_data, CustomM
|
|
changed = true;
|
|
current_item = (Folder)dev_data.Folder;
|
|
user_define_path = dev_data.UserDefinePath.c_str();
|
|
- if(current_item == USER_DEFINE){
|
|
+ if(current_item == (Folder)USER_DEFINE){
|
|
QString qStr = user_define_path;
|
|
this->setToolTip(qStr);
|
|
}
|
|
@@ -117,7 +117,7 @@ void FolderComb::item_event(int value, SCANPARA* path_
|
|
this->setToolTip(qStr);
|
|
}else if(select_item == OPTIONS){
|
|
this->item_event_options();
|
|
- if(current_item == USER_DEFINE){
|
|
+ if(current_item == (Folder)USER_DEFINE){
|
|
qStr = user_define_path;
|
|
path_data->UserDefinePath = (user_define_path.toLocal8Bit()).constData();
|
|
select_item = old_select;
|