diff options
| author | Joakim Verona | 2010-08-30 11:14:01 +0200 |
|---|---|---|
| committer | Joakim Verona | 2010-08-30 11:14:01 +0200 |
| commit | 8f7457f9179314ea534f188bc880652d68f0f846 (patch) | |
| tree | 9adfd4aad7f2f32dc5dc9f38927601b385b9a14e | |
| parent | 3da30ff32d250311aca65b6863f2a55a50f009be (diff) | |
| download | emacs-8f7457f9179314ea534f188bc880652d68f0f846.tar.gz emacs-8f7457f9179314ea534f188bc880652d68f0f846.zip | |
real -> live
| -rw-r--r-- | README.xwidget | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/README.xwidget b/README.xwidget index aa3dd77211b..506e34a7866 100644 --- a/README.xwidget +++ b/README.xwidget | |||
| @@ -17,7 +17,7 @@ create them with an api, get a reference, and tie them to a particular | |||
| 17 | buffer with a display spec. Also, xwidgets exists in only one copy, | 17 | buffer with a display spec. Also, xwidgets exists in only one copy, |
| 18 | where a plain image can be shown in several windows. The xwidget code | 18 | where a plain image can be shown in several windows. The xwidget code |
| 19 | tries to handle this by essentialy making a screen capture of the | 19 | tries to handle this by essentialy making a screen capture of the |
| 20 | widget and displaying those in the non-active windows, and the real | 20 | widget and displaying those in the non-active windows, and the live |
| 21 | widget in the active window. This doesnt currently work for xembed | 21 | widget in the active window. This doesnt currently work for xembed |
| 22 | gtk_socket widgets. | 22 | gtk_socket widgets. |
| 23 | 23 | ||
| @@ -43,7 +43,7 @@ synchonous with Emacs display changes. Ok, so why is that difficult then? | |||
| 43 | iterate all xwidgets and hide those which hasnt been displayed. | 43 | iterate all xwidgets and hide those which hasnt been displayed. |
| 44 | 44 | ||
| 45 | - In the general case, there can only be one xwidget, and several views of | 45 | - In the general case, there can only be one xwidget, and several views of |
| 46 | it. There is one real view, and several phantom views. The real view is defined | 46 | it. There is one live view, and several phantom views. The live view is defined |
| 47 | to be in the currently selected window. All other views are phantom views. | 47 | to be in the currently selected window. All other views are phantom views. |
| 48 | 48 | ||
| 49 | Even this simple rule is difficult to implement in practice because Emacs | 49 | Even this simple rule is difficult to implement in practice because Emacs |
| @@ -61,7 +61,7 @@ synchonous with Emacs display changes. Ok, so why is that difficult then? | |||
| 61 | forward, and when and how to do it. | 61 | forward, and when and how to do it. |
| 62 | 62 | ||
| 63 | - The case of showing an xwidget in several frames is not solved at all | 63 | - The case of showing an xwidget in several frames is not solved at all |
| 64 | currently. This would mean moving the real xwidget between frames when the | 64 | currently. This would mean moving the live xwidget between frames when the |
| 65 | selected window moves. The gtk widget will need to be reparented between | 65 | selected window moves. The gtk widget will need to be reparented between |
| 66 | windows, which seem fragile. | 66 | windows, which seem fragile. |
| 67 | 67 | ||