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

« back to all changes in this revision

Viewing changes to src/Games/Memory/MemoryFiguresAndText.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:
67
67
                }
68
68
 
69
69
                public override string MemoryQuestion {
70
 
                        get {return Catalog.GetString ("The list below enumerates the figures shown in previous images except for one. Which is the missing figure? Answer the name of the figure." );}
 
70
                        get {return Catalog.GetString ("The list below enumerates the figures shown in the previous image except for one. Which is the missing figure? Answer the name of the figure." );}
71
71
                }
72
72
 
73
73
                public override void Initialize ()
114
114
                        base.Initialize ();
115
115
                }
116
116
 
117
 
                public override void DrawPossibleAnswers (CairoContextEx gr, int area_width, int area_height)
 
117
                public override void DrawPossibleAnswers (CairoContextEx gr, int area_width, int area_height, bool rtl)
118
118
                {
119
119
                        double x= DrawAreaX, y = DrawAreaY + 0.1;
120
120
                        int pos = 0;
144
144
                        }
145
145
                }
146
146
 
147
 
                public override void DrawObjectToMemorize (CairoContextEx gr, int area_width, int area_height)
 
147
                public override void DrawObjectToMemorize (CairoContextEx gr, int area_width, int area_height, bool rtl)
148
148
                {
149
 
                        base.DrawObjectToMemorize (gr, area_width, area_height);
 
149
                        base.DrawObjectToMemorize (gr, area_width, area_height, rtl);
150
150
                        DrawAllFigures (gr, start_x_ques, start_y, area_width, area_height);
151
151
                }
152
152