Giter VIP home page Giter VIP logo

Comments (3)

emilk avatar emilk commented on May 30, 2024

This is because the TextEdit gains focus as soon as the mouse pressed down on it, but the frame after the mouse button is still down, and now TextEdit treats it as a drag-to-select sort of situation.

Not sure how to proceed here

from egui.

abey79 avatar abey79 commented on May 30, 2024

I guess a workaround would then be a mini state machine to trigger select on the frame after gain_focus...

from egui.

abey79 avatar abey79 commented on May 30, 2024

This work-around sort-of-works. Nothing is selected so long as the mouse is down and the selection becomes correct on mouse release.

Some/all of these request repaint might be superfluous as mouse state change would trigger the draw anyways.

use eframe::egui;

fn main() -> Result<(), eframe::Error> {
    env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`).
    let options = eframe::NativeOptions {
        viewport: egui::ViewportBuilder::default().with_inner_size([320.0, 240.0]),
        ..Default::default()
    };
    eframe::run_native(
        "My egui App",
        options,
        Box::new(|cc| {
            // This gives us image support:
            egui_extras::install_image_loaders(&cc.egui_ctx);

            Box::<MyApp>::default()
        }),
    )
}

struct MyApp {
    name: String,
    focus_gained: bool,
}

impl Default for MyApp {
    fn default() -> Self {
        Self {
            name: "Arthur".to_owned(),
            focus_gained: false,
        }
    }
}

impl eframe::App for MyApp {
    fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) {
        egui::CentralPanel::default().show(ctx, |ui| {
            ui.heading("My egui Application");
            ui.horizontal(|ui| {
                ui.label("Your name: ");

                let mut output = egui::TextEdit::singleline(&mut self.name).show(ui);

                if output.response.gained_focus() {
                    self.focus_gained = true;
                    ctx.request_repaint();
                }

                if self.focus_gained {
                    // wait for the mouse to be released before selecting all
                    if ui.input(|i| !i.pointer.any_down()) {
                        self.focus_gained = false;

                        output.response.request_focus();
                        let min = egui::text::CCursor::new(0);
                        let max = egui::text::CCursor::new(self.name.len());
                        let new_range = egui::text::CCursorRange::two(min, max);
                        output.state.cursor.set_char_range(Some(new_range));
                        output.state.store(ui.ctx(), output.response.id);
                    } else {
                        ctx.request_repaint();
                    }
                }
            });
        });
    }
}

from egui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.