mirror of https://github.com/encounter/objdiff.git
Display decoded rlwinm info to hover tooltip (#141)
* Fix missing dependency feature for objdiff-gui * Update .gitignore * Display decoded rlwinm info to hover tooltip * Remove trailing newline when displaying decoded rlwinm info * Change variable name * Also update variable name in rlwinm.rs
This commit is contained in:
parent
7aa878b48e
commit
304df96411
|
@ -18,4 +18,4 @@ android.keystore
|
||||||
*.frag
|
*.frag
|
||||||
*.vert
|
*.vert
|
||||||
*.metal
|
*.metal
|
||||||
.vscode/launch.json
|
.vscode/
|
||||||
|
|
|
@ -95,7 +95,7 @@ exec = "0.3"
|
||||||
|
|
||||||
# native:
|
# native:
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
tracing-subscriber = "0.3"
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
|
|
||||||
# web:
|
# web:
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
|
|
|
@ -149,6 +149,10 @@ fn ins_hover_ui(
|
||||||
ui.colored_label(appearance.highlight_color, "Extern".to_string());
|
ui.colored_label(appearance.highlight_color, "Extern".to_string());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let Some(decoded) = rlwinmdec::decode(&ins.formatted) {
|
||||||
|
ui.colored_label(appearance.highlight_color, decoded.trim());
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,13 +16,13 @@ pub fn rlwinm_decode_window(
|
||||||
egui::Window::new("Rlwinm Decoder").open(show).show(ctx, |ui| {
|
egui::Window::new("Rlwinm Decoder").open(show).show(ctx, |ui| {
|
||||||
ui.text_edit_singleline(&mut state.text);
|
ui.text_edit_singleline(&mut state.text);
|
||||||
ui.add_space(10.0);
|
ui.add_space(10.0);
|
||||||
if let Some(demangled) = rlwinmdec::decode(&state.text) {
|
if let Some(decoded) = rlwinmdec::decode(&state.text) {
|
||||||
ui.scope(|ui| {
|
ui.scope(|ui| {
|
||||||
ui.style_mut().override_text_style = Some(TextStyle::Monospace);
|
ui.style_mut().override_text_style = Some(TextStyle::Monospace);
|
||||||
ui.colored_label(appearance.replace_color, &demangled);
|
ui.colored_label(appearance.replace_color, decoded.trim());
|
||||||
});
|
});
|
||||||
if ui.button("Copy").clicked() {
|
if ui.button("Copy").clicked() {
|
||||||
ui.output_mut(|output| output.copied_text = demangled);
|
ui.output_mut(|output| output.copied_text = decoded);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ui.scope(|ui| {
|
ui.scope(|ui| {
|
||||||
|
|
Loading…
Reference in New Issue