Re: Creating printable reports

2004-07-21 Thread Russell Shaw
Daniel Kasak wrote: Hi all. I'm a newbie Perl developer, and I'm part-way through porting our database front-ends from Access to Perl / Gtk2 ( running on Linux ). We need a few printable reports that I have to rebuild. I've started out doing them in a Perl CGI script, exporting an HTML 'report'

changing language for gtk apps. in kde

2004-07-21 Thread sada asd
Hi, I would like to change the language settings for gtk based applications. I'm using kde . Is it possible to change the language without installing gdm ? I would like to keep the kdm login screen . Thanks . NG. __ Do you Yahoo!? New and

Re: changing language for gtk apps. in kde

2004-07-21 Thread Sven Neumann
Hi, sada asd [EMAIL PROTECTED] writes: I would like to change the language settings for gtk based applications. I'm using kde . Is it possible to change the language without installing gdm ? I would like to keep the kdm login screen . All you need to do is to change your locale settings (a

Re: Creating printable reports

2004-07-21 Thread John Cupitt
On Wed, 21 Jul 2004 08:46:36 +1000, Daniel Kasak [EMAIL PROTECTED] wrote: We need a few printable reports that I have to rebuild. I've started out doing them in a Perl CGI script, exporting an HTML 'report' and firing up Mozilla to view / print them. This is less than perfect. Mozilla doesn't

Running GTK in non-default visual

2004-07-21 Thread matthew . dreezer
Title: Running GTK in non-default visual Hi, I am on a project that is looking to use the wxWidgets toolkit for cross platform software development. wxWidgets uses GTK2 when running under Linux or HP-UX. On HP-UX our current application runs in an 8 bit visual. This is mainly because we

Re: Aligning widgets adjacent to a drawing area...

2004-07-21 Thread Christer Palm
David J. Singer wrote: I have an hbox divided into two side-by-side sections. In the left section I have a vertical list of gtk text entry boxes (serving as editable text labels) and in the right section I have a drawing area. What I'd like to do is to be able to draw waveforms or traces in the

Re: changing language for gtk apps. in kde

2004-07-21 Thread sada asd
--- Sven Neumann [EMAIL PROTECTED] wrote: Hi, sada asd [EMAIL PROTECTED] writes: I would like to change the language settings for gtk based applications. I'm using kde . Is it possible to change the language without installing gdm ? I would like to keep the kdm login screen .

Re: changing language for gtk apps. in kde

2004-07-21 Thread Sven Neumann
Hi, sada asd [EMAIL PROTECTED] writes: I'm using fedora core 2 and Gnome is not installed. All the locale variables are set to es_ES. the LANG variable is set to es_ES. Still gtk applications are showing in English instead of Spanish . That should do the trick. Are you sure that the

Re: Trouble Installing Pango

2004-07-21 Thread Marshall Lake
While trying to install pango 1.5.1 near the (seemingly) end of compilation I get the following errors: /home/mlake/pango-1.5.1/pango/.libs/libpangoft2-1.0.so: undefined reference to `g_type_instance_get_private' /home/mlake/pango-1.5.1/pango/.libs/libpangoft2-1.0.so: undefined

Re: Trouble Installing Pango

2004-07-21 Thread Sven Neumann
Hi, Marshall Lake [EMAIL PROTECTED] writes: While trying to install pango 1.5.1 near the (seemingly) end of compilation I get the following errors: /home/mlake/pango-1.5.1/pango/.libs/libpangoft2-1.0.so: undefined reference to `g_type_instance_get_private'

Re: Trouble Installing Pango

2004-07-21 Thread Mark Leisher
Marshall Lake wrote: [undefined references] On my system (Slackware 9), the undefined references (started with 2.4) were due to libtool adding the older versions of the libraries (in /usr/lib) in front of the newer versions (in /usr/local/lib) as part of the link command. I fiddled with

Re: changing language for gtk apps. in kde

2004-07-21 Thread Sven Neumann
Hi, sada asd [EMAIL PROTECTED] writes: I noticed that when i start the application in terminal, the gtk applications show in spanish without any errors. Only when I start the application from kde menu , the gtk apps show in english . Is there any settings that I've missed ? The LANG

Trouble installing GTK+

2004-07-21 Thread Ian Allman
I want to develop Graphical User Interfaces on the Linux Framebuffer. I have downloaded GTK+-2.4.4 andthe necessary glib and pango requirements. I configure GTK with ./configure --with-gdktarget=linux-fb However the make command results in the following errors: gdkwindow-fb.c:1445: conflicting

Re: Trouble installing GTK+

2004-07-21 Thread Jose Miguel Goncalves
Ian Allman wrote: I want to develop Graphical User Interfaces on the Linux Framebuffer. I have downloaded GTK+-2.4.4 and the necessary glib and pango requirements. I configure GTK with ./configure --with-gdktarget=linux-fb However the make command results in the following errors:

Re: Aligning widgets adjacent to a drawing area...

2004-07-21 Thread David J. Singer
On Wednesday 21 July 2004 12:22 pm, Christer Palm wrote: From your description, it sound as that a GtkTable would do the trick for you. If a GtkTable doesn't work out for some reason, you should have a look at GtkSizeGroup. I have the text label elements on the left hand side in a table

Re: Creating printable reports

2004-07-21 Thread Roger Leigh
Russell Shaw [EMAIL PROTECTED] writes: Daniel Kasak wrote: Hi all. I'm a newbie Perl developer, and I'm part-way through porting our database front-ends from Access to Perl / Gtk2 ( running on Linux ). We need a few printable reports that I have to rebuild. I've started out doing them in a

Re: Aligning widgets adjacent to a drawing area...

2004-07-21 Thread Christer Palm
David J. Singer wrote: I have the text label elements on the left hand side in a table already. The sole drawing area on the righthand side is a separate entity though. The problem is how to relate the positions of the widgets in the table to coordinates in the adjacent drawing area. It's not

Re: Trouble Installing Pango

2004-07-21 Thread Marshall Lake
[undefined references] On my system (Slackware 9), the undefined references (started with 2.4) were due to libtool adding the older versions of the libraries (in /usr/lib) in front of the newer versions (in /usr/local/lib) as part of the link command. I fiddled with ld.so.config and

Re: Aligning widgets adjacent to a drawing area...

2004-07-21 Thread David J. Singer
On Wednesday 21 July 2004 7:30 pm, Christer Palm wrote: gtk_widget_translate_coordinates() with values from each of the text labels allocation's and the DrawingArea as the destination should do the job, I guess. Ah. Right Ok. That's not something I've come across before but I think I can