Package client.custom

Examples of client.custom.CustomMainPanel


   * Instantiates variables and enforces properties in connection with the main containers of the frame.
   */
  private void buildConfigureMainContainers(){
    //Loon JPaneli, mis hakkab t�itma JFrame'i default-content pane'i �lesannet ning mille
    //sisse hakatakse lisama k�iki teisi graafilisi komponente.
    bgPanel = new CustomMainPanel(new BorderLayout(), Constants.MAIN_BACKGROUND_IMAGE_PATH, Constants.REGULAR_TILE_IMAGE_PATH);
    setContentPane(bgPanel);
  }
View Full Code Here


  /**
   * Instantiates variables and enforces properties in connection with the main containers of the frame.
   */
  private void buildConfigureMainContainers(){
    //Create the contentpane JPanel(bgPanel) of the frame, the root container for all following elements
    bgPanel = new CustomMainPanel(Constants.MAIN_BACKGROUND_IMAGE_PATH, Constants.REGULAR_TILE_IMAGE_PATH);
    bgPanel.setLayout(new BoxLayout(bgPanel, BoxLayout.Y_AXIS));
    setContentPane(bgPanel);
   
    contentPanel = new JPanel();
    contentPanel.setLayout(new BoxLayout(contentPanel, BoxLayout.X_AXIS));
View Full Code Here

TOP

Related Classes of client.custom.CustomMainPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.