class toResultFilter

Baseclass for filters to apply to the toResultView to filter out rows that you don't want to add as items to the list. More...

Contains pure virtuals
Definition#include <toresultview.h>
List of all Methods
Annotated List
Files
Globals
Hierarchy
Index

Public Methods


Detailed Description

Baseclass for filters to apply to the toResultView to filter out rows that you don't want to add as items to the list.

 toResultFilter ()

toResultFilter

 ~toResultFilter ()

~toResultFilter

[virtual]

bool  check (const QListViewItem *item)

check

[pure virtual]

This function can inspect the item to be added and decide if it is valid for adding or not.

Parameters:
itemItem to inspect.

Returns: If false is returned the item isn't added.

toResultFilterclone (void)

clone

[pure virtual]

Create a copy of this filter.

Returns: A newly created copy of this filter.

void  exportData (std::map<QCString,QString> &data,const QCString &prefix)

exportData

[virtual]

Export data to a map.

Parameters:
dataA map that can be used to recreate the data of a chart.
prefixPrefix to add to the map.

void  importData (std::map<QCString,QString> &data,const QCString &prefix)

importData

[virtual]

Import data

Parameters:
dataData to read from a map.
prefixPrefix to read data from.