f07712f716e3de4f736a96374d5e057bc5610f33
[riece] / lisp / riece-options.el
1 ;;; riece-options.el --- customization
2 ;; Copyright (C) 1998-2003 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Created: 1998-09-28
6 ;; Keywords: IRC, riece
7
8 ;; This file is part of Riece.
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 (require 'riece-globals)
28
29 ;; User modifiable variables.
30 (defgroup riece nil
31   "Riece specific customize group")
32
33 (defgroup riece-options nil
34   "Riece user customizable variables"
35   :prefix "riece-"
36   :group 'riece)
37
38 (defcustom riece-saved-forms
39   '(riece-server-alist
40     riece-channel-buffer-mode
41     riece-user-list-buffer-mode
42     riece-layout)
43   "Variables saved after each session is completed."
44   :type 'string
45   :group 'riece-options)
46
47 (defcustom riece-debug nil
48   "If non-nil, random debug spews."
49   :type 'boolean
50   :group 'riece-options)
51
52 (defcustom riece-command-prefix "\C-c"
53   "Key sequence to be used as prefix for command mode key bindings."
54   :type 'string
55   :group 'riece-options)
56
57 (defgroup riece-looks nil
58   "Related to look and feel"
59   :prefix "riece-"
60   :group 'riece)
61
62 (defcustom riece-truncate-partial-width-windows nil
63   "If non-nil, truncate lines in splitting windows such as others buffer."
64   :type 'boolean
65   :group 'riece-looks)
66
67 (defcustom riece-use-full-window t
68   "If non-nil, whole Emacs window is used to display dialogue."
69   :type 'boolean
70   :group 'riece-looks)
71
72 (defcustom riece-directory (expand-file-name "~/.riece")
73   "Where to look for data files."
74   :type 'directory
75   :group 'riece-options)
76
77 (defcustom riece-addon-directory
78   (expand-file-name "addons" riece-directory)
79   "Where to look for add-on files."
80   :type 'directory
81   :group 'riece-options)
82   
83 (defcustom riece-variables-file
84   (expand-file-name "init" riece-directory)
85   "Where to look for variables."
86   :type 'file
87   :group 'riece-options)
88
89 (defcustom riece-saved-variables-file
90   (expand-file-name "save" riece-directory)
91   "Where to look for variables.
92 This file was saved the last session."
93   :type 'file
94   :group 'riece-options)
95
96 (defcustom riece-variables-files
97   (list riece-saved-variables-file riece-variables-file)
98   "Where to look for variables.  Helps to remove clutter from your .emacs.
99 This feature is most likely to dissappear in near future.  The preferred
100 way is to put Riece variables on .emacs or file loaded from there."
101   :type '(repeat (file :tag "Initialization File"))
102   :group 'riece-options)
103
104 (defcustom riece-addons '(riece-highlight
105                           riece-ctcp
106                           riece-guess
107                           riece-unread
108                           riece-history
109                           riece-url
110                           riece-button
111                           riece-menu)
112   "Add-ons insinuated into Riece."
113   :type '(repeat symbol)
114   :group 'riece-options)
115
116 (defgroup riece-server nil
117   "Server settings"
118   :prefix "riece-"
119   :group 'riece)
120
121 (defgroup riece-channel nil
122   "Channel settings"
123   :prefix "riece-"
124   :group 'riece)
125
126 (define-widget 'riece-service-spec 'radio
127   "Edit service spec entries"
128   :convert-widget 'riece-service-spec-convert)
129
130 (defun riece-service-spec-convert (widget)
131   (widget-put widget :args '((integer :tag "Port Number")
132                              (string :tag "Name")))
133   widget)
134
135 (define-widget 'riece-server-spec 'repeat
136   "Edit server spec entries"
137   :match (lambda (widget value)
138            (eval `(and ,@(mapcar
139                           (lambda (entry)
140                             (or (stringp (cdr entry))
141                                 (listp (cdr entry))))
142                           value))))
143   :convert-widget 'riece-server-spec-convert)
144
145 (defun riece-server-spec-convert (widget)
146   (let* ((host '(const :format "" :value :host))
147          (service '(const :format "" :value :service))
148          (host
149           `(group :inline t ,host (string :tag "Host")))
150          (service
151           `(group :inline t ,service riece-service-spec))
152          (spec
153           `(cons (string :tag "Name")
154                  (radio (string :tag "Host")
155                         (list ,host ,service))))
156          (args (list spec)))
157     (widget-put widget :args args)
158     widget))
159   
160 (defcustom riece-server-alist nil
161   "An alist mapping server names to plist."
162   :type 'riece-server-spec
163   :group 'riece-server)
164
165 (defcustom riece-server (getenv "IRCSERVER")
166   "IRC server host we are connecting to."
167   :type 'string
168   :group 'riece-server)
169
170 (defcustom riece-default-password (getenv "IRCPASSWORD")
171   "Your password."
172   :type '(radio (string :tag "Password")
173                 (const :tag "No" nil))
174   :group 'riece-server)
175
176 (defcustom riece-username (or (getenv "IRCNAME")
177                               (user-real-login-name))
178   "Your user name."
179   :type 'string
180   :group 'riece-server)
181
182 (defcustom riece-nickname (or (getenv "IRCNICK")
183                               (user-real-login-name))
184   "Your nickname."
185   :type 'string
186   :group 'riece-server)
187
188 (defcustom riece-startup-channel-list nil
189   "A list of channels to join automatically at startup."
190   :type '(repeat (choice (string :tag "Channel")
191                          (list (string :tag "Channel") (string :tag "Key"))))
192   :group 'riece-channel)
193
194 (defcustom riece-retry-with-new-nickname nil
195   "When nickname has already been in use, grow-tail automatically."
196   :type 'boolean
197   :group 'riece-server)
198
199 (defcustom riece-quit-timeout 10
200   "Quit timeout when there is no response from server."
201   :type 'integer
202   :group 'riece-server)
203
204 (defcustom riece-channel-buffer-mode t
205   "When non-nil, Riece will display a channel buffer."
206   :type 'boolean
207   :group 'riece-looks)
208
209 (defcustom riece-user-list-buffer-mode t
210   "When non-nil, Riece will display a nick list buffer."
211   :type 'boolean
212   :group 'riece-looks)
213
214 (defcustom riece-channel-list-buffer-mode t
215   "When non-nil, Riece will display a channel list buffer."
216   :type 'boolean
217   :group 'riece-looks)
218
219 (defcustom riece-default-freeze nil
220   "Channel buffer local freeze flag is on at starting."
221   :type 'boolean
222   :group 'riece-looks)
223
224 (defcustom riece-default-channel-binding nil
225   "The channel list to bind the channel number when joining."
226   :type '(repeat (radio (string :tag "Bound Channel")
227                         (const nil)))
228   :group 'riece-channel)
229
230 (defcustom riece-blink-parens nil
231   "Should we blink matching parenthesis in the command buffer?"
232   :type 'boolean
233   :group 'riece-options)
234
235 (defcustom riece-quit-message nil
236   "Default quit message."
237   :type '(radio (string :tag "Quit message"))
238   :group 'riece-options)
239
240 (defcustom riece-away-message nil
241   "Default away message."
242   :type '(radio (string :tag "Away message"))
243   :group 'riece-options)
244
245 (defcustom riece-gather-channel-modes t
246   "If non-nil, gather channel modes when we join a channel."
247   :type 'boolean
248   :group 'riece-options)
249
250 (defcustom riece-buffer-dispose-function #'bury-buffer
251   "Function called after the buffer was disposed."
252   :type 'function
253   :group 'riece-options)
254
255 (defcustom riece-format-time-function #'current-time-string
256   "Function to convert the specified time to the human readable form."
257   :type 'function
258   :group 'riece-options)
259
260 (provide 'riece-options)
261
262 ;;; riece-options.el ends here