mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:52:45 +00:00 
			
		
		
		
	 18785ba5c3
			
		
	
	
		18785ba5c3
		
	
	
	
	
		
			
			GAbstractView should be able to manage the high-level editing logic, as long as subclasses implement content_rect(GModelIndex) so we know where to put the editing widgets. :^)
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <LibGUI/GModel.h>
 | |
| #include <LibGUI/GScrollableWidget.h>
 | |
| #include <AK/Function.h>
 | |
| 
 | |
| class GTextBox;
 | |
| 
 | |
| class GAbstractView : public GScrollableWidget {
 | |
|     friend class GModel;
 | |
| public:
 | |
|     explicit GAbstractView(GWidget* parent);
 | |
|     virtual ~GAbstractView() override;
 | |
| 
 | |
|     void set_model(RetainPtr<GModel>&&);
 | |
|     GModel* model() { return m_model.ptr(); }
 | |
|     const GModel* model() const { return m_model.ptr(); }
 | |
| 
 | |
|     bool is_editable() const { return m_editable; }
 | |
|     void set_editable(bool editable) { m_editable = editable; }
 | |
| 
 | |
|     virtual bool accepts_focus() const override { return true; }
 | |
|     virtual void did_update_model();
 | |
|     virtual void did_update_selection();
 | |
| 
 | |
|     virtual Rect content_rect(const GModelIndex&) const { return { }; }
 | |
|     void begin_editing(const GModelIndex&);
 | |
|     void stop_editing();
 | |
| 
 | |
|     Function<void(const GModelNotification&)> on_model_notification;
 | |
| 
 | |
|     virtual const char* class_name() const override { return "GAbstractView"; }
 | |
| 
 | |
| protected:
 | |
|     virtual void model_notification(const GModelNotification&);
 | |
|     virtual void did_scroll() override;
 | |
|     void update_edit_widget_position();
 | |
| 
 | |
|     bool m_editable { false };
 | |
|     GModelIndex m_edit_index;
 | |
|     GTextBox* m_edit_widget { nullptr };
 | |
|     Rect m_edit_widget_content_rect;
 | |
| 
 | |
| private:
 | |
|     RetainPtr<GModel> m_model;
 | |
| };
 |