forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
819 B
41 lines
819 B
/*
|
|
* ImpressaoAuxiliaresWindow.java
|
|
*
|
|
* Created on 7 de Dezembro de 2006, 16:13
|
|
*
|
|
* To change this template, choose Tools | Template Manager
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package siprp.medicina;
|
|
|
|
import java.awt.*;
|
|
import javax.swing.*;
|
|
|
|
import com.evolute.utils.ui.*;
|
|
import com.evolute.utils.ui.calendar.*;
|
|
|
|
/**
|
|
*
|
|
* @author fpalma
|
|
*/
|
|
public class ImpressaoAuxiliaresWindow extends JFrame
|
|
{
|
|
protected JCalendarPanel calendarPanel;
|
|
protected JButton imprimirButton;
|
|
|
|
/** Creates a new instance of ImpressaoAuxiliaresWindow */
|
|
public ImpressaoAuxiliaresWindow()
|
|
{
|
|
setupComponents();
|
|
}
|
|
|
|
private void setupComponents()
|
|
{
|
|
setTitle( "Imprimir" );
|
|
JLabel dataLabel = new JLabel( "Data" );
|
|
calendarPanel = new JCalendarPanel( this );
|
|
imprimirButton = new JButton( "Imprimir" );
|
|
}
|
|
}
|