1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/*
* Copyright 2011 gitblit.com.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.gitblit.client;
import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.Menu;
import java.awt.MenuBar;
import java.awt.MenuItem;
import java.awt.MenuShortcut;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.io.IOException;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import com.gitblit.Constants;
import com.gitblit.utils.StringUtils;
public class GitblitClient extends JFrame {
private static final long serialVersionUID = 1L;
private JTabbedPane serverTabs;
private GitblitClient() {
super();
}
private void initialize() {
setupMenu();
setContentPane(getCenterPanel());
setTitle("Gitblit Client v" + Constants.VERSION + " (" + Constants.VERSION_DATE + ")");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(800, 600);
setLocationRelativeTo(null);
}
private void setupMenu() {
MenuBar menuBar = new MenuBar();
setMenuBar(menuBar);
Menu serversMenu = new Menu("Servers");
menuBar.add(serversMenu);
MenuItem login = new MenuItem("Login...", new MenuShortcut(KeyEvent.VK_L, false));
login.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
String url = JOptionPane.showInputDialog(GitblitClient.this,
"Please enter Gitblit server URL", "https://localhost:8443");
if (StringUtils.isEmpty(url)) {
return;
}
login(url, "admin", "admin".toCharArray());
}
});
serversMenu.add(login);
}
private JPanel getCenterPanel() {
serverTabs = new JTabbedPane(JTabbedPane.TOP);
JPanel panel = new JPanel(new BorderLayout());
panel.add(serverTabs, BorderLayout.CENTER);
return panel;
}
private void login(String url, String account, char[] password) {
try {
GitblitPanel panel = new GitblitPanel(url, account, password);
panel.login();
serverTabs.addTab(url.substring(url.indexOf("//") + 2), panel);
serverTabs.setSelectedIndex(serverTabs.getTabCount() - 1);
} catch (IOException e) {
JOptionPane.showMessageDialog(GitblitClient.this, e.getMessage(), "Error",
JOptionPane.ERROR_MESSAGE);
}
}
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
GitblitClient frame = new GitblitClient();
frame.initialize();
frame.setVisible(true);
}
});
}
}
|