#ifndef OPENCS_VIEW_PAGEDWORLDSPACEWIDGET_H #define OPENCS_VIEW_PAGEDWORLDSPACEWIDGET_H #include "worldspacewidget.hpp" namespace CSVRender { class PagedWorldspaceWidget : public WorldspaceWidget { Q_OBJECT std::pair mMin; std::pair mMax; public: PagedWorldspaceWidget (QWidget *parent); ///< \note Sets the cell area selection to an invalid value to indicate that currently /// no cells are displayed. The cells to be displayed will be specified later through /// hint system. virtual void useViewHint (const std::string& hint); void setCellIndex (const std::pair& min, const std::pair& max); signals: void cellIndexChanged (const std::pair& min, const std::pair& max); }; } #endif