Re: [Geany-devel] debugger plugin

2011-02-09 Thread Thomas Martitz
Am 09.02.2011 17:57, schrieb Chow Loong Jin: gint compare_func(gconstpointer a, gconstpointer b, gpointer user_data) { - if (a == b) + gint ia = GPOINTER_TO_INT(a); + gint ib = GPOINTER_TO_INT(b); + if (ia == ib) return 0; else -

Re: [Geany-devel] debugger plugin

2011-02-09 Thread Chow Loong Jin
On Thursday 10,February,2011 07:58 AM, Colomban Wendling wrote: No more need for a temporary variable then, since the value is used only once ;) Aaand another revised patch! -- Kind regards, Loong Jin From 1568a9ac280e8d76c2da8530c5b0263ee43ebe77 Mon Sep 17 00:00:00 2001 From: Chow Loong Jin

Re: [Geany-devel] debugger plugin

2011-02-06 Thread Alexander Petukhov
Frank, Hi. dbm_bash.c is excluded from autotools build, because it doesn't work for now. As to cast warnings, I don't have them, can guess it's about glib, cause its function are called at lines that were mentioned. Regarding build system, yeah I didn't get clear about commom autoconf and

Re: [Geany-devel] debugger plugin

2011-02-06 Thread Frank Lanitz
Hi, On Sun, 6 Feb 2011 14:27:25 +0300 Alexander Petukhov alexander.petuk...@mail.ru wrote: dbm_bash.c is excluded from autotools build, because it doesn't work for now. I'd like to don't add a workaround into build system for this. Can't we remove this from svn until its working as

Re: [Geany-devel] debugger plugin

2011-02-06 Thread Lex Trotman
On 7 February 2011 01:16, Frank Lanitz fr...@frank.uvena.de wrote: Hi, On Sun, 6 Feb 2011 14:27:25 +0300 Alexander Petukhov alexander.petuk...@mail.ru wrote: dbm_bash.c is excluded from autotools build, because it doesn't work for now. I'd like to don't add a workaround into build system

Re: [Geany-devel] debugger plugin

2011-02-05 Thread Alexander Petukhov
I'm done with commitimg code. Someone could probably look if it;s all right wih it, I'm rather new with svn and autotools. Regard, Alex On Sun, 30 Jan 2011 15:47:04 +0100 Enrico Tröger enrico.troe...@uvena.de wrote: On Sun, 30 Jan 2011 16:57:52 +0300, Alexander wrote: SF username is

Re: [Geany-devel] debugger plugin

2011-02-05 Thread Frank Lanitz
On Sat, 5 Feb 2011 15:48:27 +0300 Alexander Petukhov alexander.petuk...@mail.ru wrote: I'm done with commitimg code. Someone could probably look if it;s all right wih it, I'm rather new with svn and autotools. Will try to add it to waf build system ;) -- http://frank.uvena.de/en/

Re: [Geany-devel] debugger plugin

2011-02-05 Thread Frank Lanitz
Hi, On Sat, 5 Feb 2011 15:48:27 +0300 Alexander Petukhov alexander.petuk...@mail.ru wrote: I'm done with commitimg code. Someone could probably look if it;s all right wih it, I'm rather new with svn and autotools. I had a short look. If you include it to geany-plugins project you will not

Re: [Geany-devel] debugger plugin

2011-01-30 Thread Enrico Tröger
On Tue, 25 Jan 2011 14:50:17 +0300, Александр wrote: Thanks Thomas, I'll try to look at crash on non-debug modules soon, though i didn't have this bug when I tried to debug a plugin itself i.e. run geany as a debug target. To Geany-plugins mainteiners: how can i start to move source code to

Re: [Geany-devel] debugger plugin

2011-01-30 Thread Dominic Hopf
Am Sonntag, den 30.01.2011, 14:09 +0100 schrieb Enrico Tröger: On Tue, 25 Jan 2011 14:50:17 +0300, Александр wrote: Thanks Thomas, I'll try to look at crash on non-debug modules soon, though i didn't have this bug when I tried to debug a plugin itself i.e. run geany as a debug target.

Re: [Geany-devel] debugger plugin

2011-01-30 Thread Alexander Petukhov
SF username is cesspit I'll commit code next week after finishing one bugfixing. I'll cope with autotools, note sure about Waf, never dealed with, I'll ask here if have questions One more question is about windows build, how to avoid plugin to attemt to build under win32? much effors are

Re: [Geany-devel] debugger plugin

2011-01-30 Thread Thomas Martitz
On 30.01.2011 14:57, Alexander Petukhov wrote: as for GeanyGDB replacement, don't want to sound too assertive, but my one already offers more features than GeanyGDB does and from my point of view is more user friendly, Of course to get it right one definitely has to try out both of them. I

Re: [Geany-devel] debugger plugin

2011-01-30 Thread Enrico Tröger
On Sun, 30 Jan 2011 15:31:14 +0100, Thomas wrote: On 30.01.2011 14:57, Alexander Petukhov wrote: as for GeanyGDB replacement, don't want to sound too assertive, but my one already offers more features than GeanyGDB does and from my point of view is more user friendly, Of course to get it

Re: [Geany-devel] debugger plugin

2011-01-30 Thread Enrico Tröger
On Sun, 30 Jan 2011 16:57:52 +0300, Alexander wrote: SF username is cesspit I added you to the SF geany-plugins project, so you should be able to commit to the SVN repository. I'll commit code next week after finishing one bugfixing. Cool. I'll cope with autotools, note sure about Waf,

Re: [Geany-devel] debugger plugin

2011-01-30 Thread Alexander Petukhov
need more bug reports/feedbacks to make it more stable. will try to do all my best until next geany-plugins release, by the way how often do you issue plugins releases? On Sun, 30 Jan 2011 15:31:14 +0100 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: On 30.01.2011 14:57, Alexander

Re: [Geany-devel] debugger plugin

2011-01-30 Thread Dimitar Zhekov
On Sun, 30 Jan 2011 18:05:51 +0300 Alexander Petukhov alexander.petuk...@mail.ru wrote: need more bug reports/feedbacks to make it more stable. As of revision 36: Shows all tabs always, so I can't easily tell when a program is running (Browse and Debugger in the Target tab are disabled, so

Re: [Geany-devel] debugger plugin

2011-01-30 Thread Alexander Petukhov
yeah, u're right, always visible debug tabs make it hard to tell if the debugger running or not. but, if you are not on the debugger page, i.e. don't see it, you also can't guess what is going on, and the second reason for make them persistent was a bug when after several run/stop actions VTE

Re: [Geany-devel] debugger plugin

2011-01-25 Thread Thomas Martitz
On 07.01.2011 15:17, Alexander Petukhov wrote: Hello, everybody. My name is Alexander, i'm a software developer from St.Petersburg, Russia. I started to use Geany at my job, mostly for C++ development, and only feature I was not satisfied with was debuggers support. I looked at the existing

Re: [Geany-devel] debugger plugin

2011-01-25 Thread Thomas Martitz
On 25.01.2011 09:24, Thomas Martitz wrote: I think it would work great with: http://lists.uvena.de/geany-devel/2011-January/003777.html My quick hack :) http://imagebin.org/134336 I like it! Best regards. ___ Geany-devel mailing list

Re: [Geany-devel] debugger plugin

2011-01-10 Thread Colomban Wendling
Hi, Le 10/01/2011 02:42, Alexander Petukhov a écrit : […] What I wanted to ask is has the plugin to be cross-platform? No, I don't think a plugin *have* to be cross-platform, it's a developer choice to maintain it cross-platform. It's better IMHO, but I don't think anybody can blame you not to

Re: [Geany-devel] debugger plugin

2011-01-10 Thread Dimitar Zhekov
On Mon, 10 Jan 2011 04:42:12 +0300 Alexander Petukhov alexander.petuk...@mail.ru wrote: 2Dimitar - have fixed bug with empty watch list delete button press and corrected scroll policy. Scrolling feels better now. Also eliminated some bugs, but there are many of them there I suppose, nobody

Re: [Geany-devel] debugger plugin

2011-01-07 Thread Frank Lanitz
Am 07.01.2011 15:17, schrieb Alexander Petukhov: Hello, everybody. My name is Alexander, i'm a software developer from St.Petersburg, Russia. I started to use Geany at my job, mostly for C++ development, and only feature I was not satisfied with was debuggers support. I looked at the

Re: [Geany-devel] debugger plugin

2011-01-07 Thread Dimitar Zhekov
On Fri, 7 Jan 2011 17:17:01 +0300 Alexander Petukhov alexander.petuk...@mail.ru wrote: Hello, everybody. Hi. Now i have GDB working more or less enough for using, and feel like I need some feedback. Wow, a working, full debugger interface for Geany! At last! :) Waiting four your opinions