 c98e54da10
			
		
	
	
		c98e54da10
		
			
		
	
	
	
	
		
			
			* nfc: fix spaces between lines in delete and info scenes * gui widget: add extern c * ibutton: rework gui in info and delete scenes * Loader, Desktop: fix debug apps and plugins start from cli, fix deadlock in archive Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			341 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			341 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| #include "ibutton-scene-generic.h"
 | |
| 
 | |
| class iButtonSceneInfo : public iButtonScene {
 | |
| public:
 | |
|     void on_enter(iButtonApp* app) final;
 | |
|     bool on_event(iButtonApp* app, iButtonEvent* event) final;
 | |
|     void on_exit(iButtonApp* app) final;
 | |
| 
 | |
| private:
 | |
|     void widget_callback(GuiButtonType result, InputType type, void* context);
 | |
| }; |