700bfc27ccf591e7ef95e791143195b018f9969d
[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   "Variables saved after each session is completed."
43   :type 'string
44   :group 'riece-options)
45
46 (defcustom riece-debug nil
47   "If non-nil, random debug spews."
48   :type 'boolean
49   :group 'riece-options)
50
51 (defcustom riece-command-prefix "\C-c"
52   "Key sequence to be used as prefix for command mode key bindings."
53   :type 'string
54   :group 'riece-options)
55
56 (defgroup riece-looks nil
57   "Related to look and feel"
58   :prefix "riece-"
59   :group 'riece)
60
61 (defcustom riece-truncate-partial-width-windows nil
62   "If non-nil, truncate lines in splitting windows such as others buffer."
63   :type 'boolean
64   :group 'riece-looks)
65
66 (defcustom riece-use-full-window t
67   "If non-nil, whole Emacs window is used to display dialogue."
68   :type 'boolean
69   :group 'riece-looks)
70
71 (defcustom riece-directory (expand-file-name "~/.riece")
72   "Where to look for data files."
73   :type 'directory
74   :group 'riece-options)
75
76 (defcustom riece-addon-directory
77   (expand-file-name "addons" riece-directory)
78   "Where to look for add-on files."
79   :type 'directory
80   :group 'riece-options)
81   
82 (defcustom riece-variables-file
83   (expand-file-name "init" riece-directory)
84   "Where to look for variables."
85   :type 'file
86   :group 'riece-options)
87
88 (defcustom riece-saved-variables-file
89   (expand-file-name "save" riece-directory)
90   "Where to look for variables.
91 This file was saved the last session."
92   :type 'file
93   :group 'riece-options)
94
95 (defcustom riece-variables-files
96   (list riece-saved-variables-file riece-variables-file)
97   "Where to look for variables.  Helps to remove clutter from your .emacs.
98 This feature is most likely to dissappear in near future.  The preferred
99 way is to put Riece variables on .emacs or file loaded from there."
100   :type '(repeat (file :tag "Initialization File"))
101   :group 'riece-options)
102
103 (defcustom riece-addons '(riece-highlight
104                           riece-ctcp
105                           riece-guess
106                           riece-unread
107                           riece-history
108                           riece-url
109                           riece-button)
110   "Add-ons insinuated into Riece."
111   :type '(repeat symbol)
112   :group 'riece-options)
113
114 (defgroup riece-server nil
115   "Server settings"
116   :prefix "riece-"
117   :group 'riece)
118
119 (defgroup riece-channel nil
120   "Channel settings"
121   :prefix "riece-"
122   :group 'riece)
123
124 (define-widget 'riece-service-spec 'radio
125   "Edit service spec entries"
126   :convert-widget 'riece-service-spec-convert)
127
128 (defun riece-service-spec-convert (widget)
129   (widget-put widget :args '((integer :tag "Port Number")
130                              (string :tag "Name")))
131   widget)
132
133 (define-widget 'riece-server-spec 'repeat
134   "Edit server spec entries"
135   :match (lambda (widget value)
136            (eval `(and ,@(mapcar
137                           (lambda (entry)
138                             (or (stringp (cdr entry))
139                                 (listp (cdr entry))))
140                           value))))
141   :convert-widget 'riece-server-spec-convert)
142
143 (defun riece-server-spec-convert (widget)
144   (let* ((host '(const :format "" :value :host))
145          (service '(const :format "" :value :service))
146          (host
147           `(group :inline t ,host (string :tag "Host")))
148          (service
149           `(group :inline t ,service riece-service-spec))
150          (spec
151           `(cons (string :tag "Name")
152                  (radio (string :tag "Host")
153                         (list ,host ,service))))
154          (args (list spec)))
155     (widget-put widget :args args)
156     widget))
157   
158 (defcustom riece-server-alist nil
159   "An alist mapping server names to plist."
160   :type 'riece-server-spec
161   :group 'riece-server)
162
163 (defcustom riece-server (getenv "IRCSERVER")
164   "IRC server host we are connecting to."
165   :type 'string
166   :group 'riece-server)
167
168 (defcustom riece-default-password (getenv "IRCPASSWORD")
169   "Your password."
170   :type '(radio (string :tag "Password")
171                 (const :tag "No" nil))
172   :group 'riece-server)
173
174 (defcustom riece-username (or (getenv "IRCNAME")
175                               (user-real-login-name))
176   "Your user name."
177   :type 'string
178   :group 'riece-server)
179
180 (defcustom riece-nickname (or (getenv "IRCNICK")
181                               (user-real-login-name))
182   "Your nickname."
183   :type 'string
184   :group 'riece-server)
185
186 (defcustom riece-startup-channel-list nil
187   "A list of channels to join automatically at startup."
188   :type '(repeat (choice (string :tag "Channel")
189                          (list (string :tag "Channel") (string :tag "Key"))))
190   :group 'riece-channel)
191
192 (defcustom riece-retry-with-new-nickname nil
193   "When nickname has already been in use, grow-tail automatically."
194   :type 'boolean
195   :group 'riece-server)
196
197 (defcustom riece-quit-timeout 10
198   "Quit timeout when there is no response from server."
199   :type 'integer
200   :group 'riece-server)
201
202 (defcustom riece-channel-buffer-mode t
203   "When non-nil, Riece will display a channel buffer."
204   :type 'boolean
205   :group 'riece-looks)
206
207 (defcustom riece-user-list-buffer-mode t
208   "When non-nil, Riece will display a nick list buffer."
209   :type 'boolean
210   :group 'riece-looks)
211
212 (defcustom riece-channel-list-buffer-mode t
213   "When non-nil, Riece will display a channel list buffer."
214   :type 'boolean
215   :group 'riece-looks)
216
217 (defcustom riece-default-freeze nil
218   "Channel buffer local freeze flag is on at starting."
219   :type 'boolean
220   :group 'riece-looks)
221
222 (defcustom riece-default-channel-binding nil
223   "The channel list to bind the channel number when joining."
224   :type '(repeat (radio (string :tag "Bound Channel")
225                         (const nil)))
226   :group 'riece-channel)
227
228 (defcustom riece-blink-parens nil
229   "Should we blink matching parenthesis in the command buffer?"
230   :type 'boolean
231   :group 'riece-options)
232
233 (defcustom riece-quit-message nil
234   "Default quit message."
235   :type '(radio (string :tag "Quit message"))
236   :group 'riece-options)
237
238 (defcustom riece-away-message nil
239   "Default away message."
240   :type '(radio (string :tag "Away message"))
241   :group 'riece-options)
242
243 (defcustom riece-gather-channel-modes t
244   "If non-nil, gather channel modes when we join a channel."
245   :type 'boolean
246   :group 'riece-options)
247
248 (defcustom riece-buffer-dispose-function #'bury-buffer
249   "Function called after the buffer was disposed."
250   :type 'function
251   :group 'riece-options)
252
253 (defcustom riece-format-time-function #'current-time-string
254   "Function to convert the specified time to the human readable form."
255   :type 'function
256   :group 'riece-options)
257
258 (provide 'riece-options)
259
260 ;;; riece-options.el ends here