com.webgocommerce.client.model.ContentForm.java Source code

Java tutorial

Introduction

Here is the source code for com.webgocommerce.client.model.ContentForm.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package com.webgocommerce.client.model;

import com.google.gwt.dom.client.Style;
import com.google.gwt.user.client.ui.FlexTable;
import com.google.gwt.user.client.ui.FlexTable.FlexCellFormatter;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.Widget;
import com.webgocommerce.client.resource.MyResource;

/**
 *
 * @author SISTEMAS
 */
public class ContentForm extends FlowPanel {

    private FlexTable flexTable;
    private int row = 0;

    public ContentForm() {
        init();
        style();
    }

    private void init() {
        flexTable = new FlexTable();
        flexTable.setCellPadding(0);
        flexTable.setCellSpacing(0);
        add(flexTable);
    }

    public void addWidget(String text, Widget widget) {
        MyResource.INSTANCE.getStlModel().ensureInjected();
        flexTable.setText(row, 0, text);
        flexTable.setWidget(row, 1, widget);
        FlexCellFormatter cellFormatter = flexTable.getFlexCellFormatter();
        cellFormatter.setWidth(row, 0, "30%");
        cellFormatter.setWidth(row, 1, "70%");
        cellFormatter.getElement(row, 1).getStyle().setPadding(10, Style.Unit.PX);
        cellFormatter.getElement(row, 1).getStyle().setBackgroundColor("#fff");

        row++;
        widget.addStyleName(MyResource.INSTANCE.getStlModel().widgetContentForm());
    }

    private void style() {
        MyResource.INSTANCE.getStlModel().ensureInjected();
        addStyleName(MyResource.INSTANCE.getStlModel().mainContentForm());
        flexTable.addStyleName(MyResource.INSTANCE.getStlModel().flexTableContentForm());
    }
}