239 clear.setToolTipText(GenericGUIUtilities.prettifyMenuLabel( |
239 clear.setToolTipText(GenericGUIUtilities.prettifyMenuLabel( |
240 jEdit.getProperty("remove-all-markers.label"))); |
240 jEdit.getProperty("remove-all-markers.label"))); |
241 clear.addActionListener(this); |
241 clear.addActionListener(this); |
242 diff -ru jedit5.7.0/jEdit/org/gjt/sp/jedit/jedit_gui.props jedit5.7.0-patched/jEdit/org/gjt/sp/jedit/jedit_gui.props |
242 diff -ru jedit5.7.0/jEdit/org/gjt/sp/jedit/jedit_gui.props jedit5.7.0-patched/jEdit/org/gjt/sp/jedit/jedit_gui.props |
243 --- jedit5.7.0/jEdit/org/gjt/sp/jedit/jedit_gui.props 2024-08-03 19:53:20.000000000 +0200 |
243 --- jedit5.7.0/jEdit/org/gjt/sp/jedit/jedit_gui.props 2024-08-03 19:53:20.000000000 +0200 |
244 +++ jedit5.7.0-patched/jEdit/org/gjt/sp/jedit/jedit_gui.props 2025-04-17 00:11:31.583536114 +0200 |
244 +++ jedit5.7.0-patched/jEdit/org/gjt/sp/jedit/jedit_gui.props 2025-05-20 13:46:50.541586193 +0200 |
245 @@ -8,13 +8,15 @@ |
245 @@ -8,13 +8,15 @@ |
246 ### |
246 ### |
247 |
247 |
248 #{{{ Common icons |
248 #{{{ Common icons |
249 -common.add.icon=22x22/actions/list-add.png |
249 -common.add.icon=22x22/actions/list-add.png |
261 +navigate-backwards.icon=idea-icons/expui/general/chevronLeft.svg?scale=1.2 |
261 +navigate-backwards.icon=idea-icons/expui/general/chevronLeft.svg?scale=1.2 |
262 +navigate-forwards.icon=idea-icons/expui/general/chevronRight.svg?scale=1.2 |
262 +navigate-forwards.icon=idea-icons/expui/general/chevronRight.svg?scale=1.2 |
263 |
263 |
264 #}}} |
264 #}}} |
265 |
265 |
266 @@ -28,7 +30,7 @@ |
266 @@ -28,8 +30,8 @@ |
267 defer=false |
267 defer=false |
268 startup=true |
268 startup=true |
269 |
269 |
270 -broken-image.icon=22x22/status/image-missing.png |
270 -broken-image.icon=22x22/status/image-missing.png |
|
271 -dropdown-arrow.icon=ToolbarMenu.gif |
271 +broken-image.icon=32x32/status/image-missing.svg?scale=0.7 |
272 +broken-image.icon=32x32/status/image-missing.svg?scale=0.7 |
272 dropdown-arrow.icon=ToolbarMenu.gif |
273 +dropdown-arrow.icon=idea-icons/general/buttonDropTriangle.svg |
273 #}}} |
274 #}}} |
274 |
275 |
|
276 #{{{ Tool bar |
275 @@ -39,68 +41,69 @@ |
277 @@ -39,68 +41,69 @@ |
276 buffer-options combined-options - \ |
278 buffer-options combined-options - \ |
277 plugin-manager - help |
279 plugin-manager - help |
278 |
280 |
279 -new-file.icon=22x22/actions/document-new.png |
281 -new-file.icon=22x22/actions/document-new.png |
1087 - SyntaxStyle style = SyntaxUtilities.parseStyle(jEdit.getProperty("view.style.invalid"), "Dialog", 12, true); |
1089 - SyntaxStyle style = SyntaxUtilities.parseStyle(jEdit.getProperty("view.style.invalid"), "Dialog", 12, true); |
1088 + SyntaxStyle style = SyntaxUtilities.parseStyle(jEdit.getThemeProperty("view.style.invalid"), "Dialog", 12, true); |
1090 + SyntaxStyle style = SyntaxUtilities.parseStyle(jEdit.getThemeProperty("view.style.invalid"), "Dialog", 12, true); |
1089 errorBackground = style.getBackgroundColor(); |
1091 errorBackground = style.getBackgroundColor(); |
1090 errorForeground = style.getForegroundColor(); |
1092 errorForeground = style.getForegroundColor(); |
1091 defaultBackground = find.getBackground(); |
1093 defaultBackground = find.getBackground(); |
|
1094 diff -ru jedit5.7.0/jEdit/org/gjt/sp/jedit/help/HistoryButton.java jedit5.7.0-patched/jEdit/org/gjt/sp/jedit/help/HistoryButton.java |
|
1095 --- jedit5.7.0/jEdit/org/gjt/sp/jedit/help/HistoryButton.java 2024-08-03 19:53:20.000000000 +0200 |
|
1096 +++ jedit5.7.0-patched/jEdit/org/gjt/sp/jedit/help/HistoryButton.java 2025-05-20 15:21:59.692613480 +0200 |
|
1097 @@ -61,7 +61,7 @@ |
|
1098 ? "helpviewer.back.label" |
|
1099 : "helpviewer.forward.label")); |
|
1100 Box box = new Box(BoxLayout.X_AXIS); |
|
1101 - drop_button = new RolloverButton(GUIUtilities.loadIcon(jEdit.getProperty("dropdown-arrow.icon"))); |
|
1102 + drop_button = new RolloverButton(GUIUtilities.loadIcon(jEdit.getThemeProperty("dropdown-arrow.icon"))); |
|
1103 drop_button.addActionListener(new DropActionHandler()); |
|
1104 box.add(arrow_button); |
|
1105 box.add(drop_button); |