Jypeli  9
The simple game programming library
StringListWindow.cs
Siirry tämän tiedoston dokumentaatioon.
1 #region MIT License
2 /*
3  * Copyright (c) 2009-2011 University of Jyväskylä, Department of Mathematical
4  * Information Technology.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 #endregion
25 
26 /*
27  * Authors: Tomi Karppinen, Tero Jäntti
28  */
29 
30 
31 
32 namespace Jypeli
33 {
37  public class StringListWindow : CustomQueryWindow<StringListWidget>
38  {
43  {
44  get { return QueryWidget; }
45  }
46 
47  internal override bool OkButtonOnPhone { get { return true; } }
48 
49  public StringListWindow( string question )
50  : base( question )
51  {
52  AddedToGame += AddControls;
53  }
54 
61  public StringListWindow( double width, double height, string question )
62  : base( width, height, question )
63  {
64  AddedToGame += AddControls;
65  }
66 
67  protected override StringListWidget CreateQueryWidget()
68  {
69  return new StringListWidget() { HorizontalSizing = Sizing.Expanding, VerticalSizing = Sizing.Expanding, Color = Color.Transparent };
70  }
71 
72  void AddControls()
73  {
74  var l = Jypeli.Game.Instance.PhoneBackButton.Listen( Close, null ).InContext( this );
75  associatedListeners.Add(l);
76  }
77  }
78 }
Jypeli.StringListWindow
Ikkuna, joka sisältää listan merkkijonoja.
Definition: StringListWindow.cs:38
Jypeli.StringListWindow.AddControls
void AddControls()
Definition: StringListWindow.cs:72
Jypeli.StringListWidget
Käyttöliittymäkomponentti, joka näyttää listan merkkijonoja.
Definition: StringListWidget.cs:41
Jypeli
Definition: Automobile.cs:5
Jypeli.Game.PhoneBackButton
BackButton PhoneBackButton
Puhelimen takaisin-näppäin.
Definition: Controls.cs:67
Jypeli.CustomQueryWindow< StringListWidget >::QueryWidget
W QueryWidget
Kysymyskomponentti.
Definition: CustomQueryWindow.cs:47
Jypeli.Game.Instance
static Game Instance
Käynnissä olevan pelin pääolio.
Definition: Game.cs:90
Jypeli.Color.Transparent
static readonly Color Transparent
Läpinäkyvä väri.
Definition: Color.cs:878
Jypeli.StringListWindow.CreateQueryWidget
override StringListWidget CreateQueryWidget()
Definition: StringListWindow.cs:67
Jypeli.CustomQueryWindow
Definition: CustomQueryWindow.cs:36
Jypeli.BackButton.Listen
Listener Listen(Action handler, string helpText)
Kuuntelee puhelimen takaisin-näppäintä.
Definition: BackButton.cs:31
Jypeli.StringListWindow.StringListWindow
StringListWindow(string question)
Definition: StringListWindow.cs:49
Jypeli.StringListWindow.StringListWindow
StringListWindow(double width, double height, string question)
Luo uuden merkkijonolistaikkunan ja asettaa sille kiinteän koon.
Definition: StringListWindow.cs:61
Jypeli.StringListWindow.List
StringListWidget List
Listakomponentti.
Definition: StringListWindow.cs:43
Jypeli.Color
Väri.
Definition: Color.cs:13
Jypeli.StringListWindow.OkButtonOnPhone
override bool OkButtonOnPhone
Definition: StringListWindow.cs:47
Jypeli.Game
Definition: Content.cs:46
Jypeli.Sizing
Sizing
Olion koon asettaminen asettelijan sisällä.
Definition: ILayout.cs:39