Lines Matching refs:row
76 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row);
1097 static gchar *row[COL_NUMBER]; in fill_row() local
1106 g_free(row[i]); in fill_row()
1107 bzero(row, sizeof(row)); in fill_row()
1109 row[COL_OPTION] = in fill_row()
1114 row[COL_COLOR] = g_strdup("DarkGray"); in fill_row()
1117 row[COL_COLOR] = g_strdup("DarkGray"); in fill_row()
1119 row[COL_COLOR] = g_strdup("Black"); in fill_row()
1124 row[COL_PIXBUF] = (gchar *) xpm_menu; in fill_row()
1126 row[COL_PIXVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1127 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1130 row[COL_PIXBUF] = (gchar *) xpm_void; in fill_row()
1131 row[COL_PIXVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1132 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1135 row[COL_PIXBUF] = (gchar *) xpm_void; in fill_row()
1136 row[COL_PIXVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1137 row[COL_BTNVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1142 return row; in fill_row()
1143 row[COL_NAME] = g_strdup(sym->name); in fill_row()
1153 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1162 row[COL_VALUE] = in fill_row()
1166 row[COL_BTNRAD] = GINT_TO_POINTER(TRUE); in fill_row()
1171 if (GPOINTER_TO_INT(row[COL_PIXVIS]) == FALSE) in fill_row()
1172 row[COL_BTNVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1179 row[COL_NO] = g_strdup("N"); in fill_row()
1180 row[COL_VALUE] = g_strdup("N"); in fill_row()
1181 row[COL_BTNACT] = GINT_TO_POINTER(FALSE); in fill_row()
1182 row[COL_BTNINC] = GINT_TO_POINTER(FALSE); in fill_row()
1185 row[COL_MOD] = g_strdup("M"); in fill_row()
1186 row[COL_VALUE] = g_strdup("M"); in fill_row()
1187 row[COL_BTNINC] = GINT_TO_POINTER(TRUE); in fill_row()
1190 row[COL_YES] = g_strdup("Y"); in fill_row()
1191 row[COL_VALUE] = g_strdup("Y"); in fill_row()
1192 row[COL_BTNACT] = GINT_TO_POINTER(TRUE); in fill_row()
1193 row[COL_BTNINC] = GINT_TO_POINTER(FALSE); in fill_row()
1198 row[COL_NO] = g_strdup("_"); in fill_row()
1200 row[COL_MOD] = g_strdup("_"); in fill_row()
1202 row[COL_YES] = g_strdup("_"); in fill_row()
1208 row[COL_VALUE] = g_strdup(def); in fill_row()
1209 row[COL_EDIT] = GINT_TO_POINTER(TRUE); in fill_row()
1210 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1214 return row; in fill_row()
1219 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row) in set_node() argument
1226 row[COL_PIXBUF]); in set_node()
1228 gdk_color_parse(row[COL_COLOR], &color); in set_node()
1233 COL_OPTION, row[COL_OPTION], in set_node()
1234 COL_NAME, row[COL_NAME], in set_node()
1235 COL_NO, row[COL_NO], in set_node()
1236 COL_MOD, row[COL_MOD], in set_node()
1237 COL_YES, row[COL_YES], in set_node()
1238 COL_VALUE, row[COL_VALUE], in set_node()
1241 COL_EDIT, GPOINTER_TO_INT(row[COL_EDIT]), in set_node()
1243 COL_PIXVIS, GPOINTER_TO_INT(row[COL_PIXVIS]), in set_node()
1244 COL_BTNVIS, GPOINTER_TO_INT(row[COL_BTNVIS]), in set_node()
1245 COL_BTNACT, GPOINTER_TO_INT(row[COL_BTNACT]), in set_node()
1246 COL_BTNINC, GPOINTER_TO_INT(row[COL_BTNINC]), in set_node()
1247 COL_BTNRAD, GPOINTER_TO_INT(row[COL_BTNRAD]), in set_node()
1255 static void place_node(struct menu *menu, char **row) in place_node() argument
1261 set_node(node, menu, row); in place_node()