Re: [Lazarus] SourceEditor: strange gap on right hand side

2012-02-29 Thread Martin
On 29/02/2012 08:30, Graeme Geldenhuys wrote: 2012/2/28 Martin : It can be switched on and off in the IDE options. It does show (for the entire file): - position of breakpoints - position of bookmarks - changes (unsaved/saved) per line - implementation/interface/initialization (shaded grey

Re: [Lazarus] Project management

2012-02-29 Thread Martin
On 01/03/2012 00:35, Hans-Peter Diettrich wrote: Juha Manninen schrieb: So, what does the management mean in practice? Should Lazarus be managed differently from how it is managed now? IMO it's not so much a matter of management, but of mind shift. The developers should share more of their

Re: [Lazarus] Project management

2012-03-01 Thread Martin
On 01/03/2012 14:54, Hans-Peter Diettrich wrote: Martin schrieb: On 01/03/2012 00:35, Hans-Peter Diettrich wrote: Juha Manninen schrieb: So, what does the management mean in practice? Should Lazarus be managed differently from how it is managed now? IMO it's not so much a matter

Re: [Lazarus] SynEdit free my TSynCompletion when freed

2012-03-03 Thread Martin
On 03/03/2012 12:59, Zaher Dirkey wrote: Hi i have global TSynCompletion for muliple synedit, i created it like this FCompletion := TSynCompletion.Create(nil); FCompletion.Width := 340; FCompletion.EndOfTokenChr := '{}()[]./\:!$*+-=%'; FCompletion.OnExecute := @OnExecuteCompletion;

Re: [Lazarus] SynEdit free my TSynCompletion when freed

2012-03-03 Thread Martin
On 03/03/2012 13:29, Martin wrote: On 03/03/2012 12:59, Zaher Dirkey wrote: Hi i have global TSynCompletion for muliple synedit, i created it like this FCompletion := TSynCompletion.Create(nil); FCompletion.Width := 340; FCompletion.EndOfTokenChr

Re: [Lazarus] SynEdit free my TSynCompletion when freed

2012-03-03 Thread Martin
On 03/03/2012 13:33, Martin wrote: On 03/03/2012 13:29, Martin wrote: On 03/03/2012 12:59, Zaher Dirkey wrote: Hi i have global TSynCompletion for muliple synedit, i created it like this FCompletion := TSynCompletion.Create(nil); FCompletion.Width := 340; FCompletion.EndOfTokenChr

Re: [Lazarus] Options dialog filter

2012-03-03 Thread Martin
On 03/03/2012 16:04, Juha Manninen wrote: Hi I added a FilterEdit control to the Options dialog which is used for IDE Options and for Project Options. It searches from all captions form all options pages, highlights the matching texts and hides pages without matches. Please check out. The

Re: [Lazarus] Options dialog filter

2012-03-03 Thread Martin
On 03/03/2012 16:04, Juha Manninen wrote: Hi I added a FilterEdit control to the Options dialog which is used for IDE Options and for Project Options. It searches from all captions form all options pages, highlights the matching texts and hides pages without matches. Please check out. Long

Re: [Lazarus] Options dialog filter

2012-03-03 Thread Martin
On 03/03/2012 16:04, Juha Manninen wrote: Hi I added a FilterEdit control to the Options dialog which is used for IDE Options and for Project Options. It searches from all captions form all options pages, highlights the matching texts and hides pages without matches. Please check out.

Re: [Lazarus] Debug inside other component in other package like SynEdit

2012-03-03 Thread Martin
On 03/03/2012 18:42, Zaher Dirkey wrote: Hi, I can't stepinto or show the source from call stack window referenced to SynEdit component, i think same to another components, what i missed to do that? Thanks in advance I am using last reversion of Lazarus, FPC 2.6 Recompile that package

Re: [Lazarus] Options dialog filter

2012-03-03 Thread Martin
On 03/03/2012 22:32, Juha Manninen wrote: 2012/3/3 Martin laza...@mfriebe.de mailto:laza...@mfriebe.de 1) It keeps the current frame visible, even if it does not match. That means a frame, that is not in the Tree is visible I improved it. There is still a bug in TreeView. A Node's

Re: [Lazarus] Options dialog filter

2012-03-03 Thread Martin
On 03/03/2012 23:02, Juha Manninen wrote: 2012/3/4 Martin laza...@mfriebe.de mailto:laza...@mfriebe.de Why do we need SynEdit? I thought it is used in some options frames. I am not sure. Hints are not searched That would be confusing wouldn't it? Why? Hints can

Re: [Lazarus] Options dialog filter

2012-03-04 Thread Martin
On 03/03/2012 23:44, Juha Manninen wrote: 2012/3/4 Martin laza...@mfriebe.de mailto:laza...@mfriebe.de The feature is already great. And I do by no means want to make it look like I do not like it. I like it a lot. I just expect users may not search or the terms we use

