Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
jadx
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
jadx
Commits
bcadc282
Commit
bcadc282
authored
Feb 17, 2019
by
Skylot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(gui): use system font as default instead bundled Hack (#442, #445)
parent
7e95758a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
10 deletions
+17
-10
JadxSettings.java
jadx-gui/src/main/java/jadx/gui/settings/JadxSettings.java
+14
-5
JadxSettingsWindow.java
...i/src/main/java/jadx/gui/settings/JadxSettingsWindow.java
+3
-1
MainWindow.java
jadx-gui/src/main/java/jadx/gui/ui/MainWindow.java
+0
-4
No files found.
jadx-gui/src/main/java/jadx/gui/settings/JadxSettings.java
View file @
bcadc282
...
...
@@ -10,6 +10,7 @@ import java.util.Map;
import
java.util.Set
;
import
org.fife.ui.rsyntaxtextarea.RSyntaxTextArea
;
import
org.jetbrains.annotations.Nullable
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
...
...
@@ -20,16 +21,14 @@ import jadx.gui.utils.LangLocale;
import
jadx.gui.utils.NLS
;
import
jadx.gui.utils.Utils
;
import
static
jadx
.
gui
.
utils
.
Utils
.
FONT_HACK
;
public
class
JadxSettings
extends
JadxCLIArgs
{
private
static
final
Logger
LOG
=
LoggerFactory
.
getLogger
(
JadxSettings
.
class
);
private
static
final
String
USER_HOME
=
System
.
getProperty
(
"user.home"
);
private
static
final
int
RECENT_FILES_COUNT
=
15
;
private
static
final
int
CURRENT_SETTINGS_VERSION
=
6
;
private
static
final
int
CURRENT_SETTINGS_VERSION
=
7
;
private
static
final
Font
DEFAULT_FONT
=
FONT_HACK
!=
null
?
FONT_HACK
:
new
RSyntaxTextArea
().
getFont
();
private
static
final
Font
DEFAULT_FONT
=
new
RSyntaxTextArea
().
getFont
();
static
final
Set
<
String
>
SKIP_FIELDS
=
new
HashSet
<>(
Arrays
.
asList
(
"files"
,
"input"
,
"outputDir"
,
"verbose"
,
"printHelp"
...
...
@@ -263,7 +262,11 @@ public class JadxSettings extends JadxCLIArgs {
return
Font
.
decode
(
fontStr
);
}
public
void
setFont
(
Font
font
)
{
public
void
setFont
(
@Nullable
Font
font
)
{
if
(
font
==
null
)
{
this
.
fontStr
=
""
;
return
;
}
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
font
.
getFontName
());
String
fontStyleName
=
Utils
.
getFontStyleName
(
font
.
getStyle
()).
replaceAll
(
" "
,
""
);
...
...
@@ -314,6 +317,12 @@ public class JadxSettings extends JadxCLIArgs {
}
if
(
fromVersion
==
5
)
{
setRespectBytecodeAccessModifiers
(
false
);
fromVersion
++;
}
if
(
fromVersion
==
6
)
{
if
(
getFont
().
getFontName
().
equals
(
"Hack Regular"
))
{
setFont
(
null
);
}
}
settingsVersion
=
CURRENT_SETTINGS_VERSION
;
sync
();
...
...
jadx-gui/src/main/java/jadx/gui/settings/JadxSettingsWindow.java
View file @
bcadc282
...
...
@@ -74,6 +74,7 @@ public class JadxSettingsWindow extends JDialog {
JButton
cancelButton
=
new
JButton
(
NLS
.
str
(
"preferences.cancel"
));
cancelButton
.
addActionListener
(
event
->
{
JadxSettingsAdapter
.
fill
(
settings
,
startSettings
);
mainWindow
.
loadSettings
();
dispose
();
});
...
...
@@ -87,6 +88,8 @@ public class JadxSettingsWindow extends JDialog {
if
(
res
==
JOptionPane
.
YES_OPTION
)
{
String
defaults
=
JadxSettingsAdapter
.
makeString
(
JadxSettings
.
makeDefault
());
JadxSettingsAdapter
.
fill
(
settings
,
defaults
);
mainWindow
.
loadSettings
();
needReload
();
getContentPane
().
removeAll
();
initUI
();
pack
();
...
...
@@ -197,7 +200,6 @@ public class JadxSettingsWindow extends JDialog {
Font
font
=
fontChooser
.
getSelectedFont
();
LOG
.
debug
(
"Selected Font: {}"
,
font
);
settings
.
setFont
(
font
);
mainWindow
.
updateFont
(
font
);
mainWindow
.
loadSettings
();
fontLabel
.
setText
(
getFontLabelStr
());
}
...
...
jadx-gui/src/main/java/jadx/gui/ui/MainWindow.java
View file @
bcadc282
...
...
@@ -652,10 +652,6 @@ public class MainWindow extends JFrame {
setSize
((
int
)
(
w
*
WINDOW_RATIO
),
(
int
)
(
h
*
WINDOW_RATIO
));
}
public
void
updateFont
(
Font
font
)
{
setFont
(
font
);
}
public
static
void
registerBundledFonts
()
{
GraphicsEnvironment
grEnv
=
GraphicsEnvironment
.
getLocalGraphicsEnvironment
();
if
(
Utils
.
FONT_HACK
!=
null
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment