Open5

eguiについての雑記

higumachanhigumachan

Responseに対してのcontext_menu で出来る

ui.label("Hello World").context_menu(|ui| {
    ...
});
higumachanhigumachan

egui上のselectionをクリップボードにコピーする方法

0.27の状態では、SelectionStateに自分でコピーを行うAPIは用意されていない。
ctx.inputのコピーインベントをフレームの中で生成すれば良さそう。

ctx.input_mut(|inp| {
    inp.events.push(Event::Copy);
})```