Lines Matching full:row
70 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row);
973 /* Row selection changed: update help */
1029 /* Fill a row of strings */
1032 static gchar *row[COL_NUMBER]; in fill_row() local
1041 g_free(row[i]); in fill_row()
1042 bzero(row, sizeof(row)); in fill_row()
1046 row[COL_OPTION] = in fill_row()
1054 row[COL_COLOR] = g_strdup("DarkGray"); in fill_row()
1057 row[COL_COLOR] = g_strdup("DarkGray"); in fill_row()
1059 row[COL_COLOR] = g_strdup("Black"); in fill_row()
1063 row[COL_PIXBUF] = (gchar *) xpm_menu; in fill_row()
1065 row[COL_PIXVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1066 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1069 row[COL_PIXBUF] = (gchar *) xpm_void; in fill_row()
1070 row[COL_PIXVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1071 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1074 row[COL_PIXBUF] = (gchar *) xpm_void; in fill_row()
1075 row[COL_PIXVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1076 row[COL_BTNVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1081 return row; in fill_row()
1082 row[COL_NAME] = g_strdup(sym->name); in fill_row()
1092 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1101 row[COL_VALUE] = in fill_row()
1105 row[COL_BTNRAD] = GINT_TO_POINTER(TRUE); in fill_row()
1110 if (GPOINTER_TO_INT(row[COL_PIXVIS]) == FALSE) in fill_row()
1111 row[COL_BTNVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1119 row[COL_NO] = g_strdup("N"); in fill_row()
1120 row[COL_VALUE] = g_strdup("N"); in fill_row()
1121 row[COL_BTNACT] = GINT_TO_POINTER(FALSE); in fill_row()
1122 row[COL_BTNINC] = GINT_TO_POINTER(FALSE); in fill_row()
1125 row[COL_MOD] = g_strdup("M"); in fill_row()
1126 row[COL_VALUE] = g_strdup("M"); in fill_row()
1127 row[COL_BTNINC] = GINT_TO_POINTER(TRUE); in fill_row()
1130 row[COL_YES] = g_strdup("Y"); in fill_row()
1131 row[COL_VALUE] = g_strdup("Y"); in fill_row()
1132 row[COL_BTNACT] = GINT_TO_POINTER(TRUE); in fill_row()
1133 row[COL_BTNINC] = GINT_TO_POINTER(FALSE); in fill_row()
1138 row[COL_NO] = g_strdup("_"); in fill_row()
1140 row[COL_MOD] = g_strdup("_"); in fill_row()
1142 row[COL_YES] = g_strdup("_"); in fill_row()
1148 row[COL_VALUE] = g_strdup(def); in fill_row()
1149 row[COL_EDIT] = GINT_TO_POINTER(TRUE); in fill_row()
1150 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1154 return row; in fill_row()
1158 /* Set the node content with a row of strings */
1159 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row) in set_node() argument
1166 row[COL_PIXBUF]); in set_node()
1168 gdk_color_parse(row[COL_COLOR], &color); in set_node()
1173 COL_OPTION, row[COL_OPTION], in set_node()
1174 COL_NAME, row[COL_NAME], in set_node()
1175 COL_NO, row[COL_NO], in set_node()
1176 COL_MOD, row[COL_MOD], in set_node()
1177 COL_YES, row[COL_YES], in set_node()
1178 COL_VALUE, row[COL_VALUE], in set_node()
1181 COL_EDIT, GPOINTER_TO_INT(row[COL_EDIT]), in set_node()
1183 COL_PIXVIS, GPOINTER_TO_INT(row[COL_PIXVIS]), in set_node()
1184 COL_BTNVIS, GPOINTER_TO_INT(row[COL_BTNVIS]), in set_node()
1185 COL_BTNACT, GPOINTER_TO_INT(row[COL_BTNACT]), in set_node()
1186 COL_BTNINC, GPOINTER_TO_INT(row[COL_BTNINC]), in set_node()
1187 COL_BTNRAD, GPOINTER_TO_INT(row[COL_BTNRAD]), in set_node()
1195 static void place_node(struct menu *menu, char **row) in place_node() argument
1201 set_node(node, menu, row); in place_node()