diff options
author | jstebbins <[email protected]> | 2008-07-30 21:53:49 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-07-30 21:53:49 +0000 |
commit | dff2e8c7a540f22a5a1157199c7aef26c4a4ffa2 (patch) | |
tree | eb2c369fc9d74f8a52965e33fbd2eef10037fb2a /gtk/src/settings.h | |
parent | 95c6abc0b1d61b53f85436067eea08fbc1833a80 (diff) |
LinGui: make the progress bar behave better when scanning while encoding
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1596 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/settings.h')
-rw-r--r-- | gtk/src/settings.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gtk/src/settings.h b/gtk/src/settings.h index 3ffc42f27..05788605c 100644 --- a/gtk/src/settings.h +++ b/gtk/src/settings.h @@ -30,10 +30,14 @@ GObject* debug_get_object(GtkBuilder *b, const gchar *n); enum { - GHB_STATE_IDLE = 0x00, - GHB_STATE_START = 0x01, - GHB_STATE_SCANNING = 0x02, - GHB_STATE_WORKING = 0x04 + GHB_STATE_IDLE = 0x00, + GHB_STATE_START = 0x01, + GHB_STATE_SCANNING = 0x02, + GHB_STATE_SCANDONE = 0x04, + GHB_STATE_WORKING = 0x08, + GHB_STATE_WORKDONE = 0x10, + GHB_STATE_PAUSED = 0x20, + GHB_STATE_MUXING = 0x40, }; typedef struct |