Initial commit

This commit is contained in:
Flare Microsystems
2024-03-03 00:02:00 -08:00
commit f7f24dfbe5
24 changed files with 884 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
package com.flaremicro.flaretv.visualforecast;
import java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.JFrame;
public class VisualForecastFrame extends JFrame {
/**
*
*/
private static final long serialVersionUID = 1L;
private RenderPanel contentPane;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
VisualForecastFrame frame = new VisualForecastFrame();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public VisualForecastFrame() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 640*2, 480*2);
contentPane = new RenderPanel();
contentPane.setBorder(null);
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
setUndecorated(true);
}
}