diff options
author | John Stebbins <[email protected]> | 2017-06-20 14:52:19 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2017-06-20 14:52:19 -0700 |
commit | 707b0a1cfab212f9a6f1d087fb654fd7490e1828 (patch) | |
tree | 3f539a0bbcc02bb79227c64e92c703333257e087 /gtk/src/queuehandler.h | |
parent | 148591c7223ead48f1b2498e689ede7c789a2997 (diff) |
LinGui: Make disk warning limit configurable
Allow disabling and setting disk warning limit in preferences.
When enabled checks disk fullness every 10 seconds during encoding.
If disk full condition is detected, pauses the encode and gives
a popup with options "Resume, I've fixed the problem", "Resume, Don't
tell me again", and "Cancel Current and Stop".
Diffstat (limited to 'gtk/src/queuehandler.h')
-rw-r--r-- | gtk/src/queuehandler.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/src/queuehandler.h b/gtk/src/queuehandler.h index 50f6cc250..34b052d0f 100644 --- a/gtk/src/queuehandler.h +++ b/gtk/src/queuehandler.h @@ -32,5 +32,7 @@ void ghb_queue_buttons_grey(signal_user_data_t *ud); gboolean ghb_reload_queue(signal_user_data_t *ud); void ghb_queue_remove_row(signal_user_data_t *ud, int row); void ghb_finalize_job(GhbValue *settings); +gint ghb_find_queue_job(GhbValue *queue, gint unique_id, GhbValue **job); +void ghb_low_disk_check(signal_user_data_t *ud); #endif // _QUEUEHANDLER_H_ |