source: extensions/jiwigo/trunk/src/main/java/fr/mael/jiwigo/Main.java @ 8838

Last change on this file since 8838 was 8838, checked in by mlg, 13 years ago

Images can be sent from the file new file browser.

File size: 3.0 KB
Line 
1package fr.mael.jiwigo;
2
3import java.io.File;
4import java.io.IOException;
5
6import javax.swing.UIManager;
7
8import com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel;
9
10import fr.mael.jiwigo.transverse.session.SessionManager;
11import fr.mael.jiwigo.transverse.util.Outil;
12import fr.mael.jiwigo.transverse.util.preferences.PreferencesManagement;
13import fr.mael.jiwigo.ui.ConnexionDialog;
14import fr.mael.jiwigo.ui.mainframe.MainFrame;
15
16/**
17   Copyright (c) 2010, Mael
18   All rights reserved.
19
20   Redistribution and use in source and binary forms, with or without
21   modification, are permitted provided that the following conditions are met:
22    * Redistributions of source code must retain the above copyright
23      notice, this list of conditions and the following disclaimer.
24    * Redistributions in binary form must reproduce the above copyright
25      notice, this list of conditions and the following disclaimer in the
26      documentation and/or other materials provided with the distribution.
27    * Neither the name of jiwigo nor the
28      names of its contributors may be used to endorse or promote products
29      derived from this software without specific prior written permission.
30
31   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
32   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
33   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
34   DISCLAIMED. IN NO EVENT SHALL Mael BE LIABLE FOR ANY
35   DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
36   (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
38   ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
40   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41   
42 * Main class
43 * @author mael
44 *
45 */
46public class Main {
47
48    /**
49     * Logger
50     */
51    public static final org.apache.commons.logging.Log LOG = org.apache.commons.logging.LogFactory.getLog(Main.class);
52    /**
53     * The login and session manager that allows to connect to
54     * the webservice and to query it
55     */
56    public static SessionManager sessionManager;
57
58    /**
59     *  the main window
60     */
61    private static MainFrame mainFrame;
62
63    public static void main(String[] args) {
64        try {
65            UIManager.setLookAndFeel(new NimbusLookAndFeel());
66        } catch (Exception e) {
67        }
68        File dossierConfig = new File(System.getProperty("user.home") + "/.jiwigo");
69        if (!dossierConfig.exists()) {
70            dossierConfig.mkdir();
71        }
72        try {
73            PreferencesManagement.creerFichierParDefaut();
74            //dialog de connexion
75            ConnexionDialog dialog = new ConnexionDialog();
76            dialog.showDialog();
77        } catch (IOException e) {
78            LOG.error(Outil.getStackTrace(e));
79        }
80
81    }
82
83    public static void showFrame() {
84
85        if (mainFrame == null) {
86            mainFrame = MainFrame.getInstance();
87        }
88        if (!mainFrame.isVisible()) {
89            mainFrame.showUi();
90        }
91    }
92}
Note: See TracBrowser for help on using the repository browser.