Lines Matching refs:row

76 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row);
1039 static gchar *row[COL_NUMBER]; in fill_row() local
1048 g_free(row[i]); in fill_row()
1049 bzero(row, sizeof(row)); in fill_row()
1051 row[COL_OPTION] = in fill_row()
1056 row[COL_COLOR] = g_strdup("DarkGray"); in fill_row()
1059 row[COL_COLOR] = g_strdup("DarkGray"); in fill_row()
1061 row[COL_COLOR] = g_strdup("Black"); in fill_row()
1066 row[COL_PIXBUF] = (gchar *) xpm_menu; in fill_row()
1068 row[COL_PIXVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1069 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1072 row[COL_PIXBUF] = (gchar *) xpm_void; in fill_row()
1073 row[COL_PIXVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1074 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1077 row[COL_PIXBUF] = (gchar *) xpm_void; in fill_row()
1078 row[COL_PIXVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1079 row[COL_BTNVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1084 return row; in fill_row()
1085 row[COL_NAME] = g_strdup(sym->name); in fill_row()
1095 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1104 row[COL_VALUE] = in fill_row()
1108 row[COL_BTNRAD] = GINT_TO_POINTER(TRUE); in fill_row()
1113 if (GPOINTER_TO_INT(row[COL_PIXVIS]) == FALSE) in fill_row()
1114 row[COL_BTNVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1122 row[COL_NO] = g_strdup("N"); in fill_row()
1123 row[COL_VALUE] = g_strdup("N"); in fill_row()
1124 row[COL_BTNACT] = GINT_TO_POINTER(FALSE); in fill_row()
1125 row[COL_BTNINC] = GINT_TO_POINTER(FALSE); in fill_row()
1128 row[COL_MOD] = g_strdup("M"); in fill_row()
1129 row[COL_VALUE] = g_strdup("M"); in fill_row()
1130 row[COL_BTNINC] = GINT_TO_POINTER(TRUE); in fill_row()
1133 row[COL_YES] = g_strdup("Y"); in fill_row()
1134 row[COL_VALUE] = g_strdup("Y"); in fill_row()
1135 row[COL_BTNACT] = GINT_TO_POINTER(TRUE); in fill_row()
1136 row[COL_BTNINC] = GINT_TO_POINTER(FALSE); in fill_row()
1141 row[COL_NO] = g_strdup("_"); in fill_row()
1143 row[COL_MOD] = g_strdup("_"); in fill_row()
1145 row[COL_YES] = g_strdup("_"); in fill_row()
1151 row[COL_VALUE] = g_strdup(def); in fill_row()
1152 row[COL_EDIT] = GINT_TO_POINTER(TRUE); in fill_row()
1153 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1157 return row; in fill_row()
1162 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row) in set_node() argument
1169 row[COL_PIXBUF]); in set_node()
1171 gdk_color_parse(row[COL_COLOR], &color); in set_node()
1176 COL_OPTION, row[COL_OPTION], in set_node()
1177 COL_NAME, row[COL_NAME], in set_node()
1178 COL_NO, row[COL_NO], in set_node()
1179 COL_MOD, row[COL_MOD], in set_node()
1180 COL_YES, row[COL_YES], in set_node()
1181 COL_VALUE, row[COL_VALUE], in set_node()
1184 COL_EDIT, GPOINTER_TO_INT(row[COL_EDIT]), in set_node()
1186 COL_PIXVIS, GPOINTER_TO_INT(row[COL_PIXVIS]), in set_node()
1187 COL_BTNVIS, GPOINTER_TO_INT(row[COL_BTNVIS]), in set_node()
1188 COL_BTNACT, GPOINTER_TO_INT(row[COL_BTNACT]), in set_node()
1189 COL_BTNINC, GPOINTER_TO_INT(row[COL_BTNINC]), in set_node()
1190 COL_BTNRAD, GPOINTER_TO_INT(row[COL_BTNRAD]), in set_node()
1198 static void place_node(struct menu *menu, char **row) in place_node() argument
1204 set_node(node, menu, row); in place_node()