Re: [lazarus] button glyphs in IDE dialogs

2007-08-02 Thread Graeme Geldenhuys
Maybe we can make it a option in 'Environment Options' so the user can
decide if they want glyphed buttons or not. Gnome desktop (and I think
KDE) does this as well.

Regards,
  - Graeme -



On 01/08/07, Marco van de Voort [EMAIL PROTECTED] wrote:
 On Wed, Aug 01, 2007 at 10:16:34AM +0200, Vincent Snijders wrote:
  Today a couple of bug reports have been made about missing button glyphs in
  IDE dialogs. Should they be added? Or does it make the dialogs too busy?

 I don't like glyphed buttons, but don't like iconic references in general.


_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] button glyphs in IDE dialogs

2007-08-02 Thread Vincent Snijders

Graeme Geldenhuys schreef:

Maybe we can make it a option in 'Environment Options' so the user can
decide if they want glyphed buttons or not. Gnome desktop (and I think
KDE) does this as well.




I think that is a lot of work.

Vincent

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] button glyphs in IDE dialogs

2007-08-02 Thread Graeme Geldenhuys
On 02/08/07, Vincent Snijders [EMAIL PROTECTED] wrote:

 I think that is a lot of work.


I can't check now, but doesn't the TBitBtn have a ShowGlyph property
we can toggle?  If not, I see your point.

Regards,
  - Graeme -

_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] button glyphs in IDE dialogs

2007-08-02 Thread Luk Vandelaer
On Thursday 02 August 2007 10:18, Vincent Snijders wrote:
 Graeme Geldenhuys schreef:
  On 02/08/07, Vincent Snijders [EMAIL PROTECTED] wrote:
  I think that is a lot of work.
 
  I can't check now, but doesn't the TBitBtn have a ShowGlyph property
  we can toggle?  If not, I see your point.

 It means you have to add that check to all the forms using bitbtns.
 You cannot just use the designer to make that change. So, it is a lot of
 work.

Can't you define a TIDEBitBtn  that checks the global variable, and change all 
the ocurances of TBitBtn in TIDEBitBtn ?

Luk


type
  TIDEBitBtn = class (TBitBtn)
  public
constructor create (AnOwner : TComponent); override;
  end;

constructor TIDEBitBtn.Create (AnOwner : TComponent);
begin
  inherited;
  ShowGlyph := GlobalShowGlyphs;
end;

_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] button glyphs in IDE dialogs

2007-08-02 Thread Vincent Snijders

Graeme Geldenhuys schreef:

On 02/08/07, Vincent Snijders [EMAIL PROTECTED] wrote:

I think that is a lot of work.



I can't check now, but doesn't the TBitBtn have a ShowGlyph property
we can toggle?  If not, I see your point.



It means you have to add that check to all the forms using bitbtns.
You cannot just use the designer to make that change. So, it is a lot of work.

Vincent

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] button glyphs in IDE dialogs

2007-08-01 Thread Mattias Gaertner
On Wed, 01 Aug 2007 10:16:34 +0200
Vincent Snijders [EMAIL PROTECTED] wrote:

 Today a couple of bug reports have been made about missing button
 glyphs in IDE dialogs. Should they be added? Or does it make the
 dialogs too busy? As far as I can see, the design guidelines
 http://wiki.lazarus.freepascal.org/GUI_design_guidelines don't say
 anything about it.

I think, glyphs should be added. But it has low priority.


Mattias

_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] button glyphs in IDE dialogs

2007-08-01 Thread Michael Van Canneyt


On Wed, 1 Aug 2007, Mattias Gaertner wrote:

 On Wed, 01 Aug 2007 10:16:34 +0200
 Vincent Snijders [EMAIL PROTECTED] wrote:
 
  Today a couple of bug reports have been made about missing button
  glyphs in IDE dialogs. Should they be added? Or does it make the
  dialogs too busy? As far as I can see, the design guidelines
  http://wiki.lazarus.freepascal.org/GUI_design_guidelines don't say
  anything about it.
 
 I think, glyphs should be added. But it has low priority.

I second that.

Michael.

_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] button glyphs in IDE dialogs

2007-08-01 Thread Marco van de Voort
On Wed, Aug 01, 2007 at 10:16:34AM +0200, Vincent Snijders wrote:
 Today a couple of bug reports have been made about missing button glyphs in 
 IDE dialogs. Should they be added? Or does it make the dialogs too busy?

I don't like glyphed buttons, but don't like iconic references in general.

_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives