Remove Gnus, making way for new subtree Gnus pkg
[packages] / xemacs-packages / liece / etc / styles / top
1 ;;; top --- Window configuration style spec for `top'. -*- emacs-lisp -*-
2 ;; Copyright (C) 1998 Daiki Ueno <daiki@kake.info.waseda.ac.jp>
3 ;; See file liece-copyright.el for original change log and copyright info.
4
5 ;; Author: Daiki Ueno <daiki@kake.info.waseda.ac.jp>
6 ;; Created: 1999-01-08
7 ;; Revised: 1999-01-08
8 ;; Keywords: IRC, liece
9
10 ;; This file is part of Liece.
11
12 ;; This program is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; This program is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Code:
28
29 (liece-window-add-style
30  (command-buffer-mode . any)
31  (channel-buffer-mode . t) 
32  (nick-buffer-mode . t)
33  (channel-list-buffer-mode . t)
34  (configuration 
35   (vertical
36    1.0
37    (command 4 point)
38    (horizontal
39     liece-channel-window-height-percent   
40     (channel 1.0)
41     (nick liece-nick-window-width-percent))
42    (horizontal
43     1.0
44     (others 1.0)
45     (channel-list 
46      liece-channel-list-window-width-percent)))))
47
48 (liece-window-add-style
49  (command-buffer-mode . any)
50  (channel-buffer-mode . t) 
51  (nick-buffer-mode . nil)
52  (channel-list-buffer-mode . t)
53  (configuration 
54   (vertical
55    1.0
56    (command 4 point)
57    (horizontal
58     liece-channel-window-height-percent
59     (channel 1.0))
60    (horizontal 
61     1.0
62     (others 1.0)
63     (channel-list 
64      liece-channel-list-window-width-percent)))))
65
66 (liece-window-add-style
67  (command-buffer-mode . any)
68  (channel-buffer-mode . t) 
69  (nick-buffer-mode . t)
70  (channel-list-buffer-mode . nil)
71  (configuration 
72   (vertical
73    1.0
74    (command 4 point)
75    (horizontal
76     liece-channel-window-height-percent   
77     (channel 1.0)
78     (nick liece-nick-window-width-percent))
79    (others 1.0))))
80
81 (liece-window-add-style
82  (command-buffer-mode . any)
83  (channel-buffer-mode . t) 
84  (nick-buffer-mode . nil)
85  (channel-list-buffer-mode . nil)
86  (configuration 
87   (vertical
88    1.0
89    (command 4 point)
90    (channel liece-channel-window-height-percent)
91    (others 1.0))))
92
93 (liece-window-add-style
94  (command-buffer-mode . any)
95  (channel-buffer-mode . nil) 
96  (nick-buffer-mode . any)
97  (channel-list-buffer-mode . any)
98  (configuration 
99   (vertical
100    1.0
101    (command 4 point)
102    (dialogue 1.0))))
103