Examples of IGroupStrategy


Examples of com.swtplus.widgets.group.IGroupStrategy

    createFinancialInfo();
    createPresentControl();
  }

  private void createStudentData() {
    IGroupStrategy groupStrategy = new RectangleGroupStrategy(
        new TwisteToggleStrategy(),
        RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS
            | RectangleGroupStrategy.ROUNDED);
    studentPGroup = new PGroup(this, groupStrategy);
    studentPGroup.setText("Aluno");
View Full Code Here

Examples of com.swtplus.widgets.group.IGroupStrategy

    data.height = 51;
    studentRegistrationControlCenterButton.setLayoutData(data);
  }

  private void createFinancialInfo() {
    IGroupStrategy groupStrategy = new RectangleGroupStrategy(
        new TwisteToggleStrategy(),
        RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS
            | RectangleGroupStrategy.ROUNDED);
    finantialInfoPGroup = new PGroup(this, groupStrategy);
    finantialInfoPGroup.setText("Informa��es de Pagamento");
View Full Code Here

Examples of com.swtplus.widgets.group.IGroupStrategy

    createPresentTable();
    createSubtitle();
  }

  private void createPresentGroup() {
    IGroupStrategy groupStrategy = new RectangleGroupStrategy(
        new TwisteToggleStrategy(),
        RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS
            | RectangleGroupStrategy.ROUNDED);
    presentPGroup = new PGroup(this, groupStrategy);
    presentPGroup.setText("Controle De Presen�a");
View Full Code Here

Examples of com.swtplus.widgets.group.IGroupStrategy

        updateTable(GROUP_STRING);
    }

    private void createChoseModeGroup() {
        IGroupStrategy groupStrategy = new RectangleGroupStrategy(new TwisteToggleStrategy(), RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS | RectangleGroupStrategy.ROUNDED);
        choseModePGroup = new PGroup(this, groupStrategy);
        choseModePGroup.setText("Visualiza��o");
        choseModePGroup.setBackground(new Color(null, 133, 147, 194));
        choseModePGroup.setForeground(new Color(null, 255, 255, 255));
        choseModePGroup.setImage(new Image(null, "img/trocaUsuarioGrupo_central.png"));
View Full Code Here

Examples of com.swtplus.widgets.group.IGroupStrategy

            }
        });
    }

    private void createOptionsGroup() {
        IGroupStrategy groupStrategy = new RectangleGroupStrategy(new TwisteToggleStrategy(), RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS | RectangleGroupStrategy.ROUNDED);
        PGroup optionsPGroup = new PGroup(this, groupStrategy);
        optionsPGroup.setText("Op��es");
        optionsPGroup.setBackground(new Color(null, 133, 147, 194));
        optionsPGroup.setForeground(new Color(null, 255, 255, 255));
        optionsPGroup.setImage(new Image(null, "img/opcoes_central.png"));
View Full Code Here

Examples of com.swtplus.widgets.group.IGroupStrategy

           
        }
    }

    private void createSecurityTable() {
        IGroupStrategy groupStrategy = new RectangleGroupStrategy(new TwisteToggleStrategy(), RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS | RectangleGroupStrategy.ROUNDED);

        pGroupSecurityTable = new PGroup(this, groupStrategy);
        pGroupSecurityTable.setBackground(new Color(null, 133, 147, 194));
        pGroupSecurityTable.setForeground(new Color(null, 255, 255, 255));
        updateTitleSegurityTable(GRUPOS_STRING);
View Full Code Here

Examples of com.swtplus.widgets.group.IGroupStrategy

       
        updateTable();
    }
   
    private void createFilterGroup() {
      IGroupStrategy groupStrategy = new RectangleGroupStrategy(new TwisteToggleStrategy(), RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS|RectangleGroupStrategy.ROUNDED);
      filterPGroup = new PGroup(this, groupStrategy);
      filterPGroup.setText("Filtros");
      filterPGroup.setBackground(new Color(null, 133,147,194));
      filterPGroup.setForeground(new Color(null, 255,255,255));
      filterPGroup.setImage(new Image(null, "img/searchEmployee_central.png"));       
View Full Code Here

Examples of com.swtplus.widgets.group.IGroupStrategy

      createFilterLabel();
      createFilterOptionRadioButton();
  }
   
    private void createInfoGroup() {
      IGroupStrategy groupStrategy = new RectangleGroupStrategy(new TwisteToggleStrategy(), RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS|RectangleGroupStrategy.ROUNDED);
      infoPGroup = new PGroup(this, groupStrategy);
      infoPGroup.setText("Informa��es");
      infoPGroup.setBackground(new Color(null, 133,147,194));
      infoPGroup.setForeground(new Color(null, 255,255,255));
      infoPGroup.setImage(new Image(null, "img/info.png"));       
View Full Code Here

Examples of com.swtplus.widgets.group.IGroupStrategy

        numberOfStudentRegistredLabel.setBackground(infoPGroupComposite.getBackground());
  }
 

  private void createSearchGroup() {
        IGroupStrategy groupStrategy = new RectangleGroupStrategy(new TwisteToggleStrategy(), RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS|RectangleGroupStrategy.ROUNDED);
        searchPGroup = new PGroup(this, groupStrategy);
        searchPGroup.setText("Pesquisar");
        searchPGroup.setBackground(new Color(null, 133,147,194));
        searchPGroup.setForeground(new Color(null, 255,255,255));
        searchPGroup.setImage(new Image(null, "img/searchEmployee_central.png"));       
View Full Code Here

Examples of com.swtplus.widgets.group.IGroupStrategy

        createSearchText();
        createSearchButton();
    }

    private void createOptionsGroup() {
        IGroupStrategy groupStrategy = new RectangleGroupStrategy(new TwisteToggleStrategy(), RectangleGroupStrategy.PAINTIMAGEOUTOFBOUNDS|RectangleGroupStrategy.ROUNDED);
        optionsPGroup = new PGroup(this, groupStrategy);
        optionsPGroup.setText("Op��es");
        optionsPGroup.setBackground(new Color(null, 133,147,194));
        optionsPGroup.setForeground(new Color(null, 255,255,255));
        optionsPGroup.setImage(new Image(null, "img/opcoes_central.png"));       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.