Changeset - r11029:bf0816bd43ea
[Not reviewed]
master
0 1 0
rubidium - 16 years ago 2009-02-06 10:38:57
rubidium@openttd.org
(svn r15369) -Codechange: generalise the GUIList a bit so peter can write filters for cargo type, speed and mass ;)
1 file changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/sortlist_type.h
Show inline comments
 
@@ -29,17 +29,17 @@ struct Listing {
 
};
 
struct Filtering {
 
	bool state;    ///< Filter on/off
 
	byte criteria; ///< Filtering criteria
 
};
 

	
 
template <typename T, typename F = char>
 
template <typename T, typename F = const char*>
 
class GUIList : public SmallVector<T, 32> {
 
public:
 
	typedef int CDECL SortFunction(const T*, const T*);
 
	typedef bool CDECL FilterFunction(const T*, const F*);
 
	typedef bool CDECL FilterFunction(const T*, F);
 

	
 
protected:
 
	SortFunction * const *sort_func_list;     ///< the sort criteria functions
 
	FilterFunction * const *filter_func_list; ///< the filter criteria functions
 
	SortListFlags flags;                      ///< used to control sorting/resorting/etc.
 
	uint8 sort_type;                          ///< what criteria to sort on
 
@@ -313,13 +313,13 @@ public:
 
	 * Filter the list.
 
	 *
 
	 * @param decide The function to decide about an item
 
	 * @param filter_data Additional data passed to the filter function
 
	 * @return true if the list has been altered by filtering
 
	 */
 
	bool Filter(FilterFunction *decide, const F *filter_data)
 
	bool Filter(FilterFunction *decide, F filter_data)
 
	{
 
		/* Do not filter if the filter bit is not set */
 
		if (!HASBITS(this->flags, VL_FILTER)) return false;
 

	
 
		for (uint iter = 0; iter < this->items;) {
 
			T *item = &this->data[iter];
 
@@ -346,13 +346,13 @@ public:
 
	/**
 
	 * Filter the data with the currently selected filter.
 
	 *
 
	 * @param filter_data Additional data passed to the filter function.
 
	 * @return true if the list has been altered by filtering
 
	 */
 
	bool Filter(const F *filter_data)
 
	bool Filter(F filter_data)
 
	{
 
		if (this->filter_func_list == NULL) return false;
 
		return this->Filter(this->filter_func_list[this->filter_type], filter_data);
 
	}
 

	
 
	/**
0 comments (0 inline, 0 general)