Mercurial > emacs
annotate lisp/play/dissociate.el @ 109581:06384b3caebf
Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
* lisp/menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
(menu-bar-showhide-tool-bar-menu-customize-disable)
(menu-bar-showhide-tool-bar-menu-customize-enable-right)
(menu-bar-showhide-tool-bar-menu-customize-enable-top)
(menu-bar-showhide-tool-bar-menu-customize-enable-bottom): New functions
(menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
make a menu for Options => toolbar that can move it.
* src/frame.c (Qtool_bar_position): New variable.
(make_frame): Set tool_bar_position to Qtop.
(frame_parms): Add tool-bar-position.
(x_report_frame_params): Store tool_bar_position.
(x_set_fringe_width): Reset wm size hint after fringe changes.
* src/frame.h (struct frame): Add tool_bar_position.
(Qbottom): Declare.
* src/gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
(xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
(xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
(xg_create_frame_widgets): Create a hobox for placing widgets
vertically. Use gtk_box_pack_start.
(xg_height_or_width_changed): Renamed from xg_height_changed.
(x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
(xg_update_frame_menubar, free_frame_menubar): Change to
xg_height_or_width_changed.
(xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
size correctly. Remove hardcoded 4, instead use handlebox size -
toolbar size.
(xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
size correctly. Use handlebox size + toolbar size as additional
size.
(xg_pack_tool_bar): POS is a new parameter.
Set orientation of tool bar based on pos.
Only make handlebox_widget if NULL.
Check if tool bar goes to vbox or hbox depending on pos.
(xg_update_tool_bar_sizes): New function.
(update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
height, call xg_update_tool_bar_sizes instead.
(free_frame_tool_bar): Remove from hbox or vbox depending on
toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
(xg_change_toolbar_position): New function.
* src/gtkutil.h (xg_change_toolbar_position): Declare.
* src/window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
and FRAME_TOOLBAR_LEFT_WIDTH.
* src/xfns.c (x_set_tool_bar_position): New function.
(xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
(x_frame_parm_handlers): Add x_set_tool_bar_position.
(syms_of_xfns): if USE_GTK, provide move-toolbar.
* src/xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
* src/xterm.h (struct x_output): Add toolbar_top_height,
toolbar_bottom_height, toolbar_left_width, toolbar_right_width. Remove
toolbar_height.
if USE_GTK: Add hbox_widget and toolbar_in_hbox.
(FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
(FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
(FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
author | Jan D. <jan.h.d@swipnet.se> |
---|---|
date | Thu, 29 Jul 2010 18:49:59 +0200 |
parents | 1d1d5d9bd884 |
children | 376148b31b5e |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
1 ;;; dissociate.el --- scramble text amusingly for Emacs |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2 |
74509 | 3 ;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005, |
106815 | 4 ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
845 | 5 |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
6 ;; Maintainer: FSF |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
794
diff
changeset
|
7 ;; Keywords: games |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
8 |
36 | 9 ;; This file is part of GNU Emacs. |
10 | |
94675
949bd6ad1ba4
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
36 | 12 ;; it under the terms of the GNU General Public License as published by |
94675
949bd6ad1ba4
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
949bd6ad1ba4
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; (at your option) any later version. |
36 | 15 |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
94675
949bd6ad1ba4
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
36 | 23 |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
24 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
25 |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2307
diff
changeset
|
26 ;; The single entry point, `dissociated-press', applies a travesty |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
27 ;; generator to the current buffer. The results can be quite amusing. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
28 |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
29 ;;; Code: |
36 | 30 |
258 | 31 ;;;###autoload |
36 | 32 (defun dissociated-press (&optional arg) |
33 "Dissociate the text of the current buffer. | |
34 Output goes in buffer named *Dissociation*, | |
35 which is redisplayed each time text is added to it. | |
36 Every so often the user must say whether to continue. | |
37 If ARG is positive, require ARG chars of continuity. | |
38 If ARG is negative, require -ARG words of continuity. | |
39 Default is 2." | |
40 (interactive "P") | |
41 (setq arg (if arg (prefix-numeric-value arg) 2)) | |
42 (let* ((inbuf (current-buffer)) | |
43 (outbuf (get-buffer-create "*Dissociation*")) | |
44 (move-function (if (> arg 0) 'forward-char 'forward-word)) | |
45 (move-amount (if (> arg 0) arg (- arg))) | |
46 (search-function (if (> arg 0) 'search-forward 'word-search-forward)) | |
47 (last-query-point 0)) | |
8341
7198dbca1d01
(dissociated-press): Error at start if buffer is empty.
Richard M. Stallman <rms@gnu.org>
parents:
4404
diff
changeset
|
48 (if (= (point-max) (point-min)) |
7198dbca1d01
(dissociated-press): Error at start if buffer is empty.
Richard M. Stallman <rms@gnu.org>
parents:
4404
diff
changeset
|
49 (error "The buffer contains no text to start from")) |
36 | 50 (switch-to-buffer outbuf) |
51 (erase-buffer) | |
52 (while | |
53 (save-excursion | |
54 (goto-char last-query-point) | |
55 (vertical-motion (- (window-height) 4)) | |
56 (or (= (point) (point-max)) | |
57 (and (progn (goto-char (point-max)) | |
58 (y-or-n-p "Continue dissociation? ")) | |
59 (progn | |
60 (message "") | |
61 (recenter 1) | |
62 (setq last-query-point (point-max)) | |
63 t)))) | |
64 (let (start end) | |
105829
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
65 (with-current-buffer inbuf |
36 | 66 (setq start (point)) |
67 (if (eq move-function 'forward-char) | |
68 (progn | |
69 (setq end (+ start (+ move-amount (random 16)))) | |
70 (if (> end (point-max)) | |
71 (setq end (+ 1 move-amount (random 16)))) | |
72 (goto-char end)) | |
73 (funcall move-function | |
74 (+ move-amount (random 16)))) | |
75 (setq end (point))) | |
76 (let ((opoint (point))) | |
77 (insert-buffer-substring inbuf start end) | |
78 (save-excursion | |
79 (goto-char opoint) | |
80 (end-of-line) | |
81 (and (> (current-column) fill-column) | |
82 (do-auto-fill))))) | |
105829
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
83 (with-current-buffer inbuf |
36 | 84 (if (eobp) |
85 (goto-char (point-min)) | |
86 (let ((overlap | |
87 (buffer-substring (prog1 (point) | |
88 (funcall move-function | |
89 (- move-amount))) | |
90 (point)))) | |
4404
46f13ed25534
(dissociated-press): Use `(random N)' instead of while loop.
Paul Eggert <eggert@twinsun.com>
parents:
3591
diff
changeset
|
91 (goto-char (1+ (random (1- (point-max))))) |
36 | 92 (or (funcall search-function overlap nil t) |
93 (let ((opoint (point))) | |
94 (goto-char 1) | |
95 (funcall search-function overlap opoint t)))))) | |
96 (sit-for 0)))) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
97 |
76953 | 98 (random t) |
99 | |
18383 | 100 (provide 'dissociate) |
101 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79716
diff
changeset
|
102 ;; arch-tag: 90d197d1-409b-45c5-a0b5-fbfb2e06334f |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
103 ;;; dissociate.el ends here |