From owner-ntemacs-users@june  Tue Jun 18 18:19:36 1996
X-VM-v5-Data: ([nil nil nil nil nil nil nil nil nil]
	[nil "" "19" "June" "1996" "00:49:29" "GMT" "George Nassas" "George_Nassas@tvo.org" nil "25" "Re: Can a new frame be made \"cascaded\" on NTEmacs-Win95?" "^From:" nil nil "6" nil nil nil nil]
	nil)
Received: from joker.cs.washington.edu (joker.cs.washington.edu [128.95.1.42]) by june.cs.washington.edu (8.7.5/7.2ju) with SMTP id SAA12056 for <voelker@june.cs.washington.edu>; Tue, 18 Jun 1996 18:19:35 -0700
Received: from june.cs.washington.edu (june.cs.washington.edu [128.95.1.4]) by joker.cs.washington.edu (8.6.12/7.2ws+) with ESMTP id SAA26667 for <voelker@joker.cs.washington.edu>; Tue, 18 Jun 1996 18:19:34 -0700
Received: from bertrand.ccs.carleton.ca (bertrand.ccs.carleton.ca [134.117.1.42]) by june.cs.washington.edu (8.7.5/7.2ju) with SMTP id RAA05589 for <ntemacs-users@cs.washington.edu>; Tue, 18 Jun 1996 17:06:00 -0700
Received: by bertrand.ccs.carleton.ca (SMI-8.6/SMI-4.0) 	id UAA19069; Tue, 18 Jun 1996 20:05:49 -0400
>From: George_Nassas@tvo.org (George Nassas)
Reply-To: George_Nassas@tvo.org
Message-Id: <363065342.6386359@tvo.org>
Organization: TVOntario's Online System
Content-Type: text
From: George_Nassas@tvo.org
To: milanz@enterprise.ca
Cc: ntemacs-users@cs.washington.edu
Subject: Re: Can a new frame be made "cascaded" on NTEmacs-Win95?
Date: 19 Jun 1996 00:49:29 GMT

Milan Zimmermann,milanz@enterprise.ca writes:

> Is there a way to define new frame's size? (I know how to define size of
the
> original frame)
> 2. New frame seem to ignore foreground/background color definition from
> _emacs. I have in my _emacs

Use the default-frame-alist for this like so:

(setq default-frame-alist
      (append default-frame-alist
	      '((foreground-color . "white")
		(background-color . "blue")
		(cursor-color . "red")
		(width . 80)
		(height . 34)
		(font . "-*-Courier-normal-r-*-*-*-240-*-*-c-0-*-*-"))))

You can go (frame-parameters) in the *scratch* window for a list of
what is allowed.

Further documentation can be found under "frame" in the elisp reference.

- George

From owner-ntemacs-users@june  Fri Nov 29 09:10:57 1996
X-VM-v5-Data: ([nil nil nil nil nil nil nil nil nil]
	[nil "Fri" "29" "November" "1996" "16:06:31" "+0000" "Ronan Waide" "waider@autodealing.com" nil "32" "Re: colors in gnuserv" "^From:" nil nil "11" nil nil nil nil]
	nil)
Received: from joker.cs.washington.edu (joker.cs.washington.edu [128.95.1.42]) by june.cs.washington.edu (8.8.3+CSE/7.2ju) with SMTP id JAA06497 for <voelker@june.cs.washington.edu>; Fri, 29 Nov 1996 09:10:57 -0800
Received: from june.cs.washington.edu (june.cs.washington.edu [128.95.1.4]) by joker.cs.washington.edu (8.6.12/7.2ws+) with ESMTP id JAA30255 for <voelker@joker.cs.washington.edu>; Fri, 29 Nov 1996 09:10:56 -0800
Received: from mail (gate.autodealing.com [194.125.131.131]) by june.cs.washington.edu (8.8.3+CSE/7.2ju) with SMTP id IAA05121 for <ntemacs-users@cs.washington.edu>; Fri, 29 Nov 1996 08:08:57 -0800
Received: from waider.autodealing.com(really [194.9.15.139]) by mail 	via sendmail with smtp 	id <m0vTVSR-000AzsC@mail> 	for <ntemacs-users@cs.washington.edu>; Fri, 29 Nov 96 16:06:31 +0000 (GMT) 	(Smail-3.1.93 1996-May-30 #2 built 1996-Jun-28)
Message-Id: <m0vTVSR-000AzsC@mail>
In-Reply-To: <199611291301.NAA28368@wallace.info.bt.co.uk>
References: <329EB805.4E15@hplb.hpl.hp.com> 	<199611291301.NAA28368@wallace.info.bt.co.uk>
Organization: AutoDealing Software, Ltd.
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
From: Ronan Waide <waider@autodealing.com>
To: glenn.proctor@bt-sys.bt.co.uk
Cc: NT/Win95 Emacs List <ntemacs-users@cs.washington.edu>
Subject: Re: colors in gnuserv
Date: Fri, 29 Nov 96 16:06:31 +0000 (GMT)

On November 29, Glenn Proctor said:
> 
> Please let me know if you hear of any means to get new frames to
> 'inherit' *all* the colour definitions of the initial frame.
> 
> Glenn.

This is actually a general emacs question, not an NT specific one; you
may find help in one of the generic emacs support fora. However,
here's what works for me:

;;; Do the colours
(setq default-frame-alist
	  '((background-color . "black")
		(foreground-color . "wheat")
		(cursor-color . "wheat")
		(menu-bar-lines . 1)
		(horizontal-scroll-bars . nil)
		(vertical-scroll-bars . nil)))

(set-face-foreground 'modeline "black")
(set-face-background 'modeline "wheat")
(set-face-background 'highlight "navy")
(set-face-foreground 'highlight "green")

Regards,
Waider.
-- 
waider@autodealing.com / AutoDealing Software Ltd / +353-1-6766455

"Love wouldn't be blind if the braille wasn't so damned much fun."
		 - Armistead Maupin

