Re: [Geany-devel] debugger plugin

2011-02-09 Thread Alexander Petukhov
Jin, thanks for the patches! they were absolutely correct, applied them to the source tree, pls look if its all good now there. Alex On Thu, 10 Feb 2011 08:42:34 +0800 Chow Loong Jin wrote: > On Thursday 10,February,2011 07:58 AM, Colomban Wendling wrote: > > No more need for a temporary variab

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-09 Thread Colomban Wendling
Le 10/02/2011 00:55, Chow Loong Jin a écrit : > On Thursday 10,February,2011 02:16 AM, Thomas Martitz wrote: >> 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_I

Re: [Geany-devel] debugger plugin

2011-02-09 Thread Chow Loong Jin
On Thursday 10,February,2011 02:16 AM, Thomas Martitz wrote: > 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); >> +

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 Sunday 06,February,2011 07:27 PM, Alexander Petukhov wrote: > 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 sys

Re: [Geany-devel] debugger plugin

2011-02-06 Thread Lex Trotman
On 7 February 2011 01:16, Frank Lanitz wrote: > Hi, > > On Sun, 6 Feb 2011 14:27:25 +0300 > Alexander Petukhov 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 fro

Re: [Geany-devel] debugger plugin

2011-02-06 Thread Frank Lanitz
Hi, On Sun, 6 Feb 2011 14:27:25 +0300 Alexander Petukhov 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 expected? > As to cast warnings

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 gettex

Re: [Geany-devel] debugger plugin

2011-02-05 Thread Frank Lanitz
Hi, On Sat, 5 Feb 2011 15:48:27 +0300 Alexander Petukhov 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 need to have an autogen.

Re: [Geany-devel] debugger plugin

2011-02-05 Thread Frank Lanitz
On Sat, 5 Feb 2011 15:48:27 +0300 Alexander Petukhov 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/ pgpSIczX3ZrjO.pgp Description:

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 wrote: > On Sun, 30 Jan 2011 16:57:52 +0300, Alexander wrote: > > >SF username is cesspit > > I added you

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 stop

Re: [Geany-devel] debugger plugin

2011-01-30 Thread Dimitar Zhekov
On Sun, 30 Jan 2011 18:05:51 +0300 Alexander Petukhov 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 there is some indication). A

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 wrote: > On 30.01.2011 14:57, Alexander Petukhov wrote: > > as for GeanyGDB r

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, n

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

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 agre

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 needed

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

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

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 Geany-devel@u

Re: [Geany-devel] debugger plugin

2011-01-25 Thread Александр Петухов
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 geany-plugins svn? Regading plugin name, does anybody

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 GDB

Re: [Geany-devel] debugger plugin

2011-01-10 Thread Dimitar Zhekov
On Mon, 10 Jan 2011 04:42:12 +0300 Alexander Petukhov 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 have tested it yet. Ab

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-09 Thread Alexander Petukhov
2Dimitar - have fixed bug with empty watch list delete button press and corrected scroll policy. Also eliminated some bugs, but there are many of them there I suppose, nobody have tested it yet. About other comments - preferences is on the way, now figuring out what to put there. Menu is not a pro

Re: [Geany-devel] debugger plugin

2011-01-07 Thread Dominic Hopf
Am Freitag, den 07.01.2011, 17:24 +0100 schrieb Frank Lanitz: > Am 07.01.2011 17:02, schrieb Colomban Wendling: > > Le 07/01/2011 16:41, Frank Lanitz a écrit : > >> Am 07.01.2011 15:17, schrieb Alexander Petukhov: > >>> Hello, everybody. > >>> > >>> My name is Alexander, i'm a software developer fr

Re: [Geany-devel] debugger plugin

2011-01-07 Thread Frank Lanitz
On Fri, 7 Jan 2011 20:39:02 +0200 Dimitar Zhekov wrote: > IMHO, it should be included included in geany-plugins immediately > after plugins 0.20 release. So we have plugin #4 to be added post 0.20 ;) Cheers, Frank -- http://frank.uvena.de/en/ pgpEndsaihIkY.pgp Description: PGP signature __

Re: [Geany-devel] debugger plugin

2011-01-07 Thread Dimitar Zhekov
Oops. Pressing Delete in the Watch tab crashes if there are no watches do delete, no matter if the debugger is running or not. -- E-gards: Jimmy ___ Geany-devel mailing list Geany-devel@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany-devel

Re: [Geany-devel] debugger plugin

2011-01-07 Thread Dimitar Zhekov
On Fri, 7 Jan 2011 17:17:01 +0300 Alexander Petukhov 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 and feedbacks. IMHO, i

Re: [Geany-devel] debugger plugin

2011-01-07 Thread Frank Lanitz
Am 07.01.2011 17:02, schrieb Colomban Wendling: > Le 07/01/2011 16:41, Frank Lanitz a écrit : >> 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

Re: [Geany-devel] debugger plugin

2011-01-07 Thread Colomban Wendling
Le 07/01/2011 16:41, Frank Lanitz a écrit : > 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 satisf

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

[Geany-devel] debugger plugin

2011-01-07 Thread 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 existing GDB plugin but it's seemed a little bit unusual for