diff options
| author | Jan Djärv | 2006-02-14 11:35:00 +0000 |
|---|---|---|
| committer | Jan Djärv | 2006-02-14 11:35:00 +0000 |
| commit | e0f467cba74a690dbdd9afd05a022006930356d3 (patch) | |
| tree | 346c8be87d0d69ba2c08a9b6bb5feba598002628 /src | |
| parent | 0f340cab5f8ee965bf36d63b9e9ae4a1af491420 (diff) | |
| download | emacs-e0f467cba74a690dbdd9afd05a022006930356d3.tar.gz emacs-e0f467cba74a690dbdd9afd05a022006930356d3.zip | |
* xfns.c (syms_of_xfns): New variable: x-gtk-whole-detached-tool-bar.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c index 10996f8fbbd..e2449a8f3c0 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -158,6 +158,10 @@ int x_use_old_gtk_file_dialog; | |||
| 158 | 158 | ||
| 159 | int x_gtk_show_hidden_files; | 159 | int x_gtk_show_hidden_files; |
| 160 | 160 | ||
| 161 | /* If non-zero, don't collapse to tool bar when it is detached. */ | ||
| 162 | |||
| 163 | int x_gtk_whole_detached_tool_bar; | ||
| 164 | |||
| 161 | /* The background and shape of the mouse pointer, and shape when not | 165 | /* The background and shape of the mouse pointer, and shape when not |
| 162 | over text or in the modeline. */ | 166 | over text or in the modeline. */ |
| 163 | 167 | ||
| @@ -5806,6 +5810,12 @@ Note that this is just the default, there is a toggle button on the file | |||
| 5806 | chooser to show or not show hidden files on a case by case basis. */); | 5810 | chooser to show or not show hidden files on a case by case basis. */); |
| 5807 | x_gtk_show_hidden_files = 0; | 5811 | x_gtk_show_hidden_files = 0; |
| 5808 | 5812 | ||
| 5813 | DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", &x_gtk_whole_detached_tool_bar, | ||
| 5814 | doc: /* *If non-nil, a detached tool bar is shown in full. | ||
| 5815 | The default is to just show an arrow and pressing on that arrow shows | ||
| 5816 | the tool bar buttons. */); | ||
| 5817 | x_gtk_whole_detached_tool_bar = 0; | ||
| 5818 | |||
| 5809 | Fprovide (intern ("x"), Qnil); | 5819 | Fprovide (intern ("x"), Qnil); |
| 5810 | 5820 | ||
| 5811 | #ifdef USE_X_TOOLKIT | 5821 | #ifdef USE_X_TOOLKIT |