Tagged Questions
14
votes
3answers
2k views
MVC implemented in pure C
Does anybody know of any resources that provide a straight forward example of trying to do Model View Controller design pattern in a C context? And in particular an embedded system?
To clarify, I am ...
8
votes
2answers
205 views
Refactoring legacy C code into MVC design
I am working on some OLD (as in older than me) C code that needs to be cleaned up and brought up to date so that (amongst other things), it is easier to maintain and integrates more cleanly with ...
0
votes
2answers
478 views
How do I use gtk_list_store_set_value?
I need to store Data from text widgets in a treeview in a liststore.
To this end I should apparently use gtk_list_store_set_value which is capable of performing the correct typecast.
First: I don't ...
1
vote
3answers
413 views
Userdefined function for printf
Is it possible to replace printf with userdefined function or is it possible to create function similar like printf
0
votes
0answers
305 views
SQL DB schema design in context of MVC model development tips/tricks
I'm looking to replace our current model (written entirely in Tcl (please don't even start)) with a new model based around an SQL (sqlite) database, and I'm looking for books/articles giving advice on ...
7
votes
3answers
1k views
Presenting MVC to Old C++ Spaghetti Coders?
I wish to present the idea of MVC to a bunch of old C++ spaghetti coders (at my local computer club).
One of them that has alot of influence on the rest of the group seems to finally be getting the ...
1
vote
2answers
905 views
Viewing data in a circular buffer in real-time
I have an incoming stream of messages, and want a window that allows the user to scroll through the messages.
This is my current thinking:
Incoming messages go into single producer single consumer ...
