Added showInOverview stub

git-svn-id: http://svn.osgeo.org/qgis/trunk@1540 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2004-06-09 08:14:49 +00:00
parent 507f1b2132
commit 64659f52e2
2 changed files with 15 additions and 0 deletions

View File

@ -73,6 +73,7 @@ QString QgsMapLayer::sourceName()
{
return internalName;
}
const QgsRect QgsMapLayer::extent()
{
return layerExtent;
@ -122,6 +123,17 @@ void QgsMapLayer::setVisible(bool vis)
emit visibilityChanged();
} /** Read property of int featureType. */
void QgsMapLayer::showInOverview(bool theFlag)
{
if (theFlag)
{
//do me
}
else
{
//do me
}
}
const int &QgsMapLayer::featureType()
{

View File

@ -207,6 +207,9 @@ public slots:
//! set visibility
void setVisible(bool vis);
/*! Slot connected to popup menus of derived classes. Used to indicate whether this layer
* should be shown or hidden in the map overview. */
void showInOverview(bool);
signals: