diff options
author | Werner Koch <[email protected]> | 2017-01-31 08:44:29 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-01-31 08:44:29 +0000 |
commit | 752d3597ef02a95efd693373132bf1e246f0edb0 (patch) | |
tree | 61fca51953b8bc3a68d3610e26b98f4f8458cc3a /doc | |
parent | tests: Reduce iterations / threads (diff) | |
download | gpgme-752d3597ef02a95efd693373132bf1e246f0edb0.tar.gz gpgme-752d3597ef02a95efd693373132bf1e246f0edb0.zip |
core: Add new context flag "redraw".
* src/context.h (struct gpgme_context): New field 'redraw_suggested'.
* src/op-support.c (_gpgme_op_reset): Clear REDRAW_SUGGESTED.
* src/progress.c (_gpgme_progress_status_handler): Set REDRAW_SUGGESTED.
* src/gpgme.c (gpgme_set_ctx_flag, gpgme_get_ctx_flag): Add "redraw".
* tests/run-sign.c (main): Use it.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/gpgme.texi | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/gpgme.texi b/doc/gpgme.texi index 511384f9..99627c4b 100644 --- a/doc/gpgme.texi +++ b/doc/gpgme.texi @@ -2888,6 +2888,29 @@ by this function. The properties are identified by the following values for @var{name}: @table @code +@item "redraw" +This flag is normally not changed by the caller because GPGME sets and +clears it automatically: The flag is cleared before an operation and +set if an operation noticed that the engine has launched a Pinentry. +A Curses based application may use this information to redraw the +screen; for example: + +@example + err = gpgme_op_keylist_start (ctx, "foo@@example.org", 0); + while (!err) + @{ + err = gpgme_op_keylist_next (ctx, &key); + if (err) + break; + show_key (key); + gpgme_key_release (key); + @} + if ((s = gpgme_get_ctx_flag (ctx, "redraw")) && *s) + redraw_screen (); + gpgme_release (ctx); +@end example + + @item "full-status" Using a @var{value} of "1" the status callback set by gpgme_set_status_cb returns all status lines with the exception of |