diff options
author | jstebbins <[email protected]> | 2008-09-06 16:48:54 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-09-06 16:48:54 +0000 |
commit | 88b4851b757a6276f4b717127a5463005b6a868f (patch) | |
tree | c52e671d57ec6b3a40e5f7b2ede8e800ca33e795 /gtk/src/hb-backend.h | |
parent | 6d9a7854ec8143ac4b45b66eb2a32e357ba6cacb (diff) |
LinGui: Add queue save/restore
- 2 instances of libhb are used. One for queue activities and one for scanning
new sources prior to adding to the queue.
- Improve chapter entry usability. In addition to "return" advancing to the
next chapter for editing, up and down arrows will advance to prev/next and
put the cell in edit mode.
- Add an accelerator key to jump to the destination entry box.
- Fix a queue window resize problem.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1668 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/hb-backend.h')
-rw-r--r-- | gtk/src/hb-backend.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk/src/hb-backend.h b/gtk/src/hb-backend.h index 3e171f1cf..19ba4205b 100644 --- a/gtk/src/hb-backend.h +++ b/gtk/src/hb-backend.h @@ -29,6 +29,7 @@ enum typedef struct ghb_status_s { gint state; + gint queue_state; // SCANNING gint title_count; @@ -90,10 +91,14 @@ void ghb_pause_queue(void); gint ghb_get_state(void); void ghb_clear_state(gint state); +void ghb_clear_queue_state(gint state); + void ghb_set_state(gint state); +gint ghb_get_queue_state(); void ghb_get_status(ghb_status_t *status); void ghb_track_status(void); void ghb_backend_scan(const gchar *path, gint titleindex); +void ghb_backend_queue_scan(const gchar *path, gint titleindex); gboolean ghb_get_title_info(ghb_title_info_t *tinfo, gint titleindex); void ghb_set_scale(signal_user_data_t *ud, gint mode); GValue* ghb_get_chapters(gint titleindex); |