Re: [Lazarus] Options dialog filter

2012-03-04 Thread Martin
On 04/03/2012 09:31, zeljko wrote: On Sunday 04 of March 2012 09:52:33 Juha Manninen wrote: I tested this filter on Windows and yes, only labels are highlighted. Checkboxes, Groupboxes, RadioGroups etc. are not. It makes a very big difference compared to Linux + GTK2 or QT. Is this only

Re: [Lazarus] Debug inside other component in other package like SynEdit

2012-03-04 Thread Martin
On 04/03/2012 11:38, Zaher Dirkey wrote: On Sat, Mar 3, 2012 at 9:33 PM, Martin laza...@mfriebe.de mailto:laza...@mfriebe.de wrote: Recompile that package with debug info. SynEdit already have debug info and i compiled with clean. SynEdit package - Options - Linking - Generate debugging

Re: [Lazarus] Debug inside other component in other package like SynEdit

2012-03-04 Thread Martin
On 04/03/2012 18:53, Zaher Dirkey wrote: Now i need to debug inside FPC units like Classes is that related to FPC list? You need to rebuild the relevant parts of fpc, easier: all of it. What platform ? You might want to install to a diff directory, since for debugging you would better

Re: [Lazarus] SourceEditor: strange gap on right hand side

2012-03-04 Thread Martin
On 04/03/2012 22:32, Juha Manninen wrote: 2012/2/28 Martin laza...@mfriebe.de mailto:laza...@mfriebe.de And WithTopInfo is also a normal feature now If you are (caret pos) in a big class (or procedure) it shows you the name Martin, how to enable the WithTopInfo feature without

Re: [Lazarus] Options dialog filter

2012-03-06 Thread Martin
On 06/03/2012 12:25, Sven Barth wrote: Am 06.03.2012 11:45, schrieb Paul Ishenin: 06.03.12 18:30, Juha Manninen пишет: I don't know if the color support is a standard feature in these controls but surely it feels illogical that setting a color doesn't do anything. Color property on windows

Re: [Lazarus] JEDI format and UNDO

2012-03-06 Thread Martin
On 06/03/2012 13:56, Paul Ishenin wrote: 06.03.12 20:58, zeljko пишет: Yes, I've spotted it too... very unpleasant. It should do just one undo like it was before ... Martin ? That's was my change. JCF now replaces only changed strings, not the whole text. I will look what can be done

Re: [Lazarus] heap trace

2012-03-06 Thread Martin
On 06/03/2012 13:55, Antonio Fortuny wrote: Hi all. Sorry if this is a silly question but I can't find the answer into this forun. How to get the function names in the heaptrc trace ? I use in project options: in Linking options: generate debug info for dgb show line numbers use

Re: [Lazarus] heap trace

2012-03-06 Thread Martin
On 06/03/2012 14:05, Antonio Fortuny wrote: Hi again. Got it. -gl was checked but unchecking use symbol file for gdb it works again 8-) AH, maybe add a feature request, that this adds a warning, when you set those options Le 06/03/2012 14:55, Antonio Fortuny a écrit : Hi all.

Re: [Lazarus] heap trace

2012-03-06 Thread Martin
On 06/03/2012 14:30, Antonio Fortuny wrote: I confirm: compiling with use symbol file for gdb suppresses line references in heaptrc output unchecking the checkbox restores line references again. I made a rebuid each time. Sounds like a bug but I'm not yet sure it is. You need to check on

Re: [Lazarus] JEDI format and UNDO

2012-03-07 Thread Martin
On 07/03/2012 19:08, Zaher Dirkey wrote: On Wed, Mar 7, 2012 at 4:52 AM, Paul Ishenin i...@kmiac.ru mailto:i...@kmiac.ru wrote: 06.03.2012 20:32, Zaher Dirkey ?: Hi, Ctrl+D make format for my code. But when make Ctrl+Z it make strange undo, it is undo line

Re: [Lazarus] Hints in debugging

2012-03-07 Thread Martin
On 07/03/2012 19:09, Richard Mace wrote: Hi, I have the following code, with a break point on if for debugging: oUser.Id := fSQLQuery.Fields[0].AsInteger; When I highlight the Id part of oUser, I get an error, however, when I highlight oUser, I get a breakdown of all of the parameters,

Re: [Lazarus] Multiple installations of Lazarus

2012-03-08 Thread Martin
On 08/03/2012 15:57, Mark Morgan Lloyd wrote: I think what would be really useful would be a redirect, i.e. the IDE first looks at e.g. ~/.lazarus and if it sees ~/.lazarus/redirect it expands macros in the line it contains to have the same effect as -pcp. The version as macro on the

Re: [Lazarus] Callstack parameters

2012-03-08 Thread Martin
On 08/03/2012 19:57, Hans-Peter Diettrich wrote: Is it possible to disable the display of object members in the parameter list? Currently an object reference hides all following parameters :-( Can you give an example? If I pass an object (instance of a class), I just see the address.

Re: [Lazarus] Callstack parameters

2012-03-08 Thread Martin
On 08/03/2012 22:04, Hans-Peter Diettrich wrote: Martin schrieb: On 08/03/2012 19:57, Hans-Peter Diettrich wrote: Is it possible to disable the display of object members in the parameter list? Currently an object reference hides all following parameters :-( Can you give an example? If I

Re: [Lazarus] FENETRE CMD

2012-03-10 Thread Martin
On 10/03/2012 21:18, CRAPEZ wrote: Hy After compile a lazarus project, the software pass by a windows cmd. How can y do for no see this window. Project Options Linking enable Win 32 Gui applicatian -WG -- ___ Lazarus mailing list

[Lazarus] Anyone using IME? (windows only) Japanese, Chinese, ....

2012-03-12 Thread Martin
I need testers: http://bugs.freepascal.org/view.php?id=13140 There are now 2 supported ways to use IME (on windows, in SynEdit) revision 35901 -- 0.9.31 only / 0.9.30.x does/will not have it 1) The default IME composition is displayed by SynEdit. The surrounding text is correctly displayed.

Re: [Lazarus] How to iterate through a TAvgLvlTree

2012-03-16 Thread Martin
On 16/03/2012 10:36, Felipe Monteiro de Carvalho wrote: Can I add a routine to access the AvgLvlTree as an array? To make it a better substitute to TFPList in objects which offer an indirect interface to the internal list, such as TLazAccessibleObject. My idea is defining: Index zero =

Re: [Lazarus] Question on some resourcestrings

2012-03-16 Thread Martin
On 16/03/2012 12:09, Haruyuki Fujimaki wrote: Hello, I am translating a lazaruside.po file taken from 0.9.31-35602. I do not understand the meaning of some new resourcestrings: 1.liswatchscope with msgid Watch scope Is this mean scope of watch or to watch scope, click on here? Where can I

Re: [Lazarus] Dockable IDE

2012-03-17 Thread Martin
On 17/03/2012 20:29, Mattias Gaertner wrote: Then fix the page restore bug. Then saving/restoring the bounds of the floating windows (anchordocking). On that part, I wondered why the old layout stuff was totally abandoned. Even in docking, a user might want to specify fixed positions (maybe

Re: [Lazarus] Dockable IDE

2012-03-17 Thread Martin
On 17/03/2012 21:04, Mattias Gaertner wrote: On Sat, 17 Mar 2012 20:49:07 + Martinlaza...@mfriebe.de wrote: On 17/03/2012 20:29, Mattias Gaertner wrote: Then fix the page restore bug. Then saving/restoring the bounds of the floating windows (anchordocking). On that part, I wondered why

Re: [Lazarus] Debugger Error: PC register is not available

2012-03-17 Thread Martin
On 18/03/2012 02:47, John Repucci wrote: I just encountered the below pop-up error message when debugging. Within that one session of Laz, I was able to reproduce the message, but once I existed / restarted Lazarus, it did not reoccur. Any suggestions for the next time I encounter it? code

Re: [Lazarus] Dockable IDE

2012-03-17 Thread Martin
On 18/03/2012 02:35, Hans-Peter Diettrich wrote: Martin schrieb: On 17/03/2012 21:04, Mattias Gaertner wrote: On Sat, 17 Mar 2012 20:49:07 + Martinlaza...@mfriebe.de wrote: On 17/03/2012 20:29, Mattias Gaertner wrote: Then fix the page restore bug. Then saving/restoring the bounds

Re: [Lazarus] Dockable IDE

2012-03-17 Thread Martin
On 18/03/2012 02:29, Hans-Peter Diettrich wrote: Martin schrieb: On 17/03/2012 20:29, Mattias Gaertner wrote: Then fix the page restore bug. Then saving/restoring the bounds of the floating windows (anchordocking). On that part, I wondered why the old layout stuff was totally abandoned

Re: [Lazarus] Updates to Synedit and 64 bit have linking problems

2012-03-18 Thread Martin
On 18/03/2012 08:50, ik wrote: Hello, I tried to compile Lazarus today from svn (after two weeks of not updating it), and got the following error message: lazarus/components/synedit/synedithighlighterfoldbase.pas(722,13) Error: Asm: [movsxd mem64,reg32] invalid combination of opcode and

Re: [Lazarus] Updates to Synedit and 64 bit have linking problems

2012-03-18 Thread Martin
On 18/03/2012 08:50, ik wrote: Hello, I tried to compile Lazarus today from svn (after two weeks of not updating it), and got the following error message: lazarus/components/synedit/synedithighlighterfoldbase.pas(722,13) Error: Asm: [movsxd mem64,reg32] invalid combination of opcode and

Re: [Lazarus] Why does a project have to be open?

2012-03-18 Thread Martin
On 18/03/2012 14:29, Jürgen Hestermann wrote: Sven Barth schrieb: Also this is no feature, it's currently one of the core concepts of Lazarus and it was so for years. So I doubt that this will be changed in the near future (before 1.0 at least). Although I have arranged with it now it

Re: [Lazarus] Updates to Synedit and 64 bit have linking problems

2012-03-19 Thread Martin
On 19/03/2012 16:27, ik wrote: On Sun, Mar 18, 2012 at 15:36, Martinlaza...@mfriebe.de wrote: On 18/03/2012 08:50, ik wrote: Seen the responses. Since it seems to affect the current release, I am willing ta apply a workaround patch, but: - the workaround should be IFDEF to the affected

Re: [Lazarus] bug in debug-log code...

2012-03-20 Thread Martin
On 20/03/2012 15:53, waldo kitty wrote: anyway, my point is that something is eating the first part of the second line... i suspect a string index counter error or translation string problem?? either way, it... ummm... bugs me... please forgive the pun... Well my logfile looks ok (win32)

Re: [Lazarus] Size of binaries etc.

2012-03-21 Thread Martin
On 21/03/2012 10:42, Mark Morgan Lloyd wrote: A program built using (some version of) Delphi comes to about 317Kb, but even with a manual strip the best I can do with Lazarus/FPC is pushing 3Mb. Now for domestic consumption I can live with that, but I don't think it looks very good if I

Re: [Lazarus] Size of binaries etc.

2012-03-21 Thread Martin
On 21/03/2012 14:07, Paul Ishenin wrote: 21.03.12 20:06, Martin wrote: Compiling an empty form, smartlink, withdout heaptrc, and stripped (use strip.exe) should come to 1.9 Mb on Lazarus trunk. As I remember that was about 1.6 Mb but with win32 widgetset. Gtk2 widgetset need much work

Re: [Lazarus] Emacs KeyBindings

2012-03-21 Thread Martin
On 21/03/2012 14:24, aditya siram wrote: Hi all, Is it possible to have Emacs like keybindings for source code navigation? For instance I don't see a option in the key mappings menu for Move Char Left or Move Char Right which I'd like to bind to Ctrl-F and Ctrl-B respectively. in 0.9.31 they

Re: [Lazarus] [fpc-pascal] SQLdb: problem using GDB, but do not have memleak

2012-03-21 Thread Martin
I cced to lazarus. We should move the discussion On 21/03/2012 14:54, Marcos Douglas wrote: Oh my... =) There are many differences, many options to choice. Using a simple vision, I think the IDE should be use the last GDB that works fine in the major cases. What GDB version represents that?

Re: [Lazarus] [fpc-pascal] SQLdb: problem using GDB, but do not have memleak

2012-03-21 Thread Martin
On 21/03/2012 15:11, Marcos Douglas wrote: On Wed, Mar 21, 2012 at 12:01 PM, Martinlaza...@mfriebe.de wrote: So far I have no plans to update to 7.4 until either: - I find some existing problem solved in it - I start supporting new features However, my tests so far, have not shown any

Re: [Lazarus] Size of binaries etc.

2012-03-21 Thread Martin
On 21/03/2012 21:02, Mark Morgan Lloyd wrote: Brought trunk up to date, compiled with 2.6.0. FPC itself is compiled with -O- -gl, ld is version 2.20.1. On Linux x86 (Debian Squeeze) with gtk2, freshly-created minimal project with full optimisation, no debug, optimise for minimum size and

Re: [Lazarus] Size of binaries etc.

2012-03-22 Thread Martin
On 22/03/2012 10:06, Mark Morgan Lloyd wrote: Felipe Monteiro de Carvalho wrote: On Wed, Mar 21, 2012 at 10:02 PM, Mark Morgan Lloyd markmll.laza...@telemetry.co.uk wrote: Can't see it in trunk. Is it from an optional package? No, it is part of the standard IDE. For me it is right under

Re: [Lazarus] IDE Editor incredibly slow on newer GTK2

2012-03-24 Thread Martin
On 24/03/2012 20:02, Bernd Kreuss wrote: I recently updated my ancient Ubuntu Hardy to Oneiric which has GTK-2.24.6. Now I noticed that the SynEdit in the Lazarus IDE feels painfully sluggish. If I press a key there is a 0.2 seconds delay until it updates the screen. If I keep the key pressed

Re: [Lazarus] IDE Editor incredibly slow on newer GTK2

2012-03-24 Thread Martin
On 24/03/2012 21:02, Bernd wrote: 2012/3/24 Martinlaza...@mfriebe.de: Compile the SynEdit package with the following defines SynDebug SynCaretDebug SYNSCROLLDEBUG VerboseSynEditInvalidate SynCheckPaintLock and get a logfile. Please also try if switching the overview gutter (right hand site)

Re: [Lazarus] IDE Editor incredibly slow on newer GTK2

2012-03-24 Thread Martin
On 24/03/2012 21:02, Bernd wrote: 2012/3/24 Martinlaza...@mfriebe.de: Compile the SynEdit package with the following defines SynDebug SynCaretDebug SYNSCROLLDEBUG VerboseSynEditInvalidate SynCheckPaintLock and get a logfile. Please also try if switching the overview gutter (right hand site)

Re: [Lazarus] IDE Editor incredibly slow on newer GTK2

2012-03-24 Thread Martin
On 24/03/2012 21:31, Martin wrote: On 24/03/2012 21:02, Bernd wrote: 2012/3/24 Martinlaza...@mfriebe.de: Compile the SynEdit package with the following defines SynDebug SynCaretDebug SYNSCROLLDEBUG VerboseSynEditInvalidate SynCheckPaintLock and get a logfile. Please also try if switching

Re: [Lazarus] IDE Editor incredibly slow on newer GTK2

2012-03-24 Thread Martin
On 24/03/2012 21:40, Martin wrote: On 24/03/2012 21:31, Martin wrote: On 24/03/2012 21:02, Bernd wrote: 2012/3/24 Martinlaza...@mfriebe.de: Compile the SynEdit package with the following defines SynDebug SynCaretDebug SYNSCROLLDEBUG VerboseSynEditInvalidate SynCheckPaintLock and get

Re: [Lazarus] IDE Editor incredibly slow on newer GTK2

2012-03-25 Thread Martin
please attach your editor options Also still working on the assumption that it works ok in QT (otherwise same PC, same IDE. But bad on GTK So it must be code that interacts with the WS. Otherwise it had to be bad for both. On 25/03/2012 10:58, Bernd wrote: I have tried both defines.

Re: [Lazarus] wiki on a new server

2012-03-27 Thread Martin
On 27/03/2012 08:55, Graeme Geldenhuys wrote: On 23 March 2012 11:03, Vincent Snijdersvincent.snijd...@gmail.com wrote: time consuming the default monoskin is used now. Therefore you will notice changes in its appearance. There are still problems with the new wiki. It seems the wiki style is

Re: [Lazarus] Stop making false claims and statements on the wiki!

2012-03-27 Thread Martin
On 27/03/2012 13:58, Graeme Geldenhuys wrote: Hi Felipe, PLEASE STOP SPREADING FUD! Regarding the wiki page... http://wiki.lazarus.freepascal.org/Custom_Drawn_Interface I realize, it is not my war, but a few comments. Personally I am not using either of them. I do definitely not have a

Re: [Lazarus] Debugger hanging

2012-03-28 Thread Martin
On 28/03/2012 14:30, Ludo Brands wrote: Hi, Encountered an endless loop with the debugger while stepping through code and the call stack window open. The Debug Output window is filling up with messages like this: -stack-select-frame 2158 ^done (gdb) -data-evaluate-expression $fp

Re: [Lazarus] RE : Debugger hanging

2012-03-28 Thread Martin
On 28/03/2012 15:14, Ludo Brands wrote: Stopping the debugger is the only way out. Windows XP sp2, gdb 7.3, Lazarus 0.9.31 svn 36383. Not sure if I'll be able to reproduce this. It is reproducible. Let me know what I can do to get more info to debug his. Ludo start lazarus with

Re: [Lazarus] RE : Debugger hanging

2012-03-28 Thread Martin
On 28/03/2012 15:14, Ludo Brands wrote: Stopping the debugger is the only way out. Windows XP sp2, gdb 7.3, Lazarus 0.9.31 svn 36383. Not sure if I'll be able to reproduce this. It is reproducible. Let me know what I can do to get more info to debug his. try rev 36404 --

Re: [Lazarus] RE : RE : Debugger hanging

2012-03-29 Thread Martin
On 29/03/2012 08:35, Ludo Brands wrote: It is reproducible. Let me know what I can do to get more info to debug his. try rev 36404 Problem fixed. In case of a nested procedure you mentioned earlier, wouldn't the stack depth displayed in the Call Stack window be a reasonable ceiling for the

Re: [Lazarus] SIGSEGV with Debug only

2012-03-30 Thread Martin
On 30/03/2012 16:11, Daniel Simoes de Ameida wrote: Bingo... Is the HeapTrace.. I just removed HeapTrace Unit from Linking and the problem has gone... No it has not gone. It is only hidden. That means you lowered the likelihood of it happening. The code still accesses an object that does

Re: [Lazarus] SIGSEGV with Debug only

2012-03-30 Thread Martin
On 30/03/2012 20:54, Daniel Simoes de Ameida wrote: Martin, Even doesn't changing the Owner, the problem still.. O forgot to mention the content of ChangeOwner function procedure ChangeOwner(AComponente, NewOwner: TComponent); begin AComponente.Owner.RemoveComponent(AComponente

Re: [Lazarus] IDE Editor incredibly slow on newer GTK2

2012-03-31 Thread Martin
On 31/03/2012 12:26, Bernd wrote: I cannot reproduce the extreme slowness anymore, no matter what I do. I fixed an issue, that affected the editor, but on all widgetset. However it did not match you description (dependency on windows size). It only happened if you had a lot of tabs open.

Re: [Lazarus] wiki on a new server

2012-03-31 Thread Martin
On 31/03/2012 18:59, Bart wrote: On 3/31/12, Vincent Snijdersvincent.snijd...@gmail.com wrote: Also our old CSS values disappeared, for example: class=working http://wiki.lazarus.freepascal.org/Roadmap Fixed properly now, I don't see any colors (IIRC we're talking about background colors

Re: [Lazarus] Strange dependency of units

2012-04-01 Thread Martin
On 01/04/2012 14:15, Jürgen Hestermann wrote: Mattias Gaertner schrieb: That's exactly what I did. I used Larazus to create a console application. I then added my general purpose unit to the uses clause. Then compile failed with an error message that had nothing to do with my program or

Re: [Lazarus] Strange dependency of units

2012-04-02 Thread Martin
On 02/04/2012 16:51, Jürgen Hestermann wrote: Martin schrieb: So by using Grids, you should expect all the platform/GUI dependent stuff to end up in your application. I am not even aware of all the platform/GUI dependent stuff. I just wanted to use TStringGrid types. Do I need to study

Re: [Lazarus] Lazarus 1.0 is branched

2012-04-04 Thread Martin
On 04/04/2012 11:26, Mattias Gaertner wrote: There is no 1:1 mapping between word and wiki page. At the moment there are two searches for the offline wiki pages. Both have their pros and cons. There are mappings between some IDE windows and wiki though --

Re: [Lazarus] Keys attached to IDE functions

2012-04-04 Thread Martin
On 04/04/2012 17:02, Jürgen Hestermann wrote: In the IDE Options the key mappings can be searched (and changed) very convenient. But when I filter for breakpoint I only get 3 functions listed. It took me quite a while to find out that the other breakpoint related functions are named break

Re: [Lazarus] Keys attached to IDE functions

2012-04-04 Thread Martin
On 04/04/2012 17:31, Jürgen Hestermann wrote: Martin schrieb: Are you on trunk? No, what's this? Is it SVN? yes, latest svn (not fixes branch) Although I would realy like to contribute more to Lazarus there are 2 obstacles that are not easy to remove: 1.) Time. I would have to invest

Re: [Lazarus] Keys attached to IDE functions

2012-04-04 Thread Martin
On 04/04/2012 17:53, Martin wrote: On 04/04/2012 17:31, Jürgen Hestermann wrote: Although I would realy like to contribute more to Lazarus there are 2 obstacles that are not easy to remove: 1.) Time. I would have to invest much more time which I currently can't afford. 2.) Knowledge

Re: [Lazarus] Keys attached to IDE functions

2012-04-04 Thread Martin
On 04/04/2012 18:01, Martin wrote: On 04/04/2012 17:53, Martin wrote: On 04/04/2012 17:31, Jürgen Hestermann wrote: Although I would realy like to contribute more to Lazarus there are 2 obstacles that are not easy to remove: 1.) Time. I would have to invest much more time which I currently

Re: [Lazarus] Hashtags

2012-04-06 Thread Martin
http://twitter.com/#!/LazarusDev On 06/04/2012 03:34, Flávio Etrusco wrote: I think we should use #lazarus-ide, just like the IRC channel name. But AFAICS #Lazarus is actually used by @LazarusDev . 2012/4/3 Richard Macerichard.m...@gmail.com: Hi All, Do we have a prefered twitter hashtag for

Re: [Lazarus] Hashtags

2012-04-06 Thread Martin
On 06/04/2012 12:49, Vincent Snijders wrote: Op 6 april 2012 13:16 heeft Žilvinas Ledaszilvinas.le...@dict.lt het volgende geschreven: It would be good to have unique hashtag. Please, tell others not to use our #lazarus hash tag. ;-) Sorry that was me --

Re: [Lazarus] Hashtags

2012-04-06 Thread Martin
On 06/04/2012 13:33, Martin wrote: On 06/04/2012 12:49, Vincent Snijders wrote: Op 6 april 2012 13:16 heeft Žilvinas Ledaszilvinas.le...@dict.lt het volgende geschreven: It would be good to have unique hashtag. Please, tell others not to use our #lazarus hash tag. ;-) Sorry that was me Please

[Lazarus] [Lazarusdev] WinCE users please

2012-04-15 Thread Martin
Can anyone test, if rev 36792 (trunk only / not in fixes branch) works on WinCE? Please compile with WinIME defined. http://bugs.freepascal.org/view.php?id=21663 http://bugs.freepascal.org/view.php?id=21664 ___ Lazarusdev mailing list

Re: [Lazarus] [Lazarusdev] WinCE users please

2012-04-15 Thread Martin
On 15/04/2012 16:58, Fabio Luis Girardi wrote: With some specific FPC version? 2.4.4 or 2.6.0 or 2.5.1 please 2012/4/15 Martinlaza...@mfriebe.de: Can anyone test, if rev 36792 (trunk only / not in fixes branch) works on WinCE? Please compile with WinIME defined. --

Re: [Lazarus] Bug 15390 and Showmodal

2012-04-18 Thread Martin
On 18/04/2012 11:53, Hans-Peter Diettrich wrote: patspiper schrieb: No, FormClose() isn't called when modal form is hidden via Hide(); Correct , so form still exists and it can be called with ShowModal() or Show() again. I beg to differ here as Showmodal should not exit unless the modal

Re: [Lazarus] Bug 15390 and Showmodal

2012-04-18 Thread Martin
On 18/04/2012 15:27, zeljko wrote: In LCL there is Screen.DisableForms() +1 , that's why I implemented hiding of modal form as it is - it simply works on all platforms, and Delphi behaviour looks pretty unlogical to me (but even that can work - see my today patches attached at issue).

Re: [Lazarus] Bug 15390 and Showmodal

2012-04-18 Thread Martin
On 18/04/2012 17:53, patspiper wrote: On 18/04/12 17:39, Martin wrote: But this is not a bug. And Delphi docs, IMHO are not making a 100% clear statement about this. It is a bug considering that both Delphi and Lazarus docs are clear about it: ShowModal does not return until the form

Re: [Lazarus] Bug 15390 and Showmodal

2012-04-18 Thread Martin
On 18/04/2012 19:05, patspiper wrote: Furthermore, Hide() does not trigger the OnCloseQuery and OnClose events. Yes. But that are side effects. The actual action on the widget / handle (the window as known by the win-api or gtk) are the same: The form (window widget) is taken of the screen

Re: [Lazarus] Bug 15390 and Showmodal

2012-04-18 Thread Martin
On 18/04/2012 19:26, zeljko wrote: On Wednesday 18 of April 2012 20:05:35 patspiper wrote: On 18/04/12 20:09, Martin wrote: On 18/04/2012 17:53, patspiper wrote: On 18/04/12 17:39, Martin wrote: But this is not a bug. And Delphi docs, IMHO are not making a 100% clear statement

[Lazarus] mingw64 - gdb

2012-04-21 Thread Martin
Does anyone know, if there are proper releases for mingw 64 bits? http://sourceforge.net/projects/mingw-w64/files/ Or does anyone has alternative download addresses for a 64 bit win gdb.exe? The release downloads are sources only. I am looking for binaries. Sometimes teh personal builds

Re: [Lazarus] mingw64 - gdb

2012-04-21 Thread Martin
On 21/04/2012 14:28, cobines wrote: 2012/4/21 Martinlaza...@mfriebe.de: Or does anyone has alternative download addresses for a 64 bit win gdb.exe? Try here: http://www.drangon.org/mingw/ Or you can download binary in mingw-w64 project : mingw-w64 download

Re: [Lazarus] mingw64 - gdb

2012-04-21 Thread Martin
On 21/04/2012 14:34, Martin wrote: On 21/04/2012 14:28, cobines wrote: 2012/4/21 Martinlaza...@mfriebe.de: Or does anyone has alternative download addresses for a 64 bit win gdb.exe? Try here: http://www.drangon.org/mingw/ Or you can download binary in mingw-w64 project : mingw-w64

Re: [Lazarus] Autocomplete with procedure varibles

2012-04-24 Thread Martin
On 24/04/2012 15:13, Alexander Klenin wrote: While calling the procedure via variable is probably more frequent, assigning to it is a valid case too. I can suggest several alternatives: 1) Output both myproc(params) and myproc:= items in the completion dropdown 2) Choose call vs. assignment

Re: [Lazarus] Autocomplete with procedure varibles

2012-04-24 Thread Martin
On 24/04/2012 16:32, Alexander Klenin wrote: On Wed, Apr 25, 2012 at 01:33, Martinlaza...@mfriebe.de wrote: 3) Simple insert it without either ( or :=. Then one can continue typing as one likes. Excellent thinking! I agree. or even better: as long as there is a dropdown, ue to other

Re: [Lazarus] Copy variable value in Watch list

2012-04-25 Thread Martin
On 25/04/2012 19:02, Zaher Dirkey wrote: Hi, How to copy variable value in Watch list when debuging I am using last revision of Lazarus, FPC 2.6 Maxe a feature request for now use the evaluate window. -- ___ Lazarus mailing list

Re: [Lazarus] Copy variable value in Watch list

2012-04-25 Thread Martin
On 25/04/2012 19:27, Zaher Dirkey wrote: On Wed, Apr 25, 2012 at 8:24 PM, Martin laza...@mfriebe.de mailto:laza...@mfriebe.de wrote: On 25/04/2012 19:02, Zaher Dirkey wrote: Hi, How to copy variable value in Watch list when debuging I am using last revision

Re: [Lazarus] How do I debug wince LCL?

2012-04-25 Thread Martin
On 25/04/2012 19:46, Paul van Helden wrote: Hi all, I can step into LCL code when debugging a Win32 project, but a WINCE project shows me the exact line number and file name in the stack trace but always come up with Unable to load file \lazarus\lcl\include\custombitmap.inc (for example).

Re: [Lazarus] IDE debug

2012-04-26 Thread Martin
On 26/04/2012 12:32, Antonio Fortuny wrote: Hi folks. Here I come again with an old IDE error. When entering the debugger ont break point and I hit F98 to step one line, nothing happens. Hitting again F8 this window is displayed:

Re: [Lazarus] IDE debug

2012-04-26 Thread Martin
On 26/04/2012 14:34, Antonio Fortuny wrote: Le 26/04/2012 14:30, Martin a écrit : Can you attach the source of the procedure in question (or at least some lines of it) AND the assembler (from asm debug win) for the line in question and at least the 2 surrounding lines? ... blablabla

Re: [Lazarus] How do I debug wince LCL?

2012-04-26 Thread Martin
On 26/04/2012 15:30, Paul van Helden wrote: Thanks Martin Felipe, C:\ in the search path solved my LCL problem. I'm now running into memory trouble and hitting the 32MB process memory limit. Without debug info my .exe is 5MB but it is 25MB with debug info and it seems it is using up

Re: [Lazarus] Editor Toolbar as default package

2012-04-26 Thread Martin
On 27/04/2012 03:19, William Oliveira Ferreira wrote: I agree but who suggest a good default setting? 2012/4/26 Daniel Gaspary dgasp...@gmail.com mailto:dgasp...@gmail.com Hi, How about promote the Editor Toolbar package to the group of installed by default? Couple of points:

Re: [Lazarus] Editor Toolbar as default package

2012-04-27 Thread Martin
On 27/04/2012 10:53, Graeme Geldenhuys wrote: 2012/4/27 Martinlaza...@mfriebe.de: Mouse buttons 4 5 My mouse only has 3 buttons. Well you can configure them. Assign back to the middle, and forward to ctrl middle -- ___ Lazarus mailing list

Re: [Lazarus] Editor Toolbar as default package

2012-04-28 Thread Martin
On 28/04/2012 18:06, Graeme Geldenhuys wrote: On 27 April 2012 16:09, Martinlaza...@mfriebe.de wrote: Well you can configure them. Assign back to the middle, and forward to ctrl middle No i can't reassign them, because the middle button is already used very often as a Paste command

Re: [Lazarus] Strip debug info

2012-04-29 Thread Martin
On 29/04/2012 09:56, Jürgen Hestermann wrote: Richard Mace schrieb: ... you can either not generated debug info at all or generate external debug info (.dbg)... Is there any reason why the -Xg flag is not on at default? What's the disadvantage of using this flag? The reason I say

Re: [Lazarus] Strip debug info

2012-04-29 Thread Martin
On 29/04/2012 10:12, Jürgen Hestermann wrote: Florian Klämpfl schrieb: What's the problem with the .exe size when compiling with debug info? If one compiles with debug settings, one usually wants to have the debug info? If not, don't use debug settings. Well, the problem is the size of the

Re: [Lazarus] Strip debug info

2012-04-29 Thread Martin
On 29/04/2012 13:00, Hans-Peter Diettrich wrote: Martin schrieb: On 29/04/2012 09:56, Jürgen Hestermann wrote: Also, I guess it is more error prone. Compile with external debug, then make changes, recompile but with release settings. Then you have an outdated debug info file, and if you

Re: [Lazarus] Strip debug info

2012-04-29 Thread Martin
On 29/04/2012 16:54, Jürgen Hestermann wrote: Martin schrieb: Is there any reason why the -Xg flag is not on at default? What's the disadvantage of using this flag? The reason I say is because there is a massive reduction in .exe size? Yes, that's what I wondered about too. Also, I guess

Re: [Lazarus] Improve message dialog

2012-05-08 Thread Martin
On 08/05/2012 21:31, Darius Blaszyk wrote: Hi, One of my frustrations with the IDE have been when debugging record or class variables. The data is truncated to 255 characters and it's very difficult to find the appropriate variable within the structure. I have now uploaded a patch

<    1   2   3   4   5   6   7   8   9   10   >