Lines Matching full:row
941 /* Row selection changed: update help */
997 /* Fill a row of strings */
1000 static gchar *row[COL_NUMBER]; in fill_row() local
1009 g_free(row[i]); in fill_row()
1010 bzero(row, sizeof(row)); in fill_row()
1014 row[COL_OPTION] = in fill_row()
1022 row[COL_COLOR] = g_strdup("DarkGray"); in fill_row()
1025 row[COL_COLOR] = g_strdup("DarkGray"); in fill_row()
1027 row[COL_COLOR] = g_strdup("Black"); in fill_row()
1031 row[COL_PIXBUF] = (gchar *) xpm_menu; in fill_row()
1033 row[COL_PIXVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1034 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1037 row[COL_PIXBUF] = (gchar *) xpm_void; in fill_row()
1038 row[COL_PIXVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1039 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1042 row[COL_PIXBUF] = (gchar *) xpm_void; in fill_row()
1043 row[COL_PIXVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1044 row[COL_BTNVIS] = GINT_TO_POINTER(TRUE); in fill_row()
1049 return row; in fill_row()
1050 row[COL_NAME] = g_strdup(sym->name); in fill_row()
1067 row[COL_VALUE] = in fill_row()
1070 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1071 return row; in fill_row()
1074 row[COL_BTNRAD] = GINT_TO_POINTER(TRUE); in fill_row()
1083 row[COL_NO] = g_strdup("N"); in fill_row()
1084 row[COL_VALUE] = g_strdup("N"); in fill_row()
1085 row[COL_BTNACT] = GINT_TO_POINTER(FALSE); in fill_row()
1086 row[COL_BTNINC] = GINT_TO_POINTER(FALSE); in fill_row()
1089 row[COL_MOD] = g_strdup("M"); in fill_row()
1090 row[COL_VALUE] = g_strdup("M"); in fill_row()
1091 row[COL_BTNINC] = GINT_TO_POINTER(TRUE); in fill_row()
1094 row[COL_YES] = g_strdup("Y"); in fill_row()
1095 row[COL_VALUE] = g_strdup("Y"); in fill_row()
1096 row[COL_BTNACT] = GINT_TO_POINTER(TRUE); in fill_row()
1097 row[COL_BTNINC] = GINT_TO_POINTER(FALSE); in fill_row()
1102 row[COL_NO] = g_strdup("_"); in fill_row()
1104 row[COL_MOD] = g_strdup("_"); in fill_row()
1106 row[COL_YES] = g_strdup("_"); in fill_row()
1112 row[COL_VALUE] = g_strdup(def); in fill_row()
1113 row[COL_EDIT] = GINT_TO_POINTER(TRUE); in fill_row()
1114 row[COL_BTNVIS] = GINT_TO_POINTER(FALSE); in fill_row()
1118 return row; in fill_row()
1122 /* Set the node content with a row of strings */
1123 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row) in set_node() argument
1130 row[COL_PIXBUF]); in set_node()
1132 gdk_color_parse(row[COL_COLOR], &color); in set_node()
1137 COL_OPTION, row[COL_OPTION], in set_node()
1138 COL_NAME, row[COL_NAME], in set_node()
1139 COL_NO, row[COL_NO], in set_node()
1140 COL_MOD, row[COL_MOD], in set_node()
1141 COL_YES, row[COL_YES], in set_node()
1142 COL_VALUE, row[COL_VALUE], in set_node()
1145 COL_EDIT, GPOINTER_TO_INT(row[COL_EDIT]), in set_node()
1147 COL_PIXVIS, GPOINTER_TO_INT(row[COL_PIXVIS]), in set_node()
1148 COL_BTNVIS, GPOINTER_TO_INT(row[COL_BTNVIS]), in set_node()
1149 COL_BTNACT, GPOINTER_TO_INT(row[COL_BTNACT]), in set_node()
1150 COL_BTNINC, GPOINTER_TO_INT(row[COL_BTNINC]), in set_node()
1151 COL_BTNRAD, GPOINTER_TO_INT(row[COL_BTNRAD]), in set_node()
1159 static void place_node(struct menu *menu, char **row) in place_node() argument
1165 set_node(node, menu, row); in place_node()