Re: charset issue on Windows help needed

2014-09-17 Thread Geert Janssens
(Second attempt. The previous one got truncated). On Tuesday 16 September 2014 21:19:51 Fernando Rodriguez wrote: > Sorry for taking so long, I've been struggling with something of my > own. Did you ever get this sorted? > > I'm not sure what's wrong. Are you running gdb from the console in > win

Re: charset issue on Windows help needed

2014-09-17 Thread Geert Janssens
This is the second time I sent a mail to this list that got truncated. Is it truncated for others as well ? Perhaps the list software is choking on the wide characters ? Are there some mail settings I should take into account ? Geert ___ gtk-app-deve

Re: charset issue on Windows help needed

2014-09-17 Thread Geert Janssens
On Tuesday 16 September 2014 21:19:51 Fernando Rodriguez wrote: > On Tuesday 16 September 2014 6:56:11 PM Geert Janssens wrote: > > On Saturday 13 September 2014 14:24:35 Fernando Rodriguez wrote: > > > On Saturday 13 September 2014 4:21:18 PM Geert Janssens wrote: > > > > Thanks a lot ! > > > > >

Re: charset issue on Windows help needed

2014-09-16 Thread David Marceau
No wonder you're lost. You're jumping around using different character systems(Linux UTF-8 Versus Windows UTF-16) and character subsets(full language character 255+ set down to ASCII 127 subset without diacritics) from different operating systems(Linux and Windows). Let's clarify: multi-lingual w

Re: charset issue on Windows help needed

2014-09-16 Thread Fernando Rodriguez
On Tuesday 16 September 2014 6:56:11 PM Geert Janssens wrote: > On Saturday 13 September 2014 14:24:35 Fernando Rodriguez wrote: > > On Saturday 13 September 2014 4:21:18 PM Geert Janssens wrote: > > > Thanks a lot ! > > > > > > I'll try to apply a similar approach in gnucash for the > > > home di

Re: charset issue on Windows help needed

2014-09-16 Thread Geert Janssens
On Saturday 13 September 2014 14:24:35 Fernando Rodriguez wrote: > On Saturday 13 September 2014 4:21:18 PM Geert Janssens wrote: > > Thanks a lot ! > > > > I'll try to apply a similar approach in gnucash for the > > home dir use case. > > > > For my second case, anybody know how to read an > > e

Re: charset issue on Windows help needed

2014-09-16 Thread Geert Janssens
On Saturday 13 September 2014 14:38:39 Fernando Rodriguez wrote: > On Saturday 13 September 2014 10:37:27 AM Geert Janssens wrote: > > On Wednesday 10 September 2014 21:25:30 Fernando Rodriguez wrote: > > On Wednesday 10 September 2014 5:07:03 PM Fernando Rodriguez > > wrote: > > > On Wednesday 1

Re: charset issue on Windows help needed

2014-09-13 Thread Fernando Rodriguez
On Saturday 13 September 2014 10:37:27 AM Geert Janssens wrote: > On Wednesday 10 September 2014 21:25:30 Fernando Rodriguez wrote: > > On Wednesday 10 September 2014 5:07:03 PM Fernando Rodriguez wrote: > > > On Wednesday 10 September 2014 7:37:28 PM Geert Janssens wrote: > > > > Hi, > > > > > >

Re: charset issue on Windows help needed

2014-09-13 Thread Fernando Rodriguez
On Saturday 13 September 2014 10:37:27 AM Geert Janssens wrote: On Wednesday 10 September 2014 21:25:30 Fernando Rodriguez wrote: > On Wednesday 10 September 2014 5:07:03 PM Fernando Rodriguez wrote: > > On Wednesday 10 September 2014 7:37:28 PM Geert Janssens wrote: > > > Hi, > > > > > > I'm s

Re: charset issue on Windows help needed

2014-09-13 Thread Fernando Rodriguez
On Saturday 13 September 2014 4:21:18 PM Geert Janssens wrote: > Thanks a lot ! > > I'll try to apply a similar approach in gnucash for the > home dir use case. > > For my second case, anybody know how to read an > environment variable directly in win32 using wide char > functions ? > > > Geert

Re: charset issue on Windows help needed

2014-09-13 Thread Geert Janssens
Thanks a lot ! I'll try to apply a similar approach in gnucash for the home dir use case. For my second case, anybody know how to read an environment variable directly in win32 using wide char functions ? Geert ___ gtk-app-devel-list mailing list g

Re: charset issue on Windows help needed

2014-09-13 Thread Emmanuel Thomas-Maurin
OK, here is some example code (it's from 'tickr' application code). On 09/13/2014 10:42 AM, Geert Janssens wrote: On Thursday 11 September 2014 07:14:54 Emmanuel Thomas-Maurin wrote: > I've had a similar problem previously, with non-ascii (for instance > cyrillic) user names in app data dir

Re: charset issue on Windows help needed

2014-09-13 Thread Geert Janssens
On Thursday 11 September 2014 08:12:52 z...@excite.it wrote: > On Thursday 11 September 2014 07:14:54 Emmanuel Thomas-Maurin wrote: > > I've had a similar problem previously, with non-ascii (for instance > > cyrillic) user names in app data dir on windows. The trick was to > > use > > 'wide char' w

Re: charset issue on Windows help needed

2014-09-13 Thread Geert Janssens
On Thursday 11 September 2014 07:14:54 Emmanuel Thomas-Maurin wrote: > I've had a similar problem previously, with non-ascii (for instance > cyrillic) user names in app data dir on windows. The trick was to use > 'wide char' win32 API functions which all return UTF-16 encoded > strings, then conver

Re: charset issue on Windows help needed

2014-09-13 Thread Geert Janssens
On Wednesday 10 September 2014 21:25:30 Fernando Rodriguez wrote: > On Wednesday 10 September 2014 5:07:03 PM Fernando Rodriguez wrote: > > On Wednesday 10 September 2014 7:37:28 PM Geert Janssens wrote: > > > Hi, > > > > > > I'm stuck on the following issue. Program is GnuCash on Windows. > > >

Re: charset issue on Windows help needed

2014-09-10 Thread zz
On Thursday 11 September 2014 07:14:54 Emmanuel Thomas-Maurin wrote: > I've had a similar problem previously, with non-ascii (for instance > cyrillic) user names in app data dir on windows. The trick was to use > 'wide char' win32 API functions which all return UTF-16 encoded strings, > then con

Re: charset issue on Windows help needed

2014-09-10 Thread Emmanuel Thomas-Maurin
I've had a similar problem previously, with non-ascii (for instance cyrillic) user names in app data dir on windows. The trick was to use 'wide char' win32 API functions which all return UTF-16 encoded strings, then convert to UTF-8 (with g_utf16_to_utf8()). On 09/11/2014 03:25 AM, Fernando R

Re: charset issue on Windows help needed

2014-09-10 Thread Fernando Rodriguez
On Wednesday 10 September 2014 5:07:03 PM Fernando Rodriguez wrote: > On Wednesday 10 September 2014 7:37:28 PM Geert Janssens wrote: > > Hi, > > > > I'm stuck on the following issue. Program is GnuCash on Windows. > > > > Consider the following code snippet: > > > > struct stat statbuf; > > gch

Re: charset issue on Windows help needed

2014-09-10 Thread Fernando Rodriguez
On Wednesday 10 September 2014 7:37:28 PM Geert Janssens wrote: > Hi, > > I'm stuck on the following issue. Program is GnuCash on Windows. > > Consider the following code snippet: > > struct stat statbuf; > gchar* dirname = g_strdup(g_getenv("GNC_DOTGNUCASH_DIR"); > gint rc = g_stat (dirname, &s

charset issue on Windows help needed

2014-09-10 Thread Geert Janssens
Hi, I'm stuck on the following issue. Program is GnuCash on Windows. Consider the following code snippet: struct stat statbuf; gchar* dirname = g_strdup(g_getenv("GNC_DOTGNUCASH_DIR"); gint rc = g_stat (dirname, &statbuf); switch (errno) { case ENOENT: // Directory doesn't exist // He

Help needed with offscreen window

2010-11-24 Thread Vivien Malerba
Hi all! I want to create a GtkCellRenderer which renders a GtkWidget (each row of the data model sets a property of the widget and it should render differently). I face the problem that I can't force GTK+ to redraw the widget before I get the pixmap from a GtkOffscreenWidget (that pixmap is used "

Re: Segmentation fault debug help needed

2009-03-06 Thread Emmanuel Rodriguez
I think that you want to connect to the signal "destroy-event" of GtkWidget instead of "destroy" of GObject. See: http://library.gnome.org/devel/gtk/unstable/GtkObject.html#GtkObject-destroy http://library.gnome.org/devel/gtk/unstable/GtkWidget.html#GtkWidget-destroy-event On Fri, Feb 27, 2009 a

Segmentation fault debug help needed

2009-03-06 Thread Josh Roesslein
Here is a snippet of code part of my application's UI toolkit abstraction layer. For some reason the line of code I've marked is throwing a segmentation fault and I'm a bit stumped as to why. I'm thinking the way I'm passing the "this" pointer might have something to do with the error. If you need

rc file parsing help needed

2009-01-06 Thread Jack
I'd be happy to be pointed to the appropriate "fine manual" to read, but I haven't found anything yet that helps. The problem showed up running Balsa on a non-Gnome system. Many of the icons don't show up, and "could not load image: Icon 'balsa_mbox_out' not present in theme" shows up as the e

Help needed for Image transparency!!

2006-08-10 Thread Madhusudan E
iately and delete it! _ From: Madhusudan E [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 11:41 AM To: 'gtk-app-devel-list@gnome.org' Subject: Help needed!! Hi, This is Madhusudan here. I am new to gtk+ programming and I need some help form u people. I wo

Help needed!!

2006-08-09 Thread Madhusudan E
Hi, This is Madhusudan here. I am new to gtk+ programming and I need some help form u people. I would like to create a background image for the window , and want other widgets (ex: label, button etc), to be drawn over the image. Wot I mean is, 1. the label/button text should be v

Re: gtk installation help needed!!

2006-07-11 Thread Matt Hull
did configure fail ? and is there an rmp for that ? i am not a redhat person but thought there was yum to install that. matt On Mon, 10 Jul 2006, justforfun wrote: > My redhat enterprise 4 had gtk installed, works fine for me. > > However, I have a Fedora new machine now, which does not have g

gtk installation help needed!!

2006-07-10 Thread justforfun
My redhat enterprise 4 had gtk installed, works fine for me. However, I have a Fedora new machine now, which does not have gtk for developer installed. I downloaded gtk+-2.9.4.tar.gz and also gtk+-2.8.19.tar.gz I tried "./configure" and it works fine. However, I could not do a "make" It conpla

Re: Theme not affecting titlebar on windows xp... help needed

2006-03-18 Thread Gus Koppel
Michael L Torrie wrote: > On Sat, 2006-03-18 at 00:38 +0100, Gus Koppel wrote: > > However, then you would have to manage all tasks the window manager > > takes care of by yourself, i.e. minimizing and maximizing the window on > > request and providing correct drag behaviour. For resizability of y

Re: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Amitesh Singh
Hi To do Resize ,First Make Border of Window lets say north,north-west,north-east,east,east-south,south,south-west .. add events to each widegts and connect to callback functions which do resizing .. g_signal_connect(G_OBJECT(event_no

Re: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Michael L Torrie
On Sat, 2006-03-18 at 00:38 +0100, Gus Koppel wrote: > However, then you would have to manage all tasks the window manager > takes care of by yourself, i.e. minimizing and maximizing the window on > request and providing correct drag behaviour. For resizability of your > windows you would still hav

RE: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Plummer, Jeff-P56711
: Michael L Torrie [mailto:[EMAIL PROTECTED] Sent: Friday, March 17, 2006 4:21 PM To: Plummer, Jeff-P56711; gtk-app-devel-list@gnome.org Subject: Re: Theme not affecting titlebar on windows xp... help needed On Fri, 2006-03-17 at 23:48 +0100, David Necas (Yeti) wrote: > Boring is not the word I wo

Re: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Gus Koppel
"Plummer, Jeff-P56711" wrote: > An application looks strange if the inside boxes have one theme, and the > outsides window has a different theme (i.e. default windows titlebar, > close, minimize, maximize buttons). > > There has to be a way to make a windows application look like something > othe

Re: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Michael L Torrie
On Fri, 2006-03-17 at 23:48 +0100, David Necas (Yeti) wrote: > Boring is not the word I would use, what about familiar, > consistent, predictable, or integrated? Agreed. The problem with GTK on windows always used to be it looked like a horrible, out-of-place motif app. Now with the WIMP theme t

Re: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Michael L Torrie
On Fri, 2006-03-17 at 15:05 -0800, Wallace Owen wrote: > Maybe he remembers the cool looking themes that Enlightenment did, or > the various themes that Gnome's manager provides, confusing window > decoration themability that's the domain of window managers with the > button/label/etc. gui element

Re: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Wallace Owen
On Fri, 2006-03-17 at 15:29 -0700, Michael L Torrie wrote: > On Fri, 2006-03-17 at 14:26 -0700, Plummer, Jeff-P56711 wrote: > > I am using the C# port of GTK+ on Windows XP, and I'm trying to write an > > app that is skinnable. Below is my simple test code that attempts to > > set the theme of the

Re: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread David Necas (Yeti)
On Fri, Mar 17, 2006 at 03:37:11PM -0700, Plummer, Jeff-P56711 wrote: > An application looks strange if the inside boxes have one theme, and the > outsides window has a different theme (i.e. default windows titlebar, > close, minimize, maximize buttons). > > There has to be a way to make a windows

RE: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Plummer, Jeff-P56711
. -Original Message- From: Michael L Torrie [mailto:[EMAIL PROTECTED] Sent: Friday, March 17, 2006 3:30 PM To: Plummer, Jeff-P56711 Cc: gtk-app-devel-list@gnome.org Subject: Re: Theme not affecting titlebar on windows xp... help needed On Fri, 2006-03-17 at 14:26 -0700, Plummer, Jeff-P56711

Re: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Michael L Torrie
On Fri, 2006-03-17 at 14:26 -0700, Plummer, Jeff-P56711 wrote: > I am using the C# port of GTK+ on Windows XP, and I'm trying to write an > app that is skinnable. Below is my simple test code that attempts to > set the theme of the window. It sets the theme for all the widgets > inside the main wi

Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Plummer, Jeff-P56711
I am using the C# port of GTK+ on Windows XP, and I'm trying to write an app that is skinnable. Below is my simple test code that attempts to set the theme of the window. It sets the theme for all the widgets inside the main window, but it doesn't set the theme of the main window (titlebar). Does

Re: help needed in including more than 2 libraries in application

2005-05-07 Thread Antonio Gomes
Hi Poonam how are you including these library ?! what is the message error !? Paste a snipplet code to help us to help you ;) regards On 5/7/05, poonam chokshi <[EMAIL PROTECTED]> wrote: > hello, > > I am designing an application in which i need to include more than > one library in my applica

Re: Fwd: help needed in including more than 2 libraries in application

2005-05-07 Thread Olivier
Hello, Here is part of my code: -- SG_buffer = gtk_text_buffer_new(NULL); SG_text_view = gtk_text_view_new_with_buffer(SG_buffer); gtk_text_view_set_wrap_mode( GTK_TEXT_VIEW(SG_text_view), GTK_WRAP_NONE); SG_scrolled_window = gtk_scr

Fwd: help needed in including more than 2 libraries in application

2005-05-07 Thread poonam chokshi
hello, I am designing an application in which i need to include more than one library in my application ..I have already included one of my library in the application but when i try to include the other library along with that library it kind of doesn't include the second library Which is th

Widget choice help needed

2005-04-20 Thread Björn Persson
Hello! I'm implementing an application for displaying financial market information and I would like to ask you for tips regarding the choice of widget for displaying market data (prices, best bid/ask, volumes, turnover etc). My requirements for this will something like this: A large table-like