mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2025-01-09 07:29:25 +00:00
feat: add xvb simple & advanced submenus
This commit is contained in:
parent
41999f098f
commit
4ad48308e3
3 changed files with 78 additions and 43 deletions
|
@ -112,14 +112,17 @@ impl crate::app::App {
|
||||||
wants_input,
|
wants_input,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Tab::Xvb => self.xvb_run_actions(
|
Tab::Xvb => {
|
||||||
|
self.xvb_submenu(ui, size);
|
||||||
|
self.xvb_run_actions(
|
||||||
ui,
|
ui,
|
||||||
height,
|
height,
|
||||||
xvb_is_waiting,
|
xvb_is_waiting,
|
||||||
xvb_is_alive,
|
xvb_is_alive,
|
||||||
key,
|
key,
|
||||||
wants_input,
|
wants_input,
|
||||||
),
|
);
|
||||||
|
},
|
||||||
Tab::About => {}
|
Tab::About => {}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -584,6 +587,33 @@ impl crate::app::App {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn xvb_submenu(&mut self, ui: &mut Ui, size: Vec2) {
|
||||||
|
ui.group(|ui| {
|
||||||
|
let width = size.x / 1.5;
|
||||||
|
let size = vec2(width, size.y);
|
||||||
|
if ui
|
||||||
|
.add_sized(
|
||||||
|
size,
|
||||||
|
SelectableLabel::new(!self.state.xvb.simple, "Advanced"),
|
||||||
|
)
|
||||||
|
.clicked()
|
||||||
|
{
|
||||||
|
self.state.xvb.simple = false;
|
||||||
|
}
|
||||||
|
ui.separator();
|
||||||
|
if ui
|
||||||
|
.add_sized(
|
||||||
|
size,
|
||||||
|
SelectableLabel::new(self.state.xvb.simple, "Simple"),
|
||||||
|
)
|
||||||
|
.on_hover_text(XMRIG_SIMPLE)
|
||||||
|
.clicked()
|
||||||
|
{
|
||||||
|
self.state.xvb.simple = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn status_p2pool(state: ProcessState, ui: &mut Ui, size: Vec2) {
|
fn status_p2pool(state: ProcessState, ui: &mut Ui, size: Vec2) {
|
||||||
|
|
|
@ -117,6 +117,8 @@ impl crate::disk::state::Xvb {
|
||||||
ui.style_mut().spacing.icon_spacing = space_h;
|
ui.style_mut().spacing.icon_spacing = space_h;
|
||||||
|
|
||||||
|
|
||||||
|
if !self.simple {
|
||||||
|
|
||||||
ui.group(|ui| {
|
ui.group(|ui| {
|
||||||
ui.vertical_centered(|ui| {
|
ui.vertical_centered(|ui| {
|
||||||
ui.horizontal(|ui| {
|
ui.horizontal(|ui| {
|
||||||
|
@ -157,6 +159,8 @@ impl crate::disk::state::Xvb {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -253,6 +253,7 @@ pub enum XvbMode {
|
||||||
|
|
||||||
#[derive(Clone, Eq, PartialEq, Debug, Deserialize, Serialize, Default)]
|
#[derive(Clone, Eq, PartialEq, Debug, Deserialize, Serialize, Default)]
|
||||||
pub struct Xvb {
|
pub struct Xvb {
|
||||||
|
pub simple: bool,
|
||||||
pub token: String,
|
pub token: String,
|
||||||
pub mode: XvbMode,
|
pub mode: XvbMode,
|
||||||
pub amount: String
|
pub amount: String
|
||||||
|
|
Loading…
Reference in a new issue