Struct
IpuzCell
Description
struct IpuzCell {
grefcount ref_count;
IpuzCellType cell_type;
gint number;
gchar* label;
gchar* solution;
gchar* initial_val;
gchar* saved_guess;
IpuzStyle* style;
GArray* clues;
gchar* style_name;
}
No description available.
Structure members
ref_count
No description available.
cell_type
No description available.
number
No description available.
label
No description available.
solution
No description available.
initial_val
No description available.
saved_guess
No description available.
style
No description available.
clues
No description available.
style_name
No description available.
Instance methods
ipuz_cell_set_cell_type
This will set the cell type to cell_type
. Note this just sets the
cell_type on a singular cell. If you want to honor the symmetry of
a crossword, you should call ipuz_crossword_set_cell_type()
instead.
ipuz_cell_set_saved_guess
Sets a user guess for a cell for cell
. This should almost never be
called, as it is use to preset the solution if you save a
Crossword. You should use IpuzGuesses to capture the transient
state of a puzzle.