Tagged Questions
4
votes
2answers
156 views
How do I model UHF TV signal?
This may be a strange question, but I would like to programmatically model a UHF TV receiver. Anyone can give me some pointers? I have been looking at the code from emulators, but they are too ...
2
votes
2answers
113 views
Generate Object Model/AST of C program in Java
I want to parse a C source file and get its contents into an AST (abstract syntax tree). It would be very nice if I had my AST stored in Java objects, similar to a XML parsed with DOM. The concepts of ...
0
votes
1answer
48 views
How do you connect a GtkTreeVew and a GtkListStore?
How do you connect a GtkTreeVew and a GtkListStore?
My TreeView shows the ListStore's data fine, but won't update the ListStore when the user changes a value in one of the cellrenderer widgets. The ...