Developer Documentation
FileSTL.hh
1 /*===========================================================================*\
2 * *
3 * OpenFlipper *
4  * Copyright (c) 2001-2015, RWTH-Aachen University *
5  * Department of Computer Graphics and Multimedia *
6  * All rights reserved. *
7  * www.openflipper.org *
8  * *
9  *---------------------------------------------------------------------------*
10  * This file is part of OpenFlipper. *
11  *---------------------------------------------------------------------------*
12  * *
13  * Redistribution and use in source and binary forms, with or without *
14  * modification, are permitted provided that the following conditions *
15  * are met: *
16  * *
17  * 1. Redistributions of source code must retain the above copyright notice, *
18  * this list of conditions and the following disclaimer. *
19  * *
20  * 2. Redistributions in binary form must reproduce the above copyright *
21  * notice, this list of conditions and the following disclaimer in the *
22  * documentation and/or other materials provided with the distribution. *
23  * *
24  * 3. Neither the name of the copyright holder nor the names of its *
25  * contributors may be used to endorse or promote products derived from *
26  * this software without specific prior written permission. *
27  * *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
31  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
32  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
33  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
34  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
35  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
36  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
37  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
38  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
39 * *
40 \*===========================================================================*/
41 
42 
43 
44 
45 #ifndef FILESTLPLUGIN_HH
46 #define FILESTLPLUGIN_HH
47 
48 #include <QObject>
49 class QCheckBox;
50 class QLabel;
51 class QSpinBox;
52 
61 
63 
66 {
67  Q_OBJECT
68  Q_INTERFACES(FileInterface)
69  Q_INTERFACES(LoadSaveInterface)
70  Q_INTERFACES(LoggingInterface)
71  Q_INTERFACES(BaseInterface)
72  Q_INTERFACES(ScriptInterface)
73 
74  Q_PLUGIN_METADATA(IID "org.OpenFlipper.Plugins.Plugin-FileSTL")
75 
76  signals:
77  void openedFile( int _id );
78  void addEmptyObject( DataType _type, int& _id);
79  void load(QString _filename, DataType _type, int& _id);
80  void save(int _id , QString _filename );
81  void log(Logtype _type, QString _message);
82  void log(QString _message);
83  void updateView();
84  void updatedObject(int _identifier, const UpdateType& _type);
85 
86  void deleteObject( int _id );
87 
88  void setSlotDescription(QString _slotName, QString _slotDescription,
89  QStringList _parameters, QStringList _descriptions);
90 
91  private slots:
92 
93  void fileOpened( int /*_id*/ ){};
94 
95  void noguiSupported( ) {} ;
96 
97  void initializePlugin();
98 
100  void slotLoadDefault();
101 
103  void slotSaveDefault();
104 
105  public :
106 
107  FileSTLPlugin();
108 
109  ~FileSTLPlugin() {};
110 
111  QString name() { return (QString("FileSTL")); };
112  QString description( ) { return (QString(tr("Load/Save STL-Files"))); };
113 
115 
116  QString getSaveFilters();
117  QString getLoadFilters();
118 
119  QWidget* saveOptionsWidget(QString /*_currentFilter*/);
120  QWidget* loadOptionsWidget(QString /*_currentFilter*/);
121 
122  public slots:
123 
125  int loadObject(QString _filename);
126 
127  bool saveObject(int _id, QString _filename);
128 
129 
138  bool saveObject(int _id, QString _filename, const bool _binary , const std::streamsize _precision = 6 );
139 
140  QString version() { return QString("1.0"); };
141 
142  private :
143 
144  //Option Widgets
145  QWidget* saveOptions_;
146  QWidget* loadOptions_;
147 
148  QCheckBox* saveBinary_;
149  QLabel* savePrecisionLabel_;
150  QSpinBox* savePrecision_;
151 
152  QCheckBox* loadFaceNormal_;
153 
154  QPushButton* saveDefaultButton_;
155  QPushButton* loadDefaultButton_;
156 };
157 
158 #endif //FILESTLPLUGIN_HH
Update type class.
Definition: UpdateType.hh:60
Logtype
Log types for Message Window.
Interface for all plugins which want to Load or Save files and create Objects.
Interface for all Plugins which provide scriptable Functions.
void initializePlugin()
Initialize Plugin.
Definition: FileSTL.cc:66
void noguiSupported()
Definition: FileSTL.hh:95
void slotSaveDefault()
Slot called when user wants to save the given Save options as default.
Definition: FileSTL.cc:314
int loadObject(QString _filename)
Loads Object as triangle mesh.
Definition: FileSTL.cc:98
Interface for all Plugins which do logging to the logging window of the framework.
QWidget * loadOptionsWidget(QString)
Definition: FileSTL.cc:281
QWidget * saveOptionsWidget(QString)
Definition: FileSTL.cc:244
QString getSaveFilters()
Definition: FileSTL.cc:85
void slotLoadDefault()
Slot called when user wants to save the given Load options as default.
Definition: FileSTL.cc:307
DataType supportedType()
Return your supported object type( e.g. DATA_TRIANGLE_MESH )
Definition: FileSTL.cc:91
Interface class from which all plugins have to be created.
Predefined datatypes.
Definition: DataTypes.hh:83
Interface class for file handling.
QString getLoadFilters()
Definition: FileSTL.cc:79
QString description()
Return a description of what the plugin is doing.
Definition: FileSTL.hh:112
QString name()
Return a name for the plugin.
Definition: FileSTL.hh:111
FileSTLPlugin()
Constructor.
Definition: FileSTL.cc:50