Re: Slow gui response - need to see gtk queue

2007-01-31 Thread Mark Richardson
EMAIL PROTECTED]> wrote: On Tue, 2007-01-30 at 12:40 -0800, Mark Richardson wrote: > I can't figure out why my gui becomes sluggish. I have a main window with a > bunch of vboxes and hboxes - in one area, I don't put in a widget - because I > load glade.xml files (so you c

Re: Slow gui response - need to see gtk queue

2007-01-30 Thread Mark Richardson
>I dont think your problem has to do with the frequency at which you update the GUI, typically when data arrives, you update your private data representation of what should be displayed and then flag your UI as "dirty" - whenever you happen to get a chance later on... you go and actually update th

Slow gui response - need to see gtk queue

2007-01-30 Thread Mark Richardson
I can't figure out why my gui becomes sluggish. I have a main window with a bunch of vboxes and hboxes - in one area, I don't put in a widget - because I load glade.xml files (so you can swap your views). I should say that I have some custom widgets, and I've been pulling them out so I can see

Scientific widgets

2006-11-29 Thread Mark Richardson
What was that library that someone was developing for scientific widgets? They were things like analog indicators (or dials), an led, etc. I thought I saved the link, but can't find it now. Thanks! Mark - Check out the all-new Yahoo! Mail beta - Fire up

Re: ComboBox and TreeStore

2006-11-09 Thread Mark Richardson
t;[EMAIL PROTECTED]> wrote: Date: Fri, 10 Nov 2006 00:23:46 +0100 From: David Neèas (Yeti) <[EMAIL PROTECTED]> To: Mark Richardson <[EMAIL PROTECTED]> Subject: Re: ComboBox and TreeStore On Thu, Nov 09, 2006 at 02:59:18PM -0800, Mark Richardson wrote: > Thanks, I can't seem to

ComboBox and TreeStore

2006-11-09 Thread Mark Richardson
Having some difficulty with a combo box and associated tree store. When I do this, nothing shows up... GtkTreeStore *myTreeStore=gtk_tree_store_new(1, G_TYPE_STRING); GtkWidget *myComboBox=lookup_widget(mainWindow, "myComboBox"); gtk_combo_box_set_model(GTK_COMBO_BOX(myComboBox), GTK_T

Linking custom widget

2006-09-25 Thread Mark Richardson
I'm having troubles linking a custom widget I built. I took the gtklabel widget, and renamed all the functions and widget to be gtklabel2 (did this same thing in an older version of gtk and it worked great). Now when I try to link I get "unresolved reference to 'IA__gtk_misc_get_type'. If I li

Multi-threaded gtk app very very slow

2006-07-17 Thread Mark Richardson
I have a multi-threaded application that I developed using gtk 2.4.1 (I know it's old - the SA hasn't had time to get to it yet - so I'll be moving to latest and greatest soon). Anyway, this application has multiple "views" - in that you can open different *.glade files (xml) and they open

Application with XML parsing

2006-02-06 Thread Mark Richardson
I am playing with the idea of an application with a main window that is blank. Then you can "load views" which are saved XML files that are parsed and the main window is populated with this dynamic gui. What I was thinking was taking the XML loading/parsing routines from glade-2 and putti