diff options
author | jstebbins <[email protected]> | 2008-06-23 15:48:13 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-06-23 15:48:13 +0000 |
commit | cb5e91e29a93ffee9083672a02a325d983da2d90 (patch) | |
tree | add43aabb74207179f99a3e4d6b4afe358de6689 /gtk | |
parent | 09ab2003ec02331fdd7bb62560dbbff043e6c361 (diff) |
LinGui: Allow scanning new source when work is in progress
and allow stacking up jobs from multiple sources in the queue.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1534 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/callbacks.c | 26 | ||||
-rw-r--r-- | gtk/src/settings.h | 8 |
2 files changed, 13 insertions, 21 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c index 58d356248..582c930d1 100644 --- a/gtk/src/callbacks.c +++ b/gtk/src/callbacks.c @@ -299,7 +299,7 @@ void on_quit1_activate(GtkMenuItem *quit, signal_user_data_t *ud) { g_debug("on_quit1_activate ()\n"); - if (ud->state == GHB_STATE_WORKING) + if (ud->state & GHB_STATE_WORKING) { if (cancel_encode("Closing HandBrake will terminate encoding.\n")) { @@ -592,15 +592,7 @@ source_button_clicked_cb(GtkButton *button, signal_user_data_t *ud) gboolean checkbutton_active; g_debug("source_browse_clicked_cb ()\n"); - if (ud->state == GHB_STATE_WORKING) - { - if (!cancel_encode("Opening a new source will cancel the current encode.\n")) - { - return; - } - } sourcename = ghb_settings_get_string(ud->settings, "source"); - checkbutton_active = FALSE; if (g_file_test(sourcename, G_FILE_TEST_IS_DIR)) { @@ -637,7 +629,7 @@ source_button_clicked_cb(GtkButton *button, signal_user_data_t *ud) const gchar *path = ghb_settings_get_string( ud->settings, "source"); gtk_progress_bar_set_fraction (progress, 0); gtk_progress_bar_set_text (progress, "Scanning ..."); - ud->state = GHB_STATE_SCANNING; + ud->state |= GHB_STATE_SCANNING; ghb_backend_scan (path, 0); } else @@ -763,7 +755,7 @@ gboolean window_delete_event_cb(GtkWidget *widget, GdkEvent *event, signal_user_data_t *ud) { g_debug("window_delete_event_cb ()\n"); - if (ud->state == GHB_STATE_WORKING) + if (ud->state & GHB_STATE_WORKING) { if (cancel_encode("Closing HandBrake will terminate encoding.\n")) { @@ -2575,7 +2567,7 @@ ghb_timer_cb(gpointer data) } break; case GHB_EVENT_WORK_DONE: { - ud->state = GHB_STATE_IDLE; + ud->state &= ~GHB_STATE_WORKING; work_started = FALSE; queue_buttons_grey(ud, FALSE); index = find_queue_item(ud->queue, current_id, &js); @@ -2620,7 +2612,7 @@ ghb_timer_cb(gpointer data) { ghb_title_info_t tinfo; - ud->state = GHB_STATE_IDLE; + ud->state &= ~GHB_STATE_SCANNING; ghb_update_ui_combo_box(ud->builder, "title", 0, FALSE); titleindex = ghb_longest_title(); ghb_ui_update_int(ud, "title", titleindex); @@ -2709,7 +2701,7 @@ ghb_timer_cb(gpointer data) const gchar *path = ghb_settings_get_string( ud->settings, "source"); gtk_progress_bar_set_fraction (progress, 0); gtk_progress_bar_set_text (progress, "Scanning ..."); - ud->state = GHB_STATE_SCANNING; + ud->state |= GHB_STATE_SCANNING; ghb_backend_scan (path, 0); } } @@ -3024,7 +3016,7 @@ queue_start_clicked_cb(GtkWidget *xwidget, signal_user_data_t *ud) if (!queue_add(ud)) return; } - ud->state = GHB_STATE_WORKING; + ud->state |= GHB_STATE_WORKING; ghb_start_queue(); } @@ -3179,12 +3171,12 @@ drive_changed_cb(GVolumeMonitor *gvm, GDrive *gd, signal_user_data_t *ud) gtk_progress_bar_set_text (progress, "Scanning ..."); gtk_progress_bar_set_fraction (progress, 0); update_source_label(ud, device); - ud->state = GHB_STATE_SCANNING; + ud->state |= GHB_STATE_SCANNING; ghb_backend_scan(device, 0); } else { - ud->state = GHB_STATE_SCANNING; + ud->state |= GHB_STATE_SCANNING; ghb_backend_scan("/dev/null", 0); } } diff --git a/gtk/src/settings.h b/gtk/src/settings.h index af653dbf9..c831c0fa8 100644 --- a/gtk/src/settings.h +++ b/gtk/src/settings.h @@ -30,10 +30,10 @@ GObject* debug_get_object(GtkBuilder *b, const gchar *n); enum { - GHB_STATE_START, - GHB_STATE_SCANNING, - GHB_STATE_WORKING, - GHB_STATE_IDLE + GHB_STATE_IDLE = 0x00, + GHB_STATE_START = 0x01, + GHB_STATE_SCANNING = 0x02, + GHB_STATE_WORKING = 0x04 }; typedef struct |