mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
attribute display dialog
git-svn-id: http://svn.osgeo.org/qgis/trunk@148 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
2c85d6985a
commit
242245f640
30
src/qgsattributetabledisplay.cpp
Normal file
30
src/qgsattributetabledisplay.cpp
Normal file
@ -0,0 +1,30 @@
|
||||
/***************************************************************************
|
||||
QgsAttributeTableDisplay.cpp - description
|
||||
-------------------
|
||||
begin : Sat Nov 23 2002
|
||||
copyright : (C) 2002 by Gary E.Sherman
|
||||
email : sherman at mrcc dot com
|
||||
Romans 3:23=>Romans 6:23=>Romans 5:8=>Romans 10:9,10=>Romans 12
|
||||
***************************************************************************/
|
||||
|
||||
/***************************************************************************
|
||||
* *
|
||||
* 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. *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
#include "qgsattributetabledisplay.h"
|
||||
|
||||
QgsAttributeTableDisplay::QgsAttributeTableDisplay(){
|
||||
}
|
||||
QgsAttributeTableDisplay::~QgsAttributeTableDisplay(){
|
||||
}
|
||||
QgsAttributeTable * QgsAttributeTableDisplay::table(){
|
||||
return tblAttributes;
|
||||
}
|
||||
void QgsAttributeTableDisplay::setTitle(QString title){
|
||||
setCaption(title);
|
||||
}
|
37
src/qgsattributetabledisplay.h
Normal file
37
src/qgsattributetabledisplay.h
Normal file
@ -0,0 +1,37 @@
|
||||
/***************************************************************************
|
||||
QgsAttributeTableDisplay.h - description
|
||||
-------------------
|
||||
begin : Sat Nov 23 2002
|
||||
copyright : (C) 2002 by Gary E.Sherman
|
||||
email : sherman at mrcc dot com
|
||||
Romans 3:23=>Romans 6:23=>Romans 5:8=>Romans 10:9,10=>Romans 12
|
||||
***************************************************************************/
|
||||
|
||||
/***************************************************************************
|
||||
* *
|
||||
* 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. *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef QGSATTRIBUTETABLEDISPLAY_H
|
||||
#define QGSATTRIBUTETABLEDISPLAY_H
|
||||
|
||||
#include "qgsattributetablebase.h"
|
||||
class QgsAttributeTable;
|
||||
/**
|
||||
*@author Gary E.Sherman
|
||||
*/
|
||||
|
||||
class QgsAttributeTableDisplay:public QgsAttributeTableBase
|
||||
{
|
||||
public:
|
||||
QgsAttributeTableDisplay();
|
||||
~QgsAttributeTableDisplay();
|
||||
QgsAttributeTable *table();
|
||||
void setTitle(QString title);
|
||||
};
|
||||
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user