Re: problem with gtk-doc

2008-04-13 Thread Stefan Kost
hi, Tomasz Jankowski schrieb: > Hi! > > Like in topic. Everything works great, gtk-doc builds types tree, generates > descriptions for functions, structures, enumerations and properties. The > only thing, which doesn't is generating descriptions for signals. There is > no information about signal

Re: Problem with gtk-doc

2007-11-07 Thread Stefan Kost
hi, Quoting Tomasz Jankowski <[EMAIL PROTECTED]>: > Hello! > > I have problem with gtk-doc. There is [EMAIL PROTECTED] > I configured it in my project an everything was > fine (i had object hierarchy etc.). Now I added two new source files which > decalre two new objects. Gtk-doc sees these new

Re: Problem with gtk threads...

2007-10-04 Thread Tor Lillqvist
> >From the threads, I need to update the UI. The overwhelming consensus, I think, is that even if possible (on X11, with proper use of the gdk locking functions etc), this is a bad idea. Instead, call g_timeout_add() in your threads to schedule functions to be run in the main GUI thread, and have

Re: Problem with gtk drawing primitive

2007-05-28 Thread Jerome Blondel
David Nec(as (Yeti) : > On Mon, May 28, 2007 at 08:21:01PM +0200, Jerome Blondel wrote: > >> I'm making a widget from scratch using the tutorial's GtkDial as a base. >> For now I just want to draw something in my widget. The following error >> occurs >> >> (test_sw:4242): Gtk-CRITICAL **: gtk

Re: Problem with gtk drawing primitive

2007-05-28 Thread Yeti
On Mon, May 28, 2007 at 08:21:01PM +0200, Jerome Blondel wrote: > I'm making a widget from scratch using the tutorial's GtkDial as a base. > For now I just want to draw something in my widget. The following error > occurs > > (test_sw:4242): Gtk-CRITICAL **: gtk_paint_polygon: assertion > `sty

Re: Problem with gtk-doc tool

2007-01-30 Thread Tristan Van Berkom
On Tue, 2007-01-30 at 16:09 +0100, Tomasz Jankowski wrote: [...] > Like I can see gtk-doc doesn't recognize C preprocessor directives :( > > Can someone help me solving this problem? This library is (I mean it will > be) available on Linux and win32, so it's very important for me to have my > own,

RE :Problem with gtk (done )

2006-12-20 Thread Naveen Kumar
Thank u all, now i found the solution. i am not sure is it that right way to do that but thing is working fine.. what i have done is i have placed these two statements in the while loop. if(gtk_events_pending()) gtk_main_iteration(); Naveen _

RE :Problem with gtk (done mistake)

2006-12-17 Thread Naveen Kumar
Hi all, Please excuse for my mistake... I am very sorry for sending a wrong part of the code it is actually.. #include int main () { int i=0; while(i < 264000) printf("%d\n",i++); } it works very fine in my machine without any problem. (it takes around 1.2 minutes) 2)If try to run the same par

RE: Problem with gtk

2006-12-17 Thread Tony Freeman
Hello, > int main () >{ > int i; > while (i < 25000) > printf ("%d\n", i); >} Create a file called "test.c" and add these lines: #include int main (int argc, char *argv[]) { int i = 0; while (i < 25000) {

Re: Problem with gtk

2006-12-16 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sat, Dec 16, 2006 at 04:55:48PM +0530, Naveen Kumar wrote: > Hi all, > > I am using an hand held device running on montavista linux, > 1) i wrote a c program > > int main () >{ > int i; i is uninitialized here. It contains

RE: Problem with gtk

2006-12-16 Thread Viraj Chatterjee
If the intention is to run a loop for 25000 iterations, then this is a horrible way to attempt that. You haven't initialized i, neither are you incrementing it. -vc -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Naveen Kumar Sent: Saturday, December 16

Re: Problem with gtk printing

2006-08-12 Thread Chris Vine
On Saturday 12 August 2006 16:45, Sebastian Filippini wrote: > Hi. > > My name is Sebastian, I'm new in gtk programming. I'm having a problem when > I try to use the new print support: > > When I invoke gtk_print_operation_run() print dialog is opened. Then, when > the CUPS printer is being loaded,

Re: Problem with GTK/GNOME programming

2005-09-27 Thread Przemysław Sitek
Dnia 2005-09-26 16:05, Lalit Kumar napisał: Hi All, I am using Fedora core 3. I am facing problem with Gnome and Gtk programming. Anyone working on GNOMe/GTK programming , please help me out how to write GNOME/GTK program. There's a tutorial: http://www.gtk.org/tutorial/ API reference

Re: Problem with GTK/GNOME programming

2005-09-26 Thread Falls Huang
Plz take a look at the "examples" and "tests" directorys in the gtk+'s source code . Lalit Kumar wrote: Hi All, I am using Fedora core 3. I am facing problem with Gnome and Gtk programming. Anyone working on GNOMe/GTK programming , please help me out how to write GNOME/GTK program. You can ma

Re: Problem with GTK/GNOME programming

2005-09-26 Thread Julien Olivier
Le lundi 26 septembre 2005 à 19:35 +0530, Lalit Kumar a écrit : > Hi All, > I am using Fedora core 3. I am facing problem with Gnome and Gtk > programming. > Anyone working on GNOMe/GTK programming , please help me out how to write > GNOME/GTK program. > You can mail me on [EMAIL PROTECTED] > Th

RE: Problem with GTK

2005-06-17 Thread Simith Nambiar
D]; gtk-list@gnome.org; [EMAIL PROTECTED]; gtk-app-devel-list@gnome.org; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: Problem with GTK Hi, Any suggestion will be very much helpful to me. With Regards, Jagadish.K -Original Message- From: Jagadish K , Bangalore Sent: Thursday, June

RE: Problem with GTK

2005-06-17 Thread Jagadish K , Bangalore
Hi, Any suggestion will be very much helpful to me. With Regards, Jagadish.K -Original Message- From: Jagadish K , Bangalore Sent: Thursday, June 16, 2005 10:00 PM To: '[EMAIL PROTECTED]' Subject: FW: Problem with GTK Hi, All files are in the lib directory, no file was missing.

RE: problem with gtk and frames

2005-03-28 Thread Freddie Unpenstein
> I've got a small problem with frames. I made a screenshot to > illustrate my problem at http://[snip]. Indeed you can see that the > frame borders are too close to the application border (about 1 pixel). Have you considered using tooltips to hide the long descriptions? Or perhaps even those

Re: problem with gtk and frames

2005-03-28 Thread chaica
Ok thx I solved my problems. On Mon, 2005-03-28 at 03:01 +0200, Gian Mario Tagliaretti wrote: > On Mon, 28 Mar 2005 02:38:50 +, chaica <[EMAIL PROTECTED]> wrote: > > > I use c++ and gtkmm. gtk_container_set_border_width() doesn't exist in > > the gtkmm documentation. I tried to use it but I

Re: problem with gtk and frames

2005-03-27 Thread Claudio Polegato Jr.
Hi. Then try frame.set_border_width(pixels) to each frame. But I think your problem is on the vbox where you put the frames. Thus, set the vbox border with vbox.set_border_width(pixels) and spacing with vbox.set_spacing(pixels). []'s Claudio chaica escreveu: On Sun, 2005-03-27 at 21:09 +0400, Mis

Re: problem with gtk and frames

2005-03-27 Thread Gian Mario Tagliaretti
On Mon, 28 Mar 2005 02:38:50 +, chaica <[EMAIL PROTECTED]> wrote: > I use c++ and gtkmm. gtk_container_set_border_width() doesn't exist in > the gtkmm documentation. I tried to use it but I don't succeed. http://www.gtkmm.org/docs/gtkmm-2.4/docs/reference/html/classGtk_1_1Container.html#a20

Re: problem with gtk and frames

2005-03-27 Thread chaica
On Sun, 2005-03-27 at 21:09 +0400, Mishael A Sibiryakov wrote: > В Вск, 27/03/2005 в 18:09 +, chaica пишет: > > Hi, > > > > I've got a small problem with frames. I made a screenshot to illustrate > > my problem at http://www.ohmytux.com/screenshot.png > > > > Indeed you can see that the frame

Re: problem with gtk and frames

2005-03-27 Thread Mishael A Sibiryakov
Ð ÐÑÐ, 27/03/2005 Ð 18:09 +, chaica ÐÐÑÐÑ: > Hi, > > I've got a small problem with frames. I made a screenshot to illustrate > my problem at http://www.ohmytux.com/screenshot.png > > Indeed you can see that the frame borders are too close to the > application border (about 1 pixel). I tried d