27 #include "../../../attributefill/qt/VectorToRasterDialog.h" 
   28 #include "../../af/ApplicationController.h" 
   29 #include "../../af/events/LayerEvents.h" 
   30 #include "../../af/Project.h" 
   35 #include <QMessageBox> 
   43   createAction(tr(
"Vector to Raster...").toStdString(), 
"attributefill-vector2raster-icon");
 
   44   m_action->setObjectName(
"Processing.Attribute Fill.Vector to Raster");
 
   64   if(dlg.exec() != QDialog::Accepted)
 
   72   int reply = QMessageBox::question(0, tr(
"Attribute Fill Result"), tr(
"The operation was concluded successfully. Would you like to add the layer to the project?"), QMessageBox::No, QMessageBox::Yes);
 
   74   if(prj && reply == QMessageBox::Yes)
 
This event signals that a new layer was created. 
 
virtual ~VectorToRasterAction()
 
This file defines the VectorToRaster class. 
 
static ApplicationController & getInstance()
It returns a reference to the singleton instance. 
 
This is an abstract class used to register actions into Attribute Fill pluging. 
 
std::list< te::map::AbstractLayerPtr > getSingleLayers(bool invalid=true)
It gets all the single layers of the project. 
 
te::map::AbstractLayerPtr getLayer()
Get the generated layer. 
 
VectorToRasterAction(QMenu *menu)
 
virtual void onActionActivated(bool checked)
 
void setLayers(std::list< te::map::AbstractLayerPtr > layers)
Set the layer that can be used. 
 
This class models the concept of a project for the TerraLib Application Framework. 
 
QAction * m_action
Action used to call the process. 
 
boost::intrusive_ptr< AbstractLayer > AbstractLayerPtr
 
void createAction(std::string name, std::string pixmap="")
Create and set the actions parameters.