removing rows from a table
- From: Sander Marechal <s marechal jejik com>
- To: gtk-app-devel-list gnome org
- Subject: removing rows from a table
- Date: Mon, 10 Apr 2006 00:59:52 +0200
Hello all,
I'm creating a game and I am using a GtkTable to display a table with
scores in them. After every round I add a new row to the table and
display a new series of values in the cells (using GtkLabels).
When a player starts a new game, I need to reset this table (remove all
rows except the "header" row). I tried it this way:
GtkTable table;
score_table = (GtkTable*)glade_xml_get_widget(xml, "score_table");
gtk_table_resize(score_table, 1, 4); // shrink to destroy the scores
But that doesn't make the table smaller apparently. When I show the
scores, I still see all the rows. So, how can I remove the rows from the
GtkTable?
Thanks in advance :-)
--
Sander
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]