~ubuntu-branches/ubuntu/quantal/qgis/quantal

« back to all changes in this revision

Viewing changes to designer_plugins/qgsdesignerwidgets.h

  • Committer: Bazaar Package Importer
  • Author(s): William Grant
  • Date: 2007-05-06 13:42:32 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070506134232-pyli6t388w5asd8x
Tags: 0.8.0-3ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
  - debian/rules, debian/qgis.install, debian/qgis.dirs debian/qgis.desktop:
    Add and install .desktop.
* debian/qgis.desktop: Remove Applications category; it's not real.
* Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <qwidgetplugin.h>
2
 
 
3
 
class QgsDesignerWidgets : public QWidgetPlugin
4
 
{
5
 
  Q_OBJECT
6
 
public:
7
 
    QgsDesignerWidgets();
8
 
 
9
 
    QStringList keys() const;
10
 
    QWidget* create( const QString &classname, QWidget* parent = 0, const char* name = 0 );
11
 
    QString group( const QString& ) const;
12
 
    QIconSet iconSet( const QString& ) const;
13
 
    QString includeFile( const QString& ) const;
14
 
    QString toolTip( const QString& ) const;
15
 
    QString whatsThis( const QString& ) const;
16
 
    bool isContainer( const QString& ) const;
17
 
};