2010-08-12 15:43:13 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2010-08-12 15:43:13 +02:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2010-08-12 15:43:13 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2010-08-12 15:43:13 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2010-08-12 15:43:13 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-07-15 16:43:13 +02:00
|
|
|
#ifndef CONTEXTPANEWIDGETIMAGE_H
|
|
|
|
|
#define CONTEXTPANEWIDGETIMAGE_H
|
|
|
|
|
|
2010-08-12 15:43:13 +02:00
|
|
|
#include <qmleditorwidgets_global.h>
|
2010-07-26 13:46:21 +02:00
|
|
|
#include <contextpanewidget.h>
|
2011-01-20 14:03:07 +01:00
|
|
|
#include <qdrawutil.h>
|
2010-07-15 16:43:13 +02:00
|
|
|
|
2012-09-24 13:48:18 +02:00
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QPointer>
|
|
|
|
|
|
2010-07-16 09:13:04 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
2010-07-15 16:43:13 +02:00
|
|
|
namespace Ui {
|
|
|
|
|
class ContextPaneWidgetImage;
|
2010-07-30 14:31:34 +02:00
|
|
|
class ContextPaneWidgetBorderImage;
|
2010-07-15 16:43:13 +02:00
|
|
|
}
|
2010-07-26 13:46:21 +02:00
|
|
|
class QLabel;
|
2010-07-30 14:31:34 +02:00
|
|
|
class QSlider;
|
2010-07-16 09:13:04 +02:00
|
|
|
QT_END_NAMESPACE
|
2010-07-15 16:43:13 +02:00
|
|
|
|
|
|
|
|
namespace QmlJS {
|
|
|
|
|
class PropertyReader;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-12 15:43:13 +02:00
|
|
|
namespace QmlEditorWidgets {
|
|
|
|
|
|
|
|
|
|
class FileWidget;
|
2010-07-30 14:31:34 +02:00
|
|
|
|
|
|
|
|
class PreviewLabel : public QLabel
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PreviewLabel(QWidget *parent = 0);
|
|
|
|
|
void setZoom(int);
|
|
|
|
|
void setIsBorderImage(bool b);
|
|
|
|
|
void setMargins(int left, int top, int right, int bottom);
|
|
|
|
|
int leftMarging() const { return m_left; }
|
|
|
|
|
int topMarging() const { return m_top; }
|
|
|
|
|
int rightMarging() const { return m_right; }
|
|
|
|
|
int bottomMarging() const { return m_bottom; }
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void leftMarginChanged();
|
|
|
|
|
void topMarginChanged();
|
|
|
|
|
void bottomMarginChanged();
|
|
|
|
|
void rightMarginChanged();
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
|
void mousePressEvent(QMouseEvent * event);
|
|
|
|
|
void mouseReleaseEvent(QMouseEvent * event);
|
|
|
|
|
void mouseMoveEvent(QMouseEvent * event);
|
|
|
|
|
void leaveEvent(QEvent* event );
|
|
|
|
|
private:
|
|
|
|
|
bool m_showBorders;
|
|
|
|
|
int m_left, m_right, m_top, m_bottom;
|
|
|
|
|
bool m_dragging_left;
|
|
|
|
|
bool m_dragging_right;
|
|
|
|
|
bool m_dragging_top;
|
|
|
|
|
bool m_dragging_bottom;
|
|
|
|
|
QPoint m_startPos;
|
|
|
|
|
int m_zoom;
|
|
|
|
|
bool m_borderImage;
|
2010-08-04 13:58:43 +02:00
|
|
|
QLabel *m_hooverInfo;
|
2010-07-30 14:31:34 +02:00
|
|
|
};
|
2010-07-15 16:43:13 +02:00
|
|
|
|
2010-07-26 13:46:21 +02:00
|
|
|
class PreviewDialog : public DragWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PreviewDialog(QWidget *parent = 0);
|
2010-07-30 14:31:34 +02:00
|
|
|
void setPixmap(const QPixmap &p, int zoom = 1);
|
|
|
|
|
void setZoom(int z);
|
|
|
|
|
void setIsBorderImage(bool b);
|
|
|
|
|
PreviewLabel *previewLabel() const;
|
|
|
|
|
int zoom() { return m_zoom; }
|
|
|
|
|
|
2010-07-26 13:46:21 +02:00
|
|
|
public slots:
|
|
|
|
|
void onTogglePane();
|
2010-08-04 14:01:18 +02:00
|
|
|
void onSliderMoved(int value);
|
2010-07-26 13:46:21 +02:00
|
|
|
|
2010-07-30 14:31:34 +02:00
|
|
|
protected:
|
|
|
|
|
void wheelEvent(QWheelEvent* event);
|
|
|
|
|
|
2010-07-26 13:46:21 +02:00
|
|
|
private:
|
2010-07-30 14:31:34 +02:00
|
|
|
PreviewLabel *m_label;
|
|
|
|
|
QSlider *m_slider;
|
2010-08-04 14:01:18 +02:00
|
|
|
QLabel *m_zoomLabel;
|
2010-07-30 14:31:34 +02:00
|
|
|
int m_zoom;
|
|
|
|
|
QPixmap m_pixmap;
|
|
|
|
|
bool m_borderImage;
|
2010-07-26 13:46:21 +02:00
|
|
|
};
|
|
|
|
|
|
2010-08-12 15:43:13 +02:00
|
|
|
class QMLEDITORWIDGETS_EXPORT ContextPaneWidgetImage : public QWidget
|
2010-07-15 16:43:13 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2010-07-30 14:31:34 +02:00
|
|
|
explicit ContextPaneWidgetImage(QWidget *parent = 0, bool borderImage = false);
|
2010-07-15 16:43:13 +02:00
|
|
|
~ContextPaneWidgetImage();
|
|
|
|
|
void setProperties(QmlJS::PropertyReader *propertyReader);
|
2010-07-30 14:31:34 +02:00
|
|
|
void setPath(const QString& path);
|
|
|
|
|
PreviewDialog* previewDialog();
|
2010-07-15 16:43:13 +02:00
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void propertyChanged(const QString &, const QVariant &);
|
|
|
|
|
void removeProperty(const QString &);
|
|
|
|
|
void removeAndChangeProperty(const QString &, const QString &, const QVariant &, bool removeFirst);
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void onStretchChanged();
|
2010-07-30 14:31:34 +02:00
|
|
|
void onVerticalStretchChanged();
|
|
|
|
|
void onHorizontalStretchChanged();
|
2010-07-15 16:43:13 +02:00
|
|
|
void onFileNameChanged();
|
2010-07-26 13:46:21 +02:00
|
|
|
void onPixmapDoubleClicked();
|
2010-07-15 16:43:13 +02:00
|
|
|
void setPixmap(const QString &fileName);
|
2010-07-30 14:31:34 +02:00
|
|
|
void onLeftMarginsChanged();
|
|
|
|
|
void onTopMarginsChanged();
|
|
|
|
|
void onBottomMarginsChanged();
|
|
|
|
|
void onRightMarginsChanged();
|
2010-07-15 16:43:13 +02:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void changeEvent(QEvent *e);
|
2010-07-30 14:31:34 +02:00
|
|
|
void hideEvent(QHideEvent* event);
|
|
|
|
|
void showEvent(QShowEvent* event);
|
2010-07-15 16:43:13 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::ContextPaneWidgetImage *ui;
|
2010-07-30 14:31:34 +02:00
|
|
|
Ui::ContextPaneWidgetBorderImage *uiBorderImage;
|
2010-07-15 16:43:13 +02:00
|
|
|
QString m_path;
|
2012-09-24 13:48:18 +02:00
|
|
|
QPointer<PreviewDialog> m_previewDialog;
|
2010-07-30 14:31:34 +02:00
|
|
|
FileWidget *m_fileWidget;
|
|
|
|
|
QLabel *m_sizeLabel;
|
|
|
|
|
bool m_borderImage;
|
|
|
|
|
bool previewWasVisible;
|
2010-07-15 16:43:13 +02:00
|
|
|
};
|
|
|
|
|
|
2010-07-26 13:46:21 +02:00
|
|
|
class LabelFilter: public QObject {
|
|
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
LabelFilter(QObject* parent =0) : QObject(parent) {}
|
|
|
|
|
signals:
|
|
|
|
|
void doubleClicked();
|
|
|
|
|
protected:
|
|
|
|
|
bool eventFilter(QObject *obj, QEvent *event);
|
|
|
|
|
};
|
|
|
|
|
|
2010-07-30 14:31:34 +02:00
|
|
|
class WheelFilter: public QObject {
|
|
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
WheelFilter(QObject* parent =0) : QObject(parent) {}
|
|
|
|
|
void setTarget(QObject *target) { m_target = target; }
|
|
|
|
|
protected:
|
|
|
|
|
bool eventFilter(QObject *obj, QEvent *event);
|
|
|
|
|
QObject *m_target;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-07-26 13:46:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-07-15 16:43:13 +02:00
|
|
|
} //QmlDesigner
|
|
|
|
|
|
|
|
|
|
#endif // CONTEXTPANEWIDGETIMAGE_H
|