Hello! I have a new problem:
I have many dialogs to enter some parameters.
I show them in a table with 2 columns: in the first column the label of the parameter should be left aligned
In the second column, the value of a parameter (can be a spin, an entry or a checkbox) should be right aligned.
I tried with gtk_misc_set_alignment and with set_justify and with gtk_alignment_new
it doesn't work. Look at my attached picture please, all lables and all entrys are centered
Code:
gtk_table_attach(GTK_TABLE (tableParam),label,col,col+1,row,row+1,GTK_EXPAND,GTK_EXPAND,1,1);
gtk_table_attach(GTK_TABLE (tableParam),spinOrEntry,col+1,col+2,row,row+1,GTK_EXPAND,GTK_EXPAND,1,1);
How should I make it in a table? in a vbox?
Thanks a lot in advance
MBoerner