/* * MIT License * * Copyright (c) 2018-2019 Daniel Cortes * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package danielcortes.xyz; import danielcortes.xyz.controllers.BaseLayoutController; import danielcortes.xyz.data.Configuration; import danielcortes.xyz.data.DAOManager; import danielcortes.xyz.views.BaseLayout; import java.util.Locale; import javax.swing.JComponent; import javax.swing.JFrame; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; public class Main { private static final int DATABASE_VERSION = 3; private static final String VERSION = "1.0"; static { setUpSystemProperties(); DAOManager.setup(); updateDatabase(); } public static void main(String[] args) { if (args.length > 0){ switch (args[0]){ case "-v": case "--version": System.out.println("--------------------------------------------------------------------------------"); System.out.println(String.format("Software version: %s", VERSION)); System.out.println(String.format("Database version: %o", DATABASE_VERSION)); System.out.println("--------------------------------------------------------------------------------"); System.exit(0); } } run(); } private static void run() { BaseLayout view = new BaseLayout(); BaseLayoutController controller = new BaseLayoutController(view); executeView(view.getContentPanel()); } private static void updateDatabase() { DAOManager.getVersionDAO().updateTo(DATABASE_VERSION); } private static void executeView(JComponent view) { JFrame frame = new JFrame(Configuration.get("nombre_caja")); frame.setContentPane(view); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.pack(); frame.setLocationRelativeTo(null); frame.setVisible(true); } private static void setUpSystemProperties() { System.setProperty("awt.useSystemAAFontSettings", "on"); System.setProperty("swing.aatext", "true"); try { UIManager.setLookAndFeel(Configuration.get("look_and_feel")); } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException e) { e.printStackTrace(); } Locale.setDefault(new Locale("es")); } }