generated from emilk/eframe_template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
710 additions
and
176 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
#![allow(unused)] | ||
pub(crate) mod main_frame; | ||
pub(crate) mod meters; | ||
pub(crate) mod oscilloscope_frame; | ||
pub(crate) mod peak_frame; | ||
pub(crate) mod resize; | ||
pub(crate) mod setting_frame; | ||
pub(crate) mod stereogram_frame; | ||
pub(crate) mod waveform_frame; | ||
|
||
pub use main_frame::*; | ||
pub use meters::*; | ||
pub use oscilloscope_frame::*; | ||
pub use peak_frame::*; | ||
pub use resize::*; | ||
pub use setting_frame::*; | ||
pub use stereogram_frame::*; | ||
pub use waveform_frame::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
use crate::NanometersApp; | ||
use egui::*; | ||
|
||
impl NanometersApp { | ||
pub fn oscilloscope_frame(&mut self, rect: eframe::epaint::Rect, ui: &mut Ui) { | ||
ui.painter().rect_filled(rect, 0.0, self.setting.theme.bg); | ||
} | ||
} |
Oops, something went wrong.