(gnus-face-from-file): Message 9.
[gnus] / lisp / gnus-win.el
1 ;;; gnus-win.el --- window configuration functions for Gnus
2 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs 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 ;; GNU Emacs 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 ;;; Commentary:
26
27 ;;; Code:
28
29 (eval-when-compile (require 'cl))
30
31 (require 'gnus)
32 (require 'gnus-util)
33
34 (defgroup gnus-windows nil
35   "Window configuration."
36   :group 'gnus)
37
38 (defcustom gnus-use-full-window t
39   "*If non-nil, use the entire Emacs screen."
40   :group 'gnus-windows
41   :type 'boolean)
42
43 (defvar gnus-window-configuration nil
44   "Obsolete variable.  See `gnus-buffer-configuration'.")
45
46 (defcustom gnus-window-min-width 2
47   "*Minimum width of Gnus buffers."
48   :group 'gnus-windows
49   :type 'integer)
50
51 (defcustom gnus-window-min-height 1
52   "*Minimum height of Gnus buffers."
53   :group 'gnus-windows
54   :type 'integer)
55
56 (defcustom gnus-always-force-window-configuration nil
57   "*If non-nil, always force the Gnus window configurations."
58   :group 'gnus-windows
59   :type 'boolean)
60
61 (defcustom gnus-use-frames-on-any-display nil