| 
									
										
										
										
											2020-01-18 09:38:21 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  * modification, are permitted provided that the following conditions are met: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 1. Redistributions of source code must retain the above copyright notice, this | 
					
						
							|  |  |  |  *    list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 2. Redistributions in binary form must reproduce the above copyright notice, | 
					
						
							|  |  |  |  *    this list of conditions and the following disclaimer in the documentation | 
					
						
							|  |  |  |  *    and/or other materials provided with the distribution. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | 
					
						
							|  |  |  |  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
					
						
							|  |  |  |  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
					
						
							|  |  |  |  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | 
					
						
							|  |  |  |  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
					
						
							|  |  |  |  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | 
					
						
							|  |  |  |  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | 
					
						
							|  |  |  |  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
					
						
							|  |  |  |  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
					
						
							|  |  |  |  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-06 20:33:02 +01:00
										 |  |  | #include <LibGUI/Model.h>
 | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 15:07:41 +01:00
										 |  |  | namespace GUI { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 15:58:47 +02:00
										 |  |  | class SortingProxyModel final | 
					
						
							|  |  |  |     : public Model | 
					
						
							| 
									
										
										
										
											2020-07-11 06:47:26 -06:00
										 |  |  |     , private ModelClient { | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2020-08-13 15:58:47 +02:00
										 |  |  |     static NonnullRefPtr<SortingProxyModel> create(NonnullRefPtr<Model> source) { return adopt(*new SortingProxyModel(move(source))); } | 
					
						
							| 
									
										
										
										
											2020-02-02 15:07:41 +01:00
										 |  |  |     virtual ~SortingProxyModel() override; | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 15:07:41 +01:00
										 |  |  |     virtual int row_count(const ModelIndex& = ModelIndex()) const override; | 
					
						
							|  |  |  |     virtual int column_count(const ModelIndex& = ModelIndex()) const override; | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  |     virtual String column_name(int) const override; | 
					
						
							| 
									
										
										
										
											2020-02-02 15:07:41 +01:00
										 |  |  |     virtual Variant data(const ModelIndex&, Role = Role::Display) const override; | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  |     virtual void update() override; | 
					
						
							| 
									
										
										
										
											2020-01-22 21:15:46 +03:00
										 |  |  |     virtual StringView drag_data_type() const override; | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtual int key_column() const override { return m_key_column; } | 
					
						
							| 
									
										
										
										
											2020-02-02 15:07:41 +01:00
										 |  |  |     virtual SortOrder sort_order() const override { return m_sort_order; } | 
					
						
							|  |  |  |     virtual void set_key_column_and_sort_order(int, SortOrder) override; | 
					
						
							| 
									
										
										
										
											2020-05-21 19:45:15 +02:00
										 |  |  |     virtual bool is_column_sortable(int column_index) const override; | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 15:58:47 +02:00
										 |  |  |     ModelIndex map_to_source(const ModelIndex&) const; | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-04 18:40:21 +02:00
										 |  |  |     Role sort_role() const { return m_sort_role; } | 
					
						
							|  |  |  |     void set_sort_role(Role role) { m_sort_role = role; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2020-08-13 15:58:47 +02:00
										 |  |  |     explicit SortingProxyModel(NonnullRefPtr<Model> source); | 
					
						
							| 
									
										
										
										
											2019-03-20 03:27:07 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 20:06:14 +02:00
										 |  |  |     // ^ModelClient
 | 
					
						
							|  |  |  |     virtual void model_did_update(unsigned) override; | 
					
						
							| 
									
										
										
										
											2020-07-11 06:47:26 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 15:58:47 +02:00
										 |  |  |     Model& source() { return *m_source; } | 
					
						
							|  |  |  |     const Model& source() const { return *m_source; } | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-11 06:47:26 -06:00
										 |  |  |     void resort(unsigned flags = Model::UpdateFlag::DontInvalidateIndexes); | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-11 19:11:25 +03:00
										 |  |  |     void set_sorting_case_sensitive(bool b) { m_sorting_case_sensitive = b; } | 
					
						
							|  |  |  |     bool is_sorting_case_sensitive() { return m_sorting_case_sensitive; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 15:58:47 +02:00
										 |  |  |     NonnullRefPtr<Model> m_source; | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  |     Vector<int> m_row_mappings; | 
					
						
							|  |  |  |     int m_key_column { -1 }; | 
					
						
							| 
									
										
										
										
											2020-02-02 15:07:41 +01:00
										 |  |  |     SortOrder m_sort_order { SortOrder::Ascending }; | 
					
						
							| 
									
										
										
										
											2020-07-04 18:40:21 +02:00
										 |  |  |     Role m_sort_role { Role::Sort }; | 
					
						
							| 
									
										
										
										
											2019-08-11 19:11:25 +03:00
										 |  |  |     bool m_sorting_case_sensitive { false }; | 
					
						
							| 
									
										
										
										
											2019-03-09 13:33:52 +01:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2020-02-02 15:07:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | } |