12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*
- * Copyright (C) 2015 iZc
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package de.nplusc.izc.tools.UiToolz;
- import java.awt.*;
- //import javax.swing.ImageIcon;
- /**
- *
- * @author LH
- *
- *
- */
- public abstract class TGUI extends javax.swing.JFrame
- {
- private static Graphics2D g2dp = null;
- //public boolean[] tp = new boolean[3];
- public static TGUI gui;
- public static Image Background = null;
- public static Graphics2D cleanEdit = null;
- private boolean inConst = true;
- /**
- * Creates new form GUI
- */
- Polygon[] polygons= new Polygon[21];
- public TGUI(){
- }
- /*
- public void initTexts(boolean nullified)//Hack um interne Methode zu schützen//obsolet
- {
- initTexts();
- }*/
- public abstract void initTexts();
- /**
- * This method is called from within the constructor to
- * initialize the form.
- * WARNING: Do NOT modify this code. The content of this method is
- * always regenerated by the Form Editor.
- */
-
- // public abstract boolean hxdPaint(Graphics g,javax.swing.JPanel pn);
- // public abstract void writeLetter(Graphics g,int[] font,int letter,int posX,int posY,int lmaa);
- /*public static void writeLetter(Graphics g,int[] font,int letter,int posX,int posY)
- {
- }*/
- // Variables declaration - do not modify//GEN-BEGIN:variables
- private javax.swing.JPanel Surface;
- private javax.swing.JButton jButton1;
- // End of variables declaration//GEN-END:variables
- }
|