1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
/*=========================================================================
Program: ParaView
Module: vtkSpreadSheetView.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkSpreadSheetView
*
* vtkSpreadSheetView is a vtkPVView subclass for a view used to show any data
* as a spreadsheet. This view can only show one representation at a
* time. If more than one representation is added to this view, only the first
* visible representation will be shown.
*/
#ifndef vtkSpreadSheetView_h
#define vtkSpreadSheetView_h
#include "vtkPVClientServerCoreRenderingModule.h" //needed for exports
#include "vtkPVView.h"
#include <map> // For Column Visibilities
class vtkCSVExporter;
class vtkClientServerMoveData;
class vtkMarkSelectedRows;
class vtkPassArrays;
class vtkReductionFilter;
class vtkSortedTableStreamer;
class vtkTable;
class vtkVariant;
class VTKPVCLIENTSERVERCORERENDERING_EXPORT vtkSpreadSheetView : public vtkPVView
{
public:
static vtkSpreadSheetView* New();
vtkTypeMacro(vtkSpreadSheetView, vtkPVView);
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
/**
* Triggers a high-resolution render.
* \note CallOnAllProcesses
*/
virtual void StillRender() VTK_OVERRIDE { this->StreamToClient(); }
/**
* Triggers a interactive render. Based on the settings on the view, this may
* result in a low-resolution rendering or a simplified geometry rendering.
* \note CallOnAllProcesses
*/
virtual void InteractiveRender() VTK_OVERRIDE { this->StreamToClient(); }
/**
* Overridden to identify and locate the active-representation.
*/
virtual void Update() VTK_OVERRIDE;
//@{
/**
* Get/Set if the view shows extracted selection only or the actual data.
* false by default.
* \note CallOnAllProcesses
*/
void SetShowExtractedSelection(bool);
vtkBooleanMacro(ShowExtractedSelection, bool);
vtkGetMacro(ShowExtractedSelection, bool);
//@}
//@{
/**
* Allow user to enable/disable cell connectivity generation in the datamodel
*/
vtkSetMacro(GenerateCellConnectivity, bool);
vtkGetMacro(GenerateCellConnectivity, bool);
vtkBooleanMacro(GenerateCellConnectivity, bool);
//@}
//@{
/**
* Manage column visibilities, used only for export
*/
void SetColumnVisibility(int fieldAssociation, const char* column, int visibility);
void ClearColumnVisibilities();
//@}
/**
* Get the number of columns.
* \note CallOnClient
*/
vtkIdType GetNumberOfColumns();
/**
* Get the number of rows.
* \note CallOnClient
*/
vtkIdType GetNumberOfRows();
/**
* Returns the name for the column.
* \note CallOnClient
*/
const char* GetColumnName(vtkIdType index);
//@{
/**
* Returns the value at given location. This may result in collective
* operations is data is not available locally. This method can only be called
* on the CLIENT process for now.
* \note CallOnClient
*/
vtkVariant GetValue(vtkIdType row, vtkIdType col);
vtkVariant GetValueByName(vtkIdType row, const char* columnName);
//@}
/**
* Returns true if the row is selected.
*/
bool IsRowSelected(vtkIdType row);
/**
* Returns true is the data for the particular row is locally available.
*/
bool IsAvailable(vtkIdType row);
//***************************************************************************
// Forwarded to vtkSortedTableStreamer.
/**
* Get/Set the column name to sort by.
* \note CallOnAllProcesses
*/
void SetColumnNameToSort(const char*);
void SetColumnNameToSort() { this->SetColumnNameToSort(NULL); }
/**
* Get/Set the component to sort with. Use -1 (default) for magnitude.
* \note CallOnAllProcesses
*/
void SetComponentToSort(int val);
/**
* Get/Set whether the sort order must be Max to Min rather than Min to Max.
* \note CallOnAllProcesses
*/
void SetInvertSortOrder(bool);
/**
* Set the block size
* \note CallOnAllProcesses
*/
void SetBlockSize(vtkIdType val);
/**
* Export the contents of this view using the exporter.
*/
bool Export(vtkCSVExporter* exporter);
/**
* Allow user to clear the cache if he needs to.
*/
void ClearCache();
// INTERNAL METHOD. Don't call directly.
vtkTable* FetchBlockCallback(vtkIdType blockindex, bool filterColumnForExport = false);
protected:
vtkSpreadSheetView();
~vtkSpreadSheetView();
/**
* On render streams all the data from the processes to the client.
* Returns 0 on failure.
* Note: Was removed from update because you can't call update()
* while in an update
*/
int StreamToClient();
void OnRepresentationUpdated();
vtkTable* FetchBlock(vtkIdType blockindex, bool filterColumnForExport = false);
bool ShowExtractedSelection;
bool GenerateCellConnectivity;
vtkSortedTableStreamer* TableStreamer;
vtkMarkSelectedRows* TableSelectionMarker;
vtkReductionFilter* ReductionFilter;
vtkClientServerMoveData* DeliveryFilter;
vtkPassArrays* PassFilter;
vtkIdType NumberOfRows;
enum
{
FETCH_BLOCK_TAG = 394732
};
private:
vtkSpreadSheetView(const vtkSpreadSheetView&) VTK_DELETE_FUNCTION;
void operator=(const vtkSpreadSheetView&) VTK_DELETE_FUNCTION;
class vtkInternals;
friend class vtkInternals;
vtkInternals* Internals;
std::map<std::pair<int, std::string>, int> ColumnVisibilities;
bool SomethingUpdated;
unsigned long RMICallbackTag;
};
#endif
|