Skip to content

Commit 0a50618

Browse files
committed
added application name in macOs
1 parent 4d8b089 commit 0a50618

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed
File renamed without changes.

src/App.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
21
import javax.swing.*;
3-
42
import main.java.visual_components.MainFrame;
5-
6-
73
public class App {
84

9-
105
public static void main(String[] args) throws Exception {
6+
7+
System.setProperty("apple.laf.useScreenMenuBar", "true");
8+
System.setProperty("apple.awt.application.name", "Java-Outliner");
9+
System.setProperty( "apple.awt.application.appearance", "system" );
10+
1111
Runnable guiCreator = new Runnable(){
1212
public void run(){
1313
new MainFrame();

src/main/java/visual_components/MainFrame.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class MainFrame {
4545
JMenuItem addNewHeaderItem;
4646
public static final Color WINDOW_BACKGROUND_COLOR = new Color(255, 255, 255);
4747
public static final Color BUTTON_BACKGROUND_COLOR = new Color(165, 165, 165);
48-
static final String ICONPATH = "src" + File.separator + "main" + File.separator + "resources" + File.separator
48+
public static final String ICONPATH = "src" + File.separator + "main" + File.separator + "resources" + File.separator
4949
+ "appIcon.png";
5050

5151
ToolBoxNewFileAction newFileAction;
@@ -76,6 +76,8 @@ public JFrame getWindow() {
7676

7777
private void initComponents() {
7878

79+
80+
7981
try {
8082
// Set System L&F
8183
UIManager.setLookAndFeel(
@@ -176,7 +178,7 @@ private void setUpMasterContainer() {
176178
* Setup the Window
177179
*/
178180
private void setUpWindow() {
179-
window = new JFrame("Outliner");
181+
window = new JFrame("Java-Outliner");
180182
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
181183
window.setSize(800, 400);
182184
window.setVisible(true);
@@ -322,8 +324,5 @@ public void setUpDummyHeaderComponentActions(){
322324
deleteItem.setAccelerator(InteractionMapping.DELETE.getKeystroke());
323325
deleteItem.setEnabled(false);
324326
contextMenu.add(deleteItem);
325-
326-
327-
328327
}
329328
}

0 commit comments

Comments
 (0)