Posts by 2013Asker • 231 points
3 posts
-
1
votes1
answer134
viewsA: How to center one window on the other in GTK?
I was able to create the window as I wanted using a simpler solution. static void show_warning(char *title, char *text) { GtkWidget *warning_dialog; GtkWidget *content_area; GtkWidget *label;…
-
4
votes1
answer134
viewsQ: How to center one window on the other in GTK?
I have a main window and I want to display small text in a small window, open in the center of the main window. I still can’t get the small window to open in the center of the main. I tried to use…
-
7
votes4
answers1099
viewsQ: When to implement header functions?
I usually divide the program into small modules, each with its own header and implementation. In general, the abstraction level used allows the implementation to be completely changed without…