[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-devel
Subject:    Re: Font sizes (Re: Assorted Tru64 problems and wishes ...)
From:       Rik Hemsley <rik () kde ! org>
Date:       2000-06-26 19:27:48
[Download RAW message or body]

#if Thomas Leitner
> 
> On Mon, 26 Jun 2000, Rik Hemsley wrote:
> 
> > #if Thomas Leitner
> > > d.) Only a suggestion: The default fonts are too big so that the initial
> > >     KDE desktop looks a bit clumpsy. I suggest using Helvetica 10 rather
> > >     than Helvetica 12 for all fonts.
> > 
> > Hmm, 12pt helvetica is small on my screen. 14pt is more reasonable.
> 
> Really? We must be using different font lists then. I've got 1280x1024 and
> Helvetica 12 is just too big. For instance on the desktop most icon texts
> are wrapped-around!

I'm running at 1424x1068.

> > Perhaps we should set the default according to the screen resolution on
> > first KDE start :)
> 
> Good idea. But how to you setup the rules given our contradictory
> experiences above?

uint desksize = qApp->desktop()->width() * qApp->desktop()->height();

int SVGA  = 800 * 600,
    XGA   = 1024 * 768,
    SXGA  = 1280 * 1024,
    RIKS  = 1424 * 1068;

if (desksize >= RIKS)
  points = 14;
else if (desksize >= SXGA)
  points = 12;
else if (desksize >= XGA)
  points = 10;
else if (desksize >= SVGA)
  points = 9;
else
  points = 8;

Rik
 
>> Visit http://master.kde.org/mailman/listinfo/kde-devel#unsub to unsubscribe <<

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic