Examples of DateText


Examples of br.com.visualmidia.ui.widgets.DateText

        data.left = new FormAttachment(startDateLabel,55);
        finishDateLabel.setLayoutData(data);
    }
   
    private void createFinishDateText() {
        finishDateText = new DateText(selectDateComposite, SWT.BORDER | SWT.READ_ONLY);
        finishDateText.setValue(new GDDate().getDate());
       
        FormData data = new FormData();
        data.top = new FormAttachment(startDateLabel,5);
        data.left = new FormAttachment(startDateLabel,50);
View Full Code Here

Examples of br.com.visualmidia.ui.widgets.DateText

    private void createPayDateFields() {
        Label paymentDateLabel = new Label(dialog, SWT.LEFT);
        paymentDateLabel.setText("Vencimento:");

        paymentDateText = new DateText(dialog, SWT.FULL_SELECTION | SWT.RIGHT | SWT.SINGLE | SWT.BORDER | SWT.READ_ONLY);
        paymentDateText.setValue(new GDDate(parcel.getDate()).getDate());
       
        GridData data = new GridData(GridData.FILL);
        data.widthHint = 80;
        paymentDateText.setLayoutData(data);
View Full Code Here

Examples of br.com.visualmidia.ui.widgets.DateText

        GDDate today = new GDDate();

        Label incomingDateLabel = new Label(dialog, SWT.LEFT);
        incomingDateLabel.setText("Data do recebimento:");

        incomingDateText = new DateText(dialog, SWT.SINGLE | SWT.BORDER | SWT.LEFT_TO_RIGHT);
        incomingDateText.setValue(today.getDate());
        incomingDateText.setEditable(true);
       
        if(account != null) {
          incomingDateText.setValue(receivedDate.getDate());
View Full Code Here

Examples of br.com.visualmidia.ui.widgets.DateText

            createAllStudentsBilletComposite();
        }
    }

    private void createEndDateText() {
      endDateText = new DateText(allStudentsBilletComposite, SWT.SINGLE | SWT.BORDER | SWT.READ_ONLY);
      endDateText.setValue(new GDDate().getDate());
     
        FormData data = new FormData();
        data.top = new FormAttachment(endDateLabel, 1);
        data.left = new FormAttachment(initialDateText, 5);
View Full Code Here

Examples of br.com.visualmidia.ui.widgets.DateText

        createEndDateLabel();
        createEndDateText();
    }

    private void createInitialDateText() {
      initialDateText = new DateText(allStudentsBilletComposite, SWT.SINGLE | SWT.BORDER | SWT.READ_ONLY);
      initialDateText.setValue(new GDDate().getDate());
       
        FormData data = new FormData();
        data.top = new FormAttachment(inicialDateLabel, 1);
        data.left = new FormAttachment(0, 0);
View Full Code Here

Examples of br.com.visualmidia.ui.widgets.DateText

        formData.left = new FormAttachment(0, 10);
        dateLabel.setLayoutData(formData);
    }

    private void createDateText() {
        dateText = new DateText(screenComposite, SWT.BORDER | SWT.READ_ONLY);
        dateText.setValue(extractBankItem.getDate().getDate());

        FormData formData = new FormData();
        formData.top = new FormAttachment(0, 10);
        formData.left = new FormAttachment(0, 80);
View Full Code Here

Examples of br.com.visualmidia.ui.widgets.DateText

       
        Label periodLabel = new Label(filterGroup, SWT.NONE);
        periodLabel.setText("Per�odo: ");
        periodLabel.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WIDGET_HIGHLIGHT_SHADOW));
       
        initialDateText = new DateText(filterGroup, SWT.BORDER | SWT.READ_ONLY);
        initialDateText.setValue(new GDDate().getDate());
       
        Label middleLabel = new Label(filterGroup, SWT.NONE);
        middleLabel.setText(" � ");
        middleLabel.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WIDGET_HIGHLIGHT_SHADOW));
       
        finishDateText = new DateText(filterGroup, SWT.BORDER | SWT.READ_ONLY);
        finishDateText.setValue(new GDDate().getDate());
       
    Button filterButton = new Button(filterGroup, SWT.NONE);
    filterButton.setText("Filtrar");
   
View Full Code Here

Examples of br.com.visualmidia.ui.widgets.DateText

   private void crateRegistrationTaxDate() {
        Label registrationTaxDateLabel = new Label(dialog, SWT.LEFT);
        registrationTaxDateLabel.setText("Vencimento da Taxa de Matr�cula:");

        registrationTaxDateText = new DateText(dialog, SWT.SINGLE | SWT.BORDER | SWT.READ_ONLY);
        registrationTaxDateText.setValue(new GDDate().getDate());

        GridData data = new GridData();
        data.widthHint = 80;
        data.horizontalSpan = 2;
View Full Code Here

Examples of br.com.visualmidia.ui.widgets.DateText

   
    private void createExpirationFields() {
        Label expirationLabel = new Label(dialog, SWT.LEFT);
        expirationLabel.setText("Vencimento da parcela:");

        expirationText = new DateText(dialog, SWT.SINGLE | SWT.BORDER | SWT.READ_ONLY);
        expirationText.setValue(new GDDate().getDate());

        GridData data = new GridData();
        data.widthHint = 80;
        data.horizontalSpan = 2;
View Full Code Here

Examples of br.com.visualmidia.ui.widgets.DateText

  private void createDateFields() {
    Label dateParcelLabel = new Label(parcelComposite, SWT.NONE);
    dateParcelLabel.setText("Data da parcela: ");

    dateText = new DateText(parcelComposite, SWT.BORDER | SWT.READ_ONLY);
    dateText.setLayoutData(dataText);
    if (_idParcel != null) {
      dateText.setValue(fillDateParcel());
    } else {
      List<Parcel> parcels = _registration.getParcels();
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.