Re: Mary Christimas

2005-12-24 Thread Carl B. Constantine
* Everaldo Canuto ([EMAIL PROTECTED]) wrote: Hi all, I know that this is a international list and not all people have same religion or calendar but... Mary Christimas, a happy new year and a big success in 2006!! Everaldo. Thank you. To you and yours too. -- .''`. Carl B

Re: New to GTK+, please help

2005-12-23 Thread Carl B. Constantine
`PANGO_IS_FONT (font)' failed Do you have the Pango Libraries specified in your VC++ project? I'm not up on Visual C but check to make sure everything is linked in correctly. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8

Re: Are there anybody interested in porting GTK to embedded dev board

2005-06-30 Thread Carl B. Constantine
a look. Failing that, I'd be happy to help you out on a contractual basis. Note that GTK+ is a little large for embedded systems. See this reference: http://www.linuxdevices.com/cgi-bin/board/UltraBoard.pl?Action=ShowPostBoard=100Post=45Idle=0Sort=0Order=DescendPage=5Session= -- .''`. Carl B

Re: (no subject)

2005-04-12 Thread Carl B. Constantine
) GtkWidget = gtk_window_get_focus(*theWindow); But it's hard to tell without seeing the code in question. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom Claiming

Re: Printing in GTK+

2004-10-19 Thread Carl B. Constantine
the print job--it would just be an extra layer that you have the choice of using or not as you see fit (and the fact that there are two layers could be hidden by the rendering API). That would be nice. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02

Printing in GTK+

2004-10-14 Thread Carl B. Constantine
I have some data I want to print out in my application. How do I do it? To make things a little different, I *might* print to one of those POS type printers (USB) not a regular printer. Pointers? Which classes do I need to use? Thanks. -- .''`. Carl B. Constantine : :' : [EMAIL

Re: Printing in GTK+

2004-10-14 Thread Carl B. Constantine
* Roger Leigh ([EMAIL PROTECTED]) wrote: Carl B. Constantine [EMAIL PROTECTED] writes: I have some data I want to print out in my application. How do I do it? To make things a little different, I *might* print to one of those POS type printers (USB) not a regular printer. Pointers

Re: fix for: assignment discards qualifiers from pointer target type

2004-07-27 Thread Carl B. Constantine
* John Cupitt ([EMAIL PROTECTED]) wrote: On Wed, 14 Jul 2004 20:53:16 -0700, Carl B. Constantine [EMAIL PROTECTED] wrote: gchar *userid = NULL; userid = gtk_entry_get_text(GTK_ENTRY(lookup_widget(logon, password))); Try const char *userid = gtk_entry_get_text( GTK_ENTRY

fix for: assignment discards qualifiers from pointer target type

2004-07-14 Thread Carl B. Constantine
))); but, gtk_entry_get_text returns a gchar* (specifically a G_CONST_RETURN gchar*). So my question is, how on earth do I fix this warning message? Am I casting something incorrectly? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8

can't print string pointer, get error?

2004-07-14 Thread Carl B. Constantine
this warning, and how do I fix it? Thanks. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom Claiming that your operating system is the best in the world because more

Re: Traditional C rejects ISO C

2004-06-14 Thread Carl B. Constantine
* Manish Singh ([EMAIL PROTECTED]) wrote: On Sat, Jun 12, 2004 at 08:01:05PM -0700, Carl B. Constantine wrote: I thank you for your reply, however it doesn't really answer my question. First, I'm only using gcc, so Borland and MS C don't count. Second, I'm obviouslly using gcc's

Traditional C rejects ISO C

2004-06-12 Thread Carl B. Constantine
and ISO C so how do I fix it in code I *do* write? I'm writing C code the way I've always done. Thanks for any pointers you can give. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power

restricting data entry (filters?)

2004-02-02 Thread Carl B. Constantine
with declaring the field cast as an INT, that may work, but I have no idea how to hook that into Glade (which is generating my source at present) and thus into my app. Does anyone have other ideas on how to do what I want? Thanks. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED

GtkEntry input filters

2004-01-16 Thread Carl B. Constantine
I have a GtkEntry in my app where the only thing I want to be able to input is numbers. I don't want letters or characters like (, * , -, ), and so forth. Anyone know how to write such an input filter? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30

Re: someone please answer, clearing text in a GtkTextView!

2004-01-06 Thread Carl B. Constantine
* Roger Leigh ([EMAIL PROTECTED]) wrote: Carl B. Constantine [EMAIL PROTECTED] writes: I have a GtkTextView in a window used for data entry into a database. The text typed in the view gets put in the database no problem, but once the data entry has occurred, I want to clear the view so

someone please answer, clearing text in a GtkTextView!

2003-12-30 Thread Carl B. Constantine
segfault as well. Can anyone help? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom Claiming that your operating system is the best in the world because more people use

How to delete/clear text in GtkTextView?

2003-12-16 Thread Carl B. Constantine
(specialBuffer,, 0); but I think that makes my app segfault as well. Can anyone help? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom Claiming that your operating system

deleting text in a text view

2003-12-06 Thread Carl B. Constantine
(specialBuffer,, 0); but I think that makes my app segfault as well. Can anyone help? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom Claiming that your operating system

g_strncat -- THANKS

2003-12-05 Thread Carl B. Constantine
to everyone for the help. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom Claiming that your operating system is the best in the world because more people use it is like

more on g_strconcat problem

2003-11-26 Thread Carl B. Constantine
absolutely NO sense what so ever! Please help, this is driving me NUTSO! -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom Claiming that your operating system is the best

Re: GTK TreeView Column Header Colors

2003-11-20 Thread Carl B. Constantine
for the information. I didn't realize you could do it that way, but it does make sense now that I look at it. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom Claiming

dynmically growing GtkTreeView from MySQL DB?

2003-10-24 Thread Carl B. Constantine
of the view? Any and all help is greatly and urgently requested and appreciated. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom Claiming that your operating system

data between windows?

2003-10-06 Thread Carl B. Constantine
window for find/update as I do for entry/add as that window is often already open. But I need to get data from a dialog that appears later BACK into my data entry window. Thoughts? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1

destroy event

2003-10-06 Thread Carl B. Constantine
() on the window and wait until application quit time? What is the common concensus? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom Claiming that your operating

Re: unsubscribe

2003-09-03 Thread Carl B. Constantine
answer. [EMAIL PROTECTED] you sent the email to the wrong address. Also, next time, take a look at the full email headers, they often have info on how to unsubscribe from lists. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C

Re: Getting text out of a GtkTextView

2003-06-22 Thread Carl B. Constantine
. You can apply tags and insert marks without invalidating your iterators, but any mutation that affects 'indexable' buffer contents (contents that can be referred to by character offset) will invalidate all outstanding iterators -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED

Re: Getting text out of a GtkTextView

2003-06-22 Thread Carl B. Constantine
* Carl B. Constantine ([EMAIL PROTECTED]) wrote: The following link tells you how to get the contents of the entire text widget as a string: http://developer.gnome.org/doc/API/2.0/gtk/gtk-question-index.html#id2850623 No it's not. that url doesn't resolve (at least as far as the #id

Getting text out of a GtkTextView

2003-06-18 Thread Carl B. Constantine
that text into a database field but it's not working. Any help is appreciated. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom pgp0.pgp Description: PGP signature

Re: TreeView speedup

2003-03-24 Thread Carl B. Constantine
using several TreeViews in my application for displaying of status and database information. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom pgp0.pgp Description

Re: A quick question:what ide should I use to program in Linux with gtk?

2003-03-23 Thread Carl B. Constantine
. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom pgp0.pgp Description: PGP signature

Assert messages.

2003-03-23 Thread Carl B. Constantine
different windows. They don't seem to be consistant. But I've hard-coded the size of the windows (that is to say I've specified they are not resizable in Glade and I've set a specific size for them in Glade as well). Any ideas/help is greatly appreciated. -- .''`. Carl B. Constantine

Re: Assert messages.

2003-03-23 Thread Carl B. Constantine
* Sven Neumann ([EMAIL PROTECTED]) wrote: Hi, Carl B. Constantine [EMAIL PROTECTED] writes: I'm getting a couple of assert messages in my app kind of all-of-a-sudden as of late. I'm curious what they really mean and how can I track them down. you can force warnings to become fatal

found one warning

2003-03-23 Thread Carl B. Constantine
for that checkbutton and attached a handler to it (on_button_name_toggled) so I'm not sure why I get this message. I've set up regular buttons with key accelerators with clicked signals and do not get any warnings like this. Any ideas/help is appreciated. -- .''`. Carl B. Constantine

More on key accelerators

2003-03-23 Thread Carl B. Constantine
indeed get it to work the way I want. Thanks. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom pgp0.pgp Description: PGP signature

Re: Where is product support of www.mcp.com

2003-03-12 Thread Carl B. Constantine
things you need. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom pgp0.pgp Description: PGP signature

Re: Draw on the root window?

2003-03-07 Thread Carl B. Constantine
the Wheelbarrow example in the examples directory? I think it *might* answer some of your questions. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom pgp0.pgp Description

Re: CellRenderText properties question.

2003-03-05 Thread Carl B. Constantine
* Diego Zuccato ([EMAIL PROTECTED]) wrote: Carl B. Constantine wrote: Thanks for the reply. That confirms what I suspected, but IMHO very bad design as it creates extra overhead for memory and storage in the TreeModel (ListStore in this case) instead of being able to determine

properties for GtkCellRenderText -- Whoohoo it works!

2003-03-05 Thread Carl B. Constantine
methods of doing this. For example, do I need to call gtk_tree_view_get_selection at all? Some obvious debug code can also be elminated but that's the jist of it. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8

CellRenderText properties question.

2003-03-04 Thread Carl B. Constantine
for Metrowerks as a professional technical writer). Any help is greatly appreciated. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom pgp0.pgp Description: PGP

Re: CellRenderText properties question.

2003-03-04 Thread Carl B. Constantine
* Diego Zuccato ([EMAIL PROTECTED]) wrote: Carl B. Constantine wrote: ...Also, with GtkTreeViewColumn, you can bind a property to a value in a GtkTreeModel. For example, you can bind the text property on the cell renderer to a string value in the model, thus rendering a different string

Re: CellRenderText properties question.

2003-03-04 Thread Carl B. Constantine
it. This makes sense now that you point that out. I was doing a 1:1 mapping between the TreeModel (ListStore in my case) and the TreeView but it doesn't have to be such. Thanks for the help! -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB

cell renderers question.

2003-03-01 Thread Carl B. Constantine
to be involved here? 2) if a user right-clicks in a column, pop-up a menu. Is this even possible? If so, what signals again? Thanks. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power

blinking cursor/focus problems?

2003-03-01 Thread Carl B. Constantine
? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom pgp0.pgp Description: PGP signature

Re: dealing with column data

2003-02-24 Thread Carl B. Constantine
* Evan Lavelle ([EMAIL PROTECTED]) wrote: Carl B. Constantine wrote: I'm writing an app that uses GtkTreeView widget to display data. However. for two of these GtkTreeViews, the data isn't really row based, but column based. It's more like a spread sheet and I don't think GTK has anything

dealing with column data

2003-02-23 Thread Carl B. Constantine
. The Gtk 2.0 tutorial is missing docs on several widgets. it would be nice to get these filled in. Just my $0.02 worth. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom

gtk testing directory

2003-02-18 Thread Carl B. Constantine
is appreciated. Also, I'm sure I saw somewhere a gtktest app that tested all the widgets. But I can't seem to find it. It's not part of the source download. Does someone have a link? thanks. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1

Re: GtkListStore usage

2003-02-17 Thread Carl B. Constantine
another type instead of gtktreedatalist when they want. Yes, especially if you want to work on data by column instead of by row. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power

text entry growing (Long)

2003-02-11 Thread Carl B. Constantine
packing property name=padding0/property property name=expandFalse/property property name=fillFalse/property /packing /child /widget /child /widget /glade-interface -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG

selecting/updating a single cell in GtkTreeView

2003-02-04 Thread Carl B. Constantine
to update just a single cell in the view as opposed to an entire row? Thanks in advance. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom msg12285/pgp0.pgp

extra spaces in layout question

2003-02-04 Thread Carl B. Constantine
that all it does is take up space? For a look at what I mean, see the following URL: http://www.duckwing.ca/screenshots/2003_02_04_205632_shot.jpg Thanks for any help -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8

Re: Reference Tutorial for GTK+ GUI to MySQL Database

2003-01-25 Thread Carl B. Constantine
sure you can find a copy on Amazon or BN. It covers using Glade/GTK+ to build MySQL applications. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom msg12172/pgp0.pgp

Re: success with GtkTreeView

2003-01-03 Thread Carl B. Constantine
the method given in the GTK+ 2.0 API Reference? It's not a *big* deal for me, but if a method shown of changing the text attributes of a cell or heading cell doesn't work, the docs need to be changed. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02

Problems building gnome 2 project with Anjuta

2003-01-01 Thread Carl B. Constantine
that is commented out at the top of main.c also causes problems (which is why it is commented out) but it was generated by Glade so I'm not sure what's up with that. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8

success with GtkTreeView

2003-01-01 Thread Carl B. Constantine
(Shift, renderer, text, SHIFT_COLUMN, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(theTreeView), column); This is pretty much straight from the API Reference docs. Any ideas as to why this is happening? Do the headings for the columns maybe not allow this? -- .''`. Carl B

Re: difference between gtk_signal_connect and g_signal_connect

2002-12-31 Thread Carl B. Constantine
this in the GTK-2.0 API Reference on gtk_signal_connect: Warning gtk_signal_connect is deprecated and should not be used in newly-written code. Use g_signal_connect() instead. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1

controlling container sizes

2002-12-31 Thread Carl B. Constantine
that. Any suggestions? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom msg11875/pgp0.pgp Description: PGP signature

Re: still on treeview

2002-12-28 Thread Carl B. Constantine
was for. -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom msg11834/pgp0.pgp Description: PGP signature

Newbie Makefile.in Makefile.am question

2002-12-28 Thread Carl B. Constantine
for me? What nuance am I missing in all this? I've tried running aclocal, automake, autoconf to no avail (they all want a configure.in file). So what do I do? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8

Re: Newbie Makefile.in Makefile.am question

2002-12-28 Thread Carl B. Constantine
* Mark Jones ([EMAIL PROTECTED]) wrote: See if there is a autogen.sh script. If so, run it and that should take care of all of that. nope, already new about that, there isn't one of those. In fact, there isn't one in the entire download. Any other ideas? -- .''`. Carl B. Constantine

Making a gtktreeview like gtkClist

2002-12-28 Thread Carl B. Constantine
solid example that runs as-is. Also, how does one convert existing gtk 1.2 CList into a gtk 2.x TreeView? -- .''`. Carl B. Constantine : :' : [EMAIL PROTECTED] `. `'GnuPG: 135F FC30 7A02 B0EB 61DB 34E3 3AF1 DC6C 9F7A 3FF8 `- Debian GNU/Linux -- The power of freedom

Re: depreciated classes in GTK+2

2002-09-10 Thread Carl B. Constantine
. -- __ _ Carl B. Constantine / / (_)__ __ __ [EMAIL PROTECTED] / /__/ / _ \/ // /\ \/ / (2.4.18) http://www.duckwing.ca //_/_//_/\_ _/ /_/\_\ Debian 3.0