listbox select all

Now  the programs user can "export" the whole list just by pressing ctrl+A-C and pasting into another application, like LibreOffice Calc, Excel, an editor, etc
This commit is contained in:
qPCR4vir 2015-04-25 22:56:53 +02:00
parent ee744db1c5
commit 83fa73d11f

View File

@ -3364,6 +3364,12 @@ namespace nana
nana::system::dataexch().set(essence_->to_string(exp_opt));
return;
}
case keyboard::select_all :
essence_->lister.select_for_all(true);
draw();
API::lazy_refresh();
break;
default:
return;
}