~ubuntu-branches/ubuntu/lucid/gbrainy/lucid

« back to all changes in this revision

Viewing changes to src/Clients/Classical/Dialogs/PlayerHistoryDialog.cs

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-03-08 11:11:11 UTC
  • mfrom: (13.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100308111111-pxz008t81zfu1w8q
Tags: 1.40-1ubuntu1
* Update from Debian unstable, remaining changes: (LP: #534113)
* debian/patches/01_lpi.patch:
* debian/patches/99_autoreconf.patch:
* debian/control:
  - Add Launchpad integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
namespace gbrainy.Clients.Classical
30
30
{
31
 
        public class PlayerHistoryDialog : GtkDialog
 
31
        public class PlayerHistoryDialog : BuilderDialog
32
32
        {
33
 
                [Glade.Widget] Box history_preview;
34
 
                [Glade.Widget] Label label_playerhistory;
35
 
                [Glade.Widget] Gtk.CheckButton checkbutton_total;
36
 
                [Glade.Widget] Gtk.CheckButton checkbutton_memory;
37
 
                [Glade.Widget] Gtk.CheckButton checkbutton_logic;
38
 
                [Glade.Widget] Gtk.CheckButton checkbutton_calculation;
39
 
                [Glade.Widget] Gtk.CheckButton checkbutton_verbal;
 
33
                [GtkBeans.Builder.Object] Box history_preview;
 
34
                [GtkBeans.Builder.Object] Label label_playerhistory;
 
35
                [GtkBeans.Builder.Object] Gtk.CheckButton checkbutton_total;
 
36
                [GtkBeans.Builder.Object] Gtk.CheckButton checkbutton_memory;
 
37
                [GtkBeans.Builder.Object] Gtk.CheckButton checkbutton_logic;
 
38
                [GtkBeans.Builder.Object] Gtk.CheckButton checkbutton_calculation;
 
39
                [GtkBeans.Builder.Object] Gtk.CheckButton checkbutton_verbal;
40
40
 
41
41
                CairoPreview drawing_area;
42
42
 
43
 
                public PlayerHistoryDialog (PlayerHistory history) : base ("playerhistory")
 
43
                public PlayerHistoryDialog (PlayerHistory history) : base ("PlayerHistoryDialog.ui", "playerhistory")
44
44
                {
45
45
                        string label;
46
46