81 lines
3.1 KiB
C++
81 lines
3.1 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2004 Werner Mayer <wmayer[at]users.sourceforge.net> *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef PROPERTYEDITOR_H
|
|
#define PROPERTYEDITOR_H
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <QTreeView>
|
|
|
|
#include "PropertyItem.h"
|
|
#include "PropertyModel.h"
|
|
|
|
namespace App {
|
|
class Property;
|
|
}
|
|
|
|
namespace Gui {
|
|
namespace PropertyEditor {
|
|
|
|
class PropertyModel;
|
|
class PropertyEditor : public QTreeView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PropertyEditor(QWidget *parent = 0);
|
|
~PropertyEditor();
|
|
|
|
/** Builds up the list view with the properties. */
|
|
void buildUp(const PropertyModel::PropertyList& props);
|
|
void updateProperty(const App::Property&);
|
|
void appendProperty(const App::Property&);
|
|
void removeProperty(const App::Property&);
|
|
void setAutomaticDocumentUpdate(bool);
|
|
bool isAutomaticDocumentUpdate(bool) const;
|
|
|
|
protected:
|
|
virtual void closeEditor (QWidget * editor, QAbstractItemDelegate::EndEditHint hint);
|
|
virtual void commitData (QWidget * editor);
|
|
virtual void editorDestroyed (QObject * editor);
|
|
virtual void currentChanged (const QModelIndex & current, const QModelIndex & previous);
|
|
virtual void drawBranches(QPainter *painter, const QRect &rect, const QModelIndex &index) const;
|
|
virtual QStyleOptionViewItem viewOptions() const;
|
|
|
|
private:
|
|
PropertyModel* propertyModel;
|
|
QStringList selectedProperty;
|
|
PropertyModel::PropertyList propList;
|
|
bool autoupdate;
|
|
bool committing;
|
|
bool delaybuild;
|
|
};
|
|
|
|
} //namespace PropertyEditor
|
|
} //namespace Gui
|
|
|
|
#endif // PROPERTYEDITOR_H
|