~ubuntu-branches/ubuntu/vivid/meshlab/vivid

« back to all changes in this revision

Viewing changes to meshlab/src/meshlabplugins/filter_meshing/meshfilter.h

  • Committer: Bazaar Package Importer
  • Author(s): Teemu Ikonen
  • Date: 2009-10-08 16:40:41 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091008164041-0c2ealqv8b8uc20c
Tags: 1.2.2-1
* New upstream version
* Do not build filter_isoparametrization because liblevmar dependency
  is not (yet) in Debian
* Fix compilation with gcc-4.4, thanks to Jonathan Liu for the patch
  (closes: #539544)
* rules: Add compiler variables to the qmake call (for testing with new
  GCC versions)
* io_3ds.pro: Make LIBS and INCLUDEPATH point to Debian version of lib3ds
* io_epoch.pro: Make LIBS point to Debian version of libbz2
* control:
  - Move Homepage URL to the source package section
  - Update to standards-version 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
 
128
128
        ExtraMeshFilterPlugin();
129
129
        ~ExtraMeshFilterPlugin();
130
 
        virtual const QString filterName(FilterIDType filter);
131
 
  virtual const QString filterInfo(FilterIDType filter);
 
130
        virtual const QString filterName(FilterIDType filter) const;
 
131
  virtual const QString filterInfo(FilterIDType filter) const;
132
132
 
133
133
  virtual const FilterClass getClass(QAction *);
134
134
        virtual bool autoDialog(QAction *) ;
135
135
        virtual bool customDialog(QAction *filter);
136
136
 
137
 
        virtual void initParameterSet(QAction *,MeshModel &/*m*/, FilterParameterSet & /*parent*/);
138
 
        virtual bool getCustomParameters(QAction *action, QWidget * /*parent*/, MeshModel &/*m*/, FilterParameterSet & params, MainWindowInterface *mw);
 
137
        virtual void initParameterSet(QAction *,MeshModel &/*m*/, RichParameterSet & /*parent*/);
 
138
        virtual bool getCustomParameters(QAction *action, QWidget * /*parent*/, MeshModel &/*m*/, RichParameterSet & params, MainWindowInterface *mw);
139
139
  virtual const int getRequirements(QAction *);
140
 
        virtual bool applyFilter(QAction *filter, MeshDocument &md, FilterParameterSet & /*parent*/, vcg::CallBackPos * cb) ;
141
 
        virtual bool applyFilter(QAction */*filter*/, MeshModel &, FilterParameterSet & /*parent*/, vcg::CallBackPos *) { assert(0); return false;} ;
 
140
        virtual bool applyFilter(QAction *filter, MeshDocument &md, RichParameterSet & /*parent*/, vcg::CallBackPos * cb) ;
 
141
        virtual bool applyFilter(QAction */*filter*/, MeshModel &, RichParameterSet & /*parent*/, vcg::CallBackPos *) { assert(0); return false;} ;
142
142
 
143
143
protected:
144
144
 
148
148
 
149
149
 
150
150
        float lastq_QualityThr;
 
151
        bool lastq_QualityWeight;
151
152
        bool lastq_PreserveBoundary;
152
153
        bool lastq_Selected;
153
154
        bool lastq_PreserveNormal;