Partially solving issue 1788: "Crashing during processing of queue"

It also correct a bug of wrong image orientation (was wrong in the File Browser while good in the Editor tab)

This patch also introduce several speed optimizations like:
   - switch between File Browser and Editor tab in Single Editor mode
   - asynchronous computation of the Batch Queue's thumbnails
   - quick start of RT even with a huge queue
   - less GUI overhead when applying a profile to multiple thumbs in the File Browser
This commit is contained in:
natureh 510
2013-06-16 15:49:47 +02:00
parent b907d54e0e
commit 54c6a6cbb9
50 changed files with 1810 additions and 783 deletions

View File

@@ -85,7 +85,7 @@ void LWButtonSet::arrangeButtons (int x, int y, int w, int h) {
void LWButtonSet::move (int nx, int ny) {
for (size_t i=0; i<buttons.size(); i++) {
for (size_t i=0; i<buttons.size(); i++) {
int x, y;
buttons[i]->getPosition (x, y);
buttons[i]->setPosition (x+nx-ax, y+ny-ay);
@@ -97,7 +97,7 @@ void LWButtonSet::move (int nx, int ny) {
void LWButtonSet::redraw (Cairo::RefPtr<Cairo::Context> context) {
for (size_t i=0; i<buttons.size(); i++)
for (size_t i=0; i<buttons.size(); i++)
buttons[i]->redraw (context);
}