QGIS/plugins/qgisplugintoolbar.h
gsherman 491ed05dd9 mods to plugin api
git-svn-id: http://svn.osgeo.org/qgis/trunk@140 c8812cc2-4d05-0410-92ff-de0c093fc19c
2002-10-14 16:32:21 +00:00

26 lines
581 B
C++

#ifndef QGISPLUGINTOOLBAR_H
#define QGISPLUGINTOOLBAR_H
#include <map>
#include "qgispluginguielement"
/*! \class QgisPluginToolbar
* \brief Class to define a plugin toolbar
*
*
*
*/
class QgisPluginToolbar : public QgisPluginGuiElement {
public:
//! Constructor
QgisPluginToolbar();
//! Type of element (see ELEMENTS enum in qgisplugin.h)
QGIS_GUI_TYPE type();
//! destructor
virtual ~QgisPluginToolbar();
private:
//! Map to define slot called when a toolbar button is activated
std::map<QString toolName, QString toolSlot> toolSlots;
};
#endif // QGISPLUGINTOOLBAR_H