89 lines
3.0 KiB
C++
89 lines
3.0 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2015 Eivind Kvedalen <eivind@kvedalen.name> *
|
|
* *
|
|
* 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., 51 Franklin Street, *
|
|
* Fifth Floor, Boston, MA 02110-1301, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef GUI_DIALOG_DLGEXPRESSIONINPUT_H
|
|
#define GUI_DIALOG_DLGEXPRESSIONINPUT_H
|
|
|
|
#include <QDialog>
|
|
#include <Base/Unit.h>
|
|
#include <App/ObjectIdentifier.h>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
namespace Ui {
|
|
class DlgExpressionInput;
|
|
}
|
|
|
|
namespace Base {
|
|
class Quantity;
|
|
}
|
|
|
|
namespace App {
|
|
class Path;
|
|
class Expression;
|
|
class DocumentObject;
|
|
}
|
|
|
|
namespace Gui {
|
|
|
|
namespace Dialog {
|
|
|
|
class GuiExport DlgExpressionInput : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DlgExpressionInput(const App::ObjectIdentifier & _path, boost::shared_ptr<const App::Expression> _expression, const Base::Unit &_impliedUnit, QWidget *parent = 0);
|
|
~DlgExpressionInput();
|
|
|
|
boost::shared_ptr<App::Expression> getExpression() const { return expression; }
|
|
|
|
bool discardedFormula() const { return discarded; }
|
|
|
|
QPoint expressionPosition() const;
|
|
void setExpressionInputSize(int width, int height);
|
|
|
|
bool eventFilter(QObject *obj, QEvent *event);
|
|
|
|
protected:
|
|
void showEvent(QShowEvent*);
|
|
void mouseReleaseEvent(QMouseEvent*);
|
|
void mousePressEvent(QMouseEvent*);
|
|
|
|
private Q_SLOTS:
|
|
void textChanged(const QString & text);
|
|
void setDiscarded();
|
|
|
|
private:
|
|
::Ui::DlgExpressionInput *ui;
|
|
boost::shared_ptr<App::Expression> expression;
|
|
App::ObjectIdentifier path;
|
|
bool discarded;
|
|
const Base::Unit impliedUnit;
|
|
|
|
int minimumWidth;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // GUI_DIALOG_EXPRESSIONINPUT_H
|