Jypeli  5
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 using System;
32 using System.Collections.Generic;
33 using System.Linq;
34 using System.Text;
35 using System.ComponentModel;
36 using Jypeli.GameObjects;
37 
38 namespace Jypeli.Widgets
39 {
43  public class StringListWindow : CustomQueryWindow<StringListWidget>
44  {
48  public StringListWidget List
49  {
50  get { return QueryWidget; }
51  }
52 
53  internal override bool OkButtonOnPhone { get { return true; } }
54 
55  public StringListWindow( string question )
56  : base( question )
57  {
58  Game.AssertInitialized( AddControls );
59  }
60 
65  public StringListWindow( double width, double height, string question )
66  : base( width, height, question )
67  {
68  Game.AssertInitialized( AddControls );
69  }
70 
71  protected override StringListWidget CreateQueryWidget()
72  {
73  return new StringListWidget() { HorizontalSizing = Sizing.Expanding, VerticalSizing = Sizing.Expanding, Color = Color.Transparent };
74  }
75 
76  void AddControls()
77  {
78 #if WINDOWS_PHONE
79  Jypeli.Game.Instance.PhoneBackButton.Listen( Close, null ).InContext( this );
80 #endif
81  }
82  }
83 }
PhoneBackButton PhoneBackButton
Definition: Game.cs:260
Ikkuna, joka sisältää listan merkkijonoja.
override StringListWidget CreateQueryWidget()
StringListWindow(double width, double height, string question)
Luo uuden merkkijonolistaikkunan ja asettaa sille kiinteän koon.
Sizing
Olion koon asettaminen asettelijan sisällä.
Definition: ILayout.cs:38
static Game Instance
Definition: Game.cs:149
static readonly Color Transparent
Läpinäkyvä väri.
Definition: Color.cs:869
Peliluokka reaaliaikaisille peleille.
Definition: DebugScreen.cs:10
Väri.
Definition: Color.cs:13
static void AssertInitialized(Action actionMethod)
Suorittaa aliohjelman kun peli on varmasti alustettu.
Definition: Game.cs:630
Käyttöliittymäkomponentti, joka näyttää listan merkkijonoja.