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

« back to all changes in this revision

Viewing changes to src/PuzzleGames/PuzzleCube.cs

  • Committer: Bazaar Package Importer
  • Author(s): Siegfried-Angel Gevatter Pujals, Jo Shields, Siegfried-Angel Gevatter Pujals
  • Date: 2009-11-17 19:23:40 UTC
  • mfrom: (1.3.1 upstream) (9.1.8 karmic)
  • Revision ID: james.westby@ubuntu.com-20091117192340-ek9lvn4ag5913tg7
Tags: 1.20-1
[ Jo Shields ]
* debian/rules
  + Policy-compliant location for get-orig-source rule
  + Remove spurious call to --repack in get-orig-source rule

[ Siegfried-Angel Gevatter Pujals ]
* New upstream release:
  + Six new games, including a new game type (verbal analogies).
  + Bug fixes and new translations.
* Bump Standards-Version to 3.8.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
                base.Draw (gr, area_width, area_height);
60
60
 
61
61
                gr.Rectangle (x + 0.1, y, 0.1, 0.1);
 
62
                gr.Stroke ();
62
63
                gr.MoveTo (x + 0.1 + txtoff_x, y + txtoff_y);
63
64
                gr.ShowPangoText ("1");
64
65
 
65
66
                gr.Rectangle (x + 0.2, y, 0.1, 0.1);
 
67
                gr.Stroke ();
66
68
                gr.MoveTo (x + 0.2 + txtoff_x, y + txtoff_y);
67
69
                gr.ShowPangoText ("2");
68
70
 
69
71
                gr.Rectangle (x + 0.2, y + 0.1, 0.1, 0.1);
 
72
                gr.Stroke ();
70
73
                gr.MoveTo (x + 0.2 + txtoff_x, y + 0.1 + txtoff_y);
71
74
                gr.ShowPangoText ("3");
72
75
 
73
76
                gr.Rectangle (x + 0.3, y + 0.1, 0.1, 0.1);
 
77
                gr.Stroke ();
74
78
                gr.MoveTo (x + 0.3 + txtoff_x, y + 0.1 + txtoff_y);
75
79
                gr.ShowPangoText ("4");
76
80
 
77
81
                gr.Rectangle (x + 0.4, y + 0.1, 0.1, 0.1);
 
82
                gr.Stroke ();
78
83
                gr.MoveTo (x + 0.4 + txtoff_x, y + 0.1 + txtoff_y);
79
84
                gr.ShowPangoText ("5");
80
85
 
81
86
                gr.Rectangle (x + 0.4, y + 0.2, 0.1, 0.1);
 
87
                gr.Stroke ();
82
88
                gr.MoveTo (x + 0.4 + txtoff_x, y + 0.2 + txtoff_y);
83
89
                gr.ShowPangoText ("6");
84
 
 
85
 
                gr.Stroke ();
86
90
        }
87
 
 
88
91
}
89
92
 
90
93