Uses of Class
ch.aplu.android.GameGrid.WindowZoom

Packages that use GameGrid.WindowZoom
ch.aplu.android Package of the JDroidLib framework for developing Android applications with a focus on gaming and simulations. 
ch.aplu.jcardgame Addon package of the JDroidLib framework for developing card game applications. 
 

Uses of GameGrid.WindowZoom in ch.aplu.android
 

Methods in ch.aplu.android that return GameGrid.WindowZoom
static GameGrid.WindowZoom GameGrid.windowZoom(int windowSize)
          Returns a WindowZoom reference to be used as constructor parameter for apps based on pixels.
 

Constructors in ch.aplu.android with parameters of type GameGrid.WindowZoom
GameGrid(boolean isFullScreen, GameGrid.WindowZoom windowZoom)
          Constructs a game activity with no active navigation buttons, no visible grid (transparent) and no background image.
GameGrid(GameGrid.WindowZoom windowZoom)
          Same as GameGrid(boolean isFullScreen, WindowZoom windowZoom) with isFullScreen = false, so the graphics window is a square.
GameGrid(int borderColor, boolean isNavigation, boolean isFullScreen, GameGrid.WindowZoom windowZoom)
          Constructs a game activity with no active navigation buttons, no visible grid (transparent) and no background image.
GameGrid(int borderColor, GameGrid.WindowZoom windowZoom)
          Same as GameGrid(int borderColor, boolean isNavigation, boolean isFullscreen, WindowZoom windowZoom) with isNavigation = false and isFullScreen = false, so the graphics window is a square.
GameGrid(java.lang.String bgImagePath, boolean isNavigation, boolean isFullScreen, GameGrid.WindowZoom windowZoom)
          Constructs a game activity with no visible grid (transparent) possibly a background image and possibly active navitation buttons.
GameGrid(java.lang.String bgImagePath, GameGrid.WindowZoom windowZoom)
          Same as GameGrid(String bgImagePath, boolean isNavigation, boolean isFullScreen, WindowZoom windowZoom) with isNavigation = false, isFullScreen = false, so the graphics window is a square.
 

Uses of GameGrid.WindowZoom in ch.aplu.jcardgame
 

Constructors in ch.aplu.jcardgame with parameters of type GameGrid.WindowZoom
CardGame(int boardColor, int borderColor, CardGame.BoardType boardType, GameGrid.WindowZoom windowZoom)
          Constructs and shows a game grid window of given BoardType layout with given border and background color.