QGIS/plugins/spit/qgsspitplugin.cpp
mcoletti 2e54ed8648 - Promoted name, description, version, and type strings to QgisPlugin base
class.

- Type now a formal enumerated typedef

- Propogated changes forward to existing plug-ins


git-svn-id: http://svn.osgeo.org/qgis/trunk@994 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-08 23:50:05 +00:00

152 lines
4.2 KiB
C++

/***************************************************************************
qgsspitplugin.cpp
Shapefile to PostgreSQL Import Tool plugin
-------------------
begin : Jan 30, 2004
copyright : (C) 2004 by Gary E.Sherman
email : sherman at mrcc.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
/* $Id$ */
// includes
#include <iostream>
#include <vector>
#include "../../src/qgisapp.h"
#include <qtoolbar.h>
#include <qmenubar.h>
#include <qmessagebox.h>
#include <qpopupmenu.h>
#include <qlineedit.h>
#include <qaction.h>
#include <qapplication.h>
#include <qcursor.h>
#include "qgsspitplugin.h"
#include "qgsspit.h"
// xpm for creating the toolbar icon
#include "spiticon.xpm"
static const char * const ident_ = "$Id$";
static const char * const name_ = "SPIT";
static const char * const description_ = "Shapefile to PostgreSQL/PostGIS Import Tool";
static const char * const version_ = "Version 0.1";
static const QgisPlugin::PLUGINTYPE type_ = QgisPlugin::UI;
/**
* Constructor for the plugin. The plugin is passed a pointer to the main app
* and an interface object that provides access to exposed functions in QGIS.
* @param qgis Pointer to the QGIS main window
* @parma _qI Pointer to the QGIS interface object
*/
QgsSpitPlugin::QgsSpitPlugin(QgisApp * qgis, QgisIface * _qI)
: qgisMainWindow(qgis),
qI(_qI),
QgisPlugin(name_, description_, version_, type_ )
{
}
QgsSpitPlugin::~QgsSpitPlugin()
{
}
/*
* Initialize the GUI interface for the plugin
*/
void QgsSpitPlugin::initGui()
{
// add a menu with 2 items
QPopupMenu *pluginMenu = new QPopupMenu(qgisMainWindow);
pluginMenu->insertItem("&Import Shapefiles to PostgreSQL", this, SLOT(spit()));
// pluginMenu->insertItem("&Unload SPIT Plugin", this, SLOT(unload()));
menu = ((QMainWindow *) qgisMainWindow)->menuBar();
//menuId = menu->insertItem("&Spit", pluginMenu);
menuId = qI->addMenu("&Spit", pluginMenu);
// Create the action for tool
QAction *spitAction = new QAction("Import Shapefiles to PostgreSQL", QIconSet(spitIcon), "&SPIT",
0, this, "spit");
// Connect the action to the zoomPrevous slot
connect(spitAction, SIGNAL(activated()), this, SLOT(spit()));
// Add the toolbar
toolBar = new QToolBar((QMainWindow *) qgisMainWindow, "spit");
toolBar->setLabel("SPIT");
// Add the zoom previous tool to the toolbar
spitAction->addTo(toolBar);
}
// Slot called when the shapefile to postgres menu item is activated
void QgsSpitPlugin::spit()
{
QgsSpit *spitDlg = new QgsSpit();
spitDlg->show();
}
// Unload the plugin by cleaning up the GUI
void QgsSpitPlugin::unload()
{
// remove the GUI
menu->removeItem(menuId);
delete toolBar;
}
/**
* Required extern functions needed for every plugin
* These functions can be called prior to creating an instance
* of the plugin class
*/
// Class factory to return a new instance of the plugin class
extern "C" QgisPlugin * classFactory(QgisApp * qgis, QgisIface * qI)
{
return new QgsSpitPlugin(qgis, qI);
}
// Return the name of the plugin
extern "C" QString name()
{
return name_;
}
// Return the description
extern "C" QString description()
{
return description_;
}
// Return the type (either UI or MapLayer plugin)
extern "C" int type()
{
return type_;
}
// Return the version
extern "C" QString version()
{
return version_;
}
// Delete ourself
extern "C" void unload(QgisPlugin * p)
{
delete p;
}