~ubuntu-branches/ubuntu/edgy/pouetchess/edgy-updates

« back to all changes in this revision

Viewing changes to data/gui/english/pawn_promotion.xml

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc (mr_pouit)
  • Date: 2006-07-15 15:45:57 UTC
  • Revision ID: james.westby@ubuntu.com-20060715154557-3paxq02hx4od0wm4
Tags: upstream-0.2.0
ImportĀ upstreamĀ versionĀ 0.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<Panel name        = "Pawn promotion"
 
2
           callbackString = "pawn_promotion">
 
3
        
 
4
        <Position     x = "200" y = "340"/>
 
5
        
 
6
        
 
7
        <Panel name           = "promotion"
 
8
                   drawBounds     = "true"
 
9
                   drawBackground = "true"
 
10
                   layout         = "CEN_YAXIS">
 
11
                
 
12
                <BGColor    x =  "50" y =  "50" z = "50" />
 
13
                <BordersColor x = "216" y = "169" z =  "0" />
 
14
                
 
15
                <Label name = "Title">
 
16
                        <Text string = "There is promotion ! Choose your new piece :" fontIndex ="1">
 
17
                                <Color r = "0" g = "255" b = "255" />
 
18
                        </Text>
 
19
                </Label>     
 
20
                <Separator ratio = "1.0"  />
 
21
                
 
22
                <RadioButton callbackString = "queen"
 
23
                                         alphaFadeScale = "1.5"
 
24
                                         checked        = "true">
 
25
                        <Text   string  = "Queen" />
 
26
                </RadioButton>
 
27
                
 
28
                <RadioButton callbackString = "knight"
 
29
                                         alphaFadeScale = "1.5">
 
30
                        <Text   string  = "Knight" />
 
31
                </RadioButton>
 
32
                
 
33
                <RadioButton callbackString = "rook"
 
34
                                         alphaFadeScale = "1.5">
 
35
                        <!-- The two spaces at the end of rook are
 
36
                                 important because of the centered mode -->
 
37
                        <Text   string  = "Rook  " /> 
 
38
                </RadioButton>
 
39
                
 
40
                <RadioButton callbackString = "bishop"
 
41
                                         alphaFadeScale = "1.5">
 
42
                        <Text   string  = "Bishop" />
 
43
                </RadioButton>
 
44
                
 
45
                
 
46
                <Label name = "Nothing">
 
47
                        <Text string = "" ></Text>
 
48
                                        </Label>
 
49
                
 
50
                <Button callbackString = "okButtonPromotion">
 
51
                        <Color    x =  "255" y =  "0" z = "0" />
 
52
                        <Text    string  = "OK" />
 
53
                        <Dimensions x = "120" y = "30" />
 
54
                </Button>
 
55
                
 
56
        
 
57
        </Panel>
 
58
                
 
59
 
 
60
</Panel>
 
61