Re: [Lazarus] Mac OS X : How to get my app to show proper Short-Cuts...

2008-10-27 Thread dominique
Ah, for some weird reason I thought it needed API calls. It is now all set via the IDE. Thanks again for the clarification. Dominique. On Mon, 27 Oct 2008 09:24:34 +0100, "EarMaster - Bent Olsen" <[EMAIL PROTECTED]> wrote: > Hi, > > Via LCL - by setting ShortCut properties for menus and actio

Re: [Lazarus] Mac OS X : How to get my app to show proper Short-Cuts...

2008-10-27 Thread EarMaster - Bent Olsen
Hi, Via LCL - by setting ShortCut properties for menus and actions with ssMeta in Carbon, or ssCtrl in Win32. Hope this helps, Normann > Hi Normann, > Can you explain what you mean by dynamically? Do you mean via Carbon > API > calls or LCL settings? > > Dominique. > > On Tue, 21 Oct 2008 09

Re: [Lazarus] Mac OS X : How to get my app to show proper Short-Cuts...

2008-10-26 Thread dominique
Hi Normann, Can you explain what you mean by dynamically? Do you mean via Carbon API calls or LCL settings? Dominique. On Tue, 21 Oct 2008 09:20:27 +0200, "EarMaster - Bent Olsen" <[EMAIL PROTECTED]> wrote: > Hi, > > We use short cuts like Meta+O for Ctrl+O, but you need to map short cuts >

Re: [Lazarus] Mac OS X : How to get my app to show proper Short-Cuts...

2008-10-21 Thread EarMaster - Bent Olsen
Hi, We use short cuts like Meta+O for Ctrl+O, but you need to map short cuts dynamically - some short cuts on Win32 needs to be remapped for Mac users. Regards, Normann > So is what I reported a bug that should be added to the bug tracker, as > this was definitely working prior to the "Lazarus

Re: [Lazarus] Mac OS X : How to get my app to show proper Short-Cuts...

2008-10-20 Thread dominique
So is what I reported a bug that should be added to the bug tracker, as this was definitely working prior to the "Lazarus Key mapping" fix, probably because carbon apps back then, just didn't have any choice but to support the Cmd+SomeKey mapping. So Tobias, how do you use the Carbon API to change

Re: [Lazarus] Mac OS X : How to get my app to show proper Short-Cuts...

2008-10-20 Thread Tobias Giesen
Hi, personally I use Mac OS Carbon API functions to manipulate the menu whenever the LCL doesn't do it right. Kind Regards, Tobias Giesen Super Flexible Software Ltd. & Co. KG Lessingstr. 42 48485 Neuenkirchen, Germany www.superflexible.com www.tgtools.com --

Re: [Lazarus] Mac OS X : How to get my app to show proper Short-Cuts...

2008-10-20 Thread dominique
Does anyone know how to fix this? Dominique. On Sun, 19 Oct 2008 11:59:53 -0400, <[EMAIL PROTECTED]> wrote: > Hi all, > I have a Carbon application, but the Short-cuts do not display correctly > in the menus and as such don't work correct. > > For example > The File Open menu short-cut displa

[Lazarus] Mac OS X : How to get my app to show proper Short-Cuts...

2008-10-19 Thread dominique
Hi all, I have a Carbon application, but the Short-cuts do not display correctly in the menus and as such don't work correct. For example The File Open menu short-cut displays as ^O and requires you to press Ctrl+O but I want it to work so that I can use Cmd+O instead, like other standard Carbo