[gnome-tetravex] split score dialog into own file
- From: Thomas Hindoe Paaboel Andersen <thomashpa src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-tetravex] split score dialog into own file
- Date: Mon, 14 Oct 2013 21:45:06 +0000 (UTC)
commit 1771273e22f6f38ccb97fed3b2af2652d4d37efe
Author: Thomas Hindoe Paaboel Andersen <phomes gmail com>
Date: Tue Oct 15 01:41:27 2013 +0200
split score dialog into own file
src/Makefile.am | 1 +
src/gnome-tetravex.vala | 154 --------------------------------------------
src/score-dialog.vala | 163 +++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 164 insertions(+), 154 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index 2ea72c2..88c1480 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -10,6 +10,7 @@ gnome_tetravex_SOURCES = \
puzzle.vala \
puzzle-view.vala \
theme.vala \
+ score-dialog.vala \
$(BUILT_SOURCES)
UI_FILES = \
diff --git a/src/gnome-tetravex.vala b/src/gnome-tetravex.vala
index 6d45f47..c68352a 100644
--- a/src/gnome-tetravex.vala
+++ b/src/gnome-tetravex.vala
@@ -398,157 +398,3 @@ public class Tetravex : Gtk.Application
return app.run (args);
}
}
-
-public class ScoreDialog : Gtk.Dialog
-{
- private History history;
- private HistoryEntry? selected_entry = null;
- private Gtk.ListStore size_model;
- private Gtk.ListStore score_model;
- private Gtk.ComboBox size_combo;
-
- public ScoreDialog (History history, HistoryEntry? selected_entry = null, bool show_quit = false)
- {
- this.history = history;
- history.entry_added.connect (entry_added_cb);
- this.selected_entry = selected_entry;
-
- if (show_quit)
- {
- add_button (_("Quit"), Gtk.ResponseType.CLOSE);
- add_button (_("New Game"), Gtk.ResponseType.OK);
- }
- else
- add_button (_("OK"), Gtk.ResponseType.DELETE_EVENT);
- set_size_request (200, 300);
-
- var vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 5);
- vbox.border_width = 6;
- vbox.show ();
- get_content_area ().pack_start (vbox, true, true, 0);
-
- var hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6);
- hbox.show ();
- vbox.pack_start (hbox, false, false, 0);
-
- var label = new Gtk.Label (_("Size:"));
- label.show ();
- hbox.pack_start (label, false, false, 0);
-
- size_model = new Gtk.ListStore (2, typeof (string), typeof (int));
-
- size_combo = new Gtk.ComboBox ();
- size_combo.changed.connect (size_changed_cb);
- size_combo.model = size_model;
- var renderer = new Gtk.CellRendererText ();
- size_combo.pack_start (renderer, true);
- size_combo.add_attribute (renderer, "text", 0);
- size_combo.show ();
- hbox.pack_start (size_combo, true, true, 0);
-
- var scroll = new Gtk.ScrolledWindow (null, null);
- scroll.shadow_type = Gtk.ShadowType.ETCHED_IN;
- scroll.set_policy (Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC);
- scroll.show ();
- vbox.pack_start (scroll, true, true, 0);
-
- score_model = new Gtk.ListStore (3, typeof (string), typeof (string), typeof (int));
-
- var scores = new Gtk.TreeView ();
- renderer = new Gtk.CellRendererText ();
- scores.insert_column_with_attributes (-1, _("Date"), renderer, "text", 0, "weight", 2);
- renderer = new Gtk.CellRendererText ();
- renderer.xalign = 1.0f;
- scores.insert_column_with_attributes (-1, _("Time"), renderer, "text", 1, "weight", 2);
- scores.model = score_model;
- scores.show ();
- scroll.add (scores);
-
- foreach (var entry in history.entries)
- entry_added_cb (entry);
- }
-
- public void set_size (uint size)
- {
- score_model.clear ();
-
- var entries = history.entries.copy ();
- entries.sort (compare_entries);
-
- foreach (var entry in entries)
- {
- if (entry.size != size)
- continue;
-
- var date_label = entry.date.format ("%d/%m/%Y");
-
- var time_label = "%us".printf (entry.duration);
- if (entry.duration >= 60)
- time_label = "%um %us".printf (entry.duration / 60, entry.duration % 60);
-
- int weight = Pango.Weight.NORMAL;
- if (entry == selected_entry)
- weight = Pango.Weight.BOLD;
-
- Gtk.TreeIter iter;
- score_model.append (out iter);
- score_model.set (iter, 0, date_label, 1, time_label, 2, weight);
- }
- }
-
- private static int compare_entries (HistoryEntry a, HistoryEntry b)
- {
- if (a.size != b.size)
- return (int) a.size - (int) b.size;
- if (a.duration != b.duration)
- return (int) a.duration - (int) b.duration;
- return a.date.compare (b.date);
- }
-
- private void size_changed_cb (Gtk.ComboBox combo)
- {
- Gtk.TreeIter iter;
- if (!combo.get_active_iter (out iter))
- return;
-
- int size;
- combo.model.get (iter, 1, out size);
- set_size ((uint) size);
- }
-
- private void entry_added_cb (HistoryEntry entry)
- {
- /* Ignore if already have an entry for this */
- Gtk.TreeIter iter;
- var have_size_entry = false;
- if (size_model.get_iter_first (out iter))
- {
- do
- {
- int size, height, n_mines;
- size_model.get (iter, 1, out size, 2, out height, 3, out n_mines);
- if (size == entry.size)
- {
- have_size_entry = true;
- break;
- }
- } while (size_model.iter_next (ref iter));
- }
-
- if (!have_size_entry)
- {
- var label = "%u × %u".printf (entry.size, entry.size);
-
- size_model.append (out iter);
- size_model.set (iter, 0, label, 1, entry.size);
-
- /* Select this entry if don't have any */
- if (size_combo.get_active () == -1)
- size_combo.set_active_iter (iter);
-
- /* Select this entry if the same category as the selected one */
- if (selected_entry != null && entry.size == selected_entry.size)
- size_combo.set_active_iter (iter);
- }
- }
-}
diff --git a/src/score-dialog.vala b/src/score-dialog.vala
new file mode 100644
index 0000000..bd9f7c8
--- /dev/null
+++ b/src/score-dialog.vala
@@ -0,0 +1,163 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
+public class ScoreDialog : Gtk.Dialog
+{
+ private History history;
+ private HistoryEntry? selected_entry = null;
+ private Gtk.ListStore size_model;
+ private Gtk.ListStore score_model;
+ private Gtk.ComboBox size_combo;
+
+ public ScoreDialog (History history, HistoryEntry? selected_entry = null, bool show_quit = false)
+ {
+ this.history = history;
+ history.entry_added.connect (entry_added_cb);
+ this.selected_entry = selected_entry;
+
+ if (show_quit)
+ {
+ add_button (_("Quit"), Gtk.ResponseType.CLOSE);
+ add_button (_("New Game"), Gtk.ResponseType.OK);
+ }
+ else
+ add_button (_("OK"), Gtk.ResponseType.DELETE_EVENT);
+ set_size_request (200, 300);
+
+ var vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 5);
+ vbox.border_width = 6;
+ vbox.show ();
+ get_content_area ().pack_start (vbox, true, true, 0);
+
+ var hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6);
+ hbox.show ();
+ vbox.pack_start (hbox, false, false, 0);
+
+ var label = new Gtk.Label (_("Size:"));
+ label.show ();
+ hbox.pack_start (label, false, false, 0);
+
+ size_model = new Gtk.ListStore (2, typeof (string), typeof (int));
+
+ size_combo = new Gtk.ComboBox ();
+ size_combo.changed.connect (size_changed_cb);
+ size_combo.model = size_model;
+ var renderer = new Gtk.CellRendererText ();
+ size_combo.pack_start (renderer, true);
+ size_combo.add_attribute (renderer, "text", 0);
+ size_combo.show ();
+ hbox.pack_start (size_combo, true, true, 0);
+
+ var scroll = new Gtk.ScrolledWindow (null, null);
+ scroll.shadow_type = Gtk.ShadowType.ETCHED_IN;
+ scroll.set_policy (Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC);
+ scroll.show ();
+ vbox.pack_start (scroll, true, true, 0);
+
+ score_model = new Gtk.ListStore (3, typeof (string), typeof (string), typeof (int));
+
+ var scores = new Gtk.TreeView ();
+ renderer = new Gtk.CellRendererText ();
+ scores.insert_column_with_attributes (-1, _("Date"), renderer, "text", 0, "weight", 2);
+ renderer = new Gtk.CellRendererText ();
+ renderer.xalign = 1.0f;
+ scores.insert_column_with_attributes (-1, _("Time"), renderer, "text", 1, "weight", 2);
+ scores.model = score_model;
+ scores.show ();
+ scroll.add (scores);
+
+ foreach (var entry in history.entries)
+ entry_added_cb (entry);
+ }
+
+ public void set_size (uint size)
+ {
+ score_model.clear ();
+
+ var entries = history.entries.copy ();
+ entries.sort (compare_entries);
+
+ foreach (var entry in entries)
+ {
+ if (entry.size != size)
+ continue;
+
+ var date_label = entry.date.format ("%d/%m/%Y");
+
+ var time_label = "%us".printf (entry.duration);
+ if (entry.duration >= 60)
+ time_label = "%um %us".printf (entry.duration / 60, entry.duration % 60);
+
+ int weight = Pango.Weight.NORMAL;
+ if (entry == selected_entry)
+ weight = Pango.Weight.BOLD;
+
+ Gtk.TreeIter iter;
+ score_model.append (out iter);
+ score_model.set (iter, 0, date_label, 1, time_label, 2, weight);
+ }
+ }
+
+ private static int compare_entries (HistoryEntry a, HistoryEntry b)
+ {
+ if (a.size != b.size)
+ return (int) a.size - (int) b.size;
+ if (a.duration != b.duration)
+ return (int) a.duration - (int) b.duration;
+ return a.date.compare (b.date);
+ }
+
+ private void size_changed_cb (Gtk.ComboBox combo)
+ {
+ Gtk.TreeIter iter;
+ if (!combo.get_active_iter (out iter))
+ return;
+
+ int size;
+ combo.model.get (iter, 1, out size);
+ set_size ((uint) size);
+ }
+
+ private void entry_added_cb (HistoryEntry entry)
+ {
+ /* Ignore if already have an entry for this */
+ Gtk.TreeIter iter;
+ var have_size_entry = false;
+ if (size_model.get_iter_first (out iter))
+ {
+ do
+ {
+ int size, height, n_mines;
+ size_model.get (iter, 1, out size, 2, out height, 3, out n_mines);
+ if (size == entry.size)
+ {
+ have_size_entry = true;
+ break;
+ }
+ } while (size_model.iter_next (ref iter));
+ }
+
+ if (!have_size_entry)
+ {
+ var label = "%u × %u".printf (entry.size, entry.size);
+
+ size_model.append (out iter);
+ size_model.set (iter, 0, label, 1, entry.size);
+
+ /* Select this entry if don't have any */
+ if (size_combo.get_active () == -1)
+ size_combo.set_active_iter (iter);
+
+ /* Select this entry if the same category as the selected one */
+ if (selected_entry != null && entry.size == selected_entry.size)
+ size_combo.set_active_iter (iter);
+ }
+ }
+}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]