123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /*=========================================================================
- Library: CTK
- Copyright (c) Kitware Inc.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0.txt
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- =========================================================================*/
- #ifndef __ctkVTKTextPropertyWidget_h
- #define __ctkVTKTextPropertyWidget_h
- // Qt includes
- #include <QWidget>
- // CTK includes
- #include "ctkPimpl.h"
- #include "ctkVTKObject.h"
- #include "ctkVisualizationVTKWidgetsExport.h"
- class ctkVTKTextPropertyWidgetPrivate;
- class vtkTextProperty;
- /// \ingroup Visualization_VTK_Widgets
- class CTK_VISUALIZATION_VTK_WIDGETS_EXPORT ctkVTKTextPropertyWidget : public QWidget
- {
- Q_OBJECT;
- QVTK_OBJECT;
- Q_PROPERTY(bool showText READ isTextVisible WRITE setTextVisible);
- Q_PROPERTY(QString text READ text WRITE setText);
- Q_PROPERTY(QString textLabel READ textLabel WRITE setTextLabel);
- Q_PROPERTY(bool showSize READ isSizeVisible WRITE setSizeVisible);
- public:
- /// Constructors
- ctkVTKTextPropertyWidget(QWidget* parentWidget);
- ctkVTKTextPropertyWidget(vtkTextProperty* textProperty, QWidget* parentWidget);
- virtual ~ctkVTKTextPropertyWidget();
- vtkTextProperty* textProperty()const;
- void setTextVisible(bool visible);
- bool isTextVisible()const;
- void setSizeVisible(bool visible);
- bool isSizeVisible()const;
- QString text()const;
- QString textLabel()const;
-
- /// Color of vtkTextProperty
- QColor color()const;
- /// Opacity of vtkTextProperty
- double opacity()const;
- /// Font of vtkTextProperty
- QString font()const;
- /// Is the text bold
- bool isBold()const;
- /// Is the text italic
- bool isItalic()const;
- /// Has the text shadows
- bool hasShadow()const;
- /// Size of vtkTextProperty
- double size()const;
- public Q_SLOTS:
- void setTextProperty(vtkTextProperty* textProperty);
- void setText(const QString& text);
- void setTextLabel(const QString& label);
- void setColor(const QColor& color);
- void setOpacity(double opacity);
- void setFont(const QString& font);
- void setBold(bool enable);
- void setItalic(bool enable);
- void setShadow(bool enable);
- void setSize(double size);
- Q_SIGNALS:
- void textChanged(const QString& text);
- void colorChanged(const QColor& color);
- void opacityChanged(double opacity);
- void fontFamilyChanged(const QString &font);
- void boldChanged(bool enable);
- void italicChanged(bool enable);
- void shadowChanged(bool enable);
- void sizeChanged(double size);
- protected Q_SLOTS:
- void updateFromTextProperty();
- protected:
- QScopedPointer<ctkVTKTextPropertyWidgetPrivate> d_ptr;
- private:
- Q_DECLARE_PRIVATE(ctkVTKTextPropertyWidget);
- Q_DISABLE_COPY(ctkVTKTextPropertyWidget);
- };
- #endif
|