(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
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
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 !
> > > >
>
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
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
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
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
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,
> > > >
> >
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
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
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
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
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
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
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.
> > >
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
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
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
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
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
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 "
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
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
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
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
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
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
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
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
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
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
: 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
"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
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
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
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
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
.
-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
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
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
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
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
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
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
44 matches
Mail list logo