UBGraphicsTextItem.cpp 10.9 KB
Newer Older
Claudio Valerio's avatar
Claudio Valerio committed
1
/*
Claudio Valerio's avatar
Claudio Valerio committed
2
 * Copyright (C) 2013 Open Education Foundation
Claudio Valerio's avatar
Claudio Valerio committed
3
 *
Claudio Valerio's avatar
Claudio Valerio committed
4 5
 * Copyright (C) 2010-2013 Groupement d'Intérêt Public pour
 * l'Education Numérique en Afrique (GIP ENA)
6
 *
Claudio Valerio's avatar
Claudio Valerio committed
7 8 9
 * This file is part of OpenBoard.
 *
 * OpenBoard is free software: you can redistribute it and/or modify
Claudio Valerio's avatar
Claudio Valerio committed
10 11
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, version 3 of the License,
12 13 14 15
 * with a specific linking exception for the OpenSSL project's
 * "OpenSSL" library (or with modified versions of it that use the
 * same license as the "OpenSSL" library).
 *
Claudio Valerio's avatar
Claudio Valerio committed
16
 * OpenBoard is distributed in the hope that it will be useful,
Claudio Valerio's avatar
Claudio Valerio committed
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Claudio Valerio's avatar
Claudio Valerio committed
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Claudio Valerio's avatar
Claudio Valerio committed
19
 * GNU General Public License for more details.
Claudio Valerio's avatar
Claudio Valerio committed
20
 *
Claudio Valerio's avatar
Claudio Valerio committed
21
 * You should have received a copy of the GNU General Public License
Claudio Valerio's avatar
Claudio Valerio committed
22
 * along with OpenBoard. If not, see <http://www.gnu.org/licenses/>.
Claudio Valerio's avatar
Claudio Valerio committed
23 24
 */

25

Claudio Valerio's avatar
Claudio Valerio committed
26

Claudio Valerio's avatar
Claudio Valerio committed
27

Claudio Valerio's avatar
Claudio Valerio committed
28
#include <QtGui>
Claudio Valerio's avatar
Claudio Valerio committed
29
#include "UBGraphicsGroupContainerItem.h"
Claudio Valerio's avatar
Claudio Valerio committed
30 31 32 33 34 35 36 37
#include "UBGraphicsTextItem.h"
#include "UBGraphicsTextItemDelegate.h"
#include "UBGraphicsScene.h"
#include "UBGraphicsDelegateFrame.h"

#include "core/UBApplication.h"
#include "board/UBBoardController.h"
#include "board/UBBoardView.h"
38
#include "board/UBDrawingController.h"
Claudio Valerio's avatar
Claudio Valerio committed
39 40
#include "core/UBSettings.h"

41
#include "core/memcheck.h"
Claudio Valerio's avatar
Claudio Valerio committed
42 43
QColor UBGraphicsTextItem::lastUsedTextColor;

Ilia Ryabokon's avatar
Ilia Ryabokon committed
44 45 46
UBGraphicsTextItem::UBGraphicsTextItem(QGraphicsItem * parent) :
    QGraphicsTextItem(parent)
    , UBGraphicsItem()
Claudio Valerio's avatar
Claudio Valerio committed
47 48
    , mMultiClickState(0)
    , mLastMousePressTime(QTime::currentTime())
49
    , mTypeTextHereLabel(tr("<Type Text Here>"))
Claudio Valerio's avatar
Claudio Valerio committed
50
{
51
    mEmptyTextWidth = QFontMetrics(font()).width(mTypeTextHereLabel);
52
    setDelegate(new UBGraphicsTextItemDelegate(this, 0));
Claudio Valerio's avatar
Claudio Valerio committed
53

54 55
    // TODO claudio remove this because in contrast with the fact the frame should be created on demand.
    Delegate()->createControls();
56
    Delegate()->frame()->setOperationMode(UBGraphicsDelegateFrame::Resizing);
57 58
    Delegate()->setUBFlag(GF_FLIPPABLE_ALL_AXIS, false);
    Delegate()->setUBFlag(GF_REVOLVABLE, true);
Claudio Valerio's avatar
Claudio Valerio committed
59 60

    setData(UBGraphicsItemData::ItemLayerType, UBItemLayerType::Object);
shibakaneki's avatar
shibakaneki committed
61 62
    setData(UBGraphicsItemData::itemLayerType, QVariant(itemLayerType::ObjectItem)); //Necessary to set if we want z value to be assigned correctly

Claudio Valerio's avatar
Claudio Valerio committed
63 64 65 66 67
    setFlag(QGraphicsItem::ItemIsSelectable, true);
    setFlag(QGraphicsItem::ItemSendsGeometryChanges, true);

    setTextInteractionFlags(Qt::TextEditorInteraction);

68 69
    setUuid(QUuid::createUuid());

70
    connect(document(), SIGNAL(contentsChanged()), Delegate(), SLOT(contentsChanged()));
Claudio Valerio's avatar
Claudio Valerio committed
71 72
    connect(document(), SIGNAL(undoCommandAdded()), this, SLOT(undoCommandAdded()));

73 74
    connect(document()->documentLayout(), SIGNAL(documentSizeChanged(const QSizeF &)),
            this, SLOT(documentSizeChanged(const QSizeF &)));
Claudio Valerio's avatar
Claudio Valerio committed
75 76 77 78 79 80 81

}

UBGraphicsTextItem::~UBGraphicsTextItem()
{
}

82 83 84 85 86 87 88 89 90
void UBGraphicsTextItem::setSelected(bool selected)
{
    if(selected){
        Delegate()->createControls();
        Delegate()->frame()->setOperationMode(UBGraphicsDelegateFrame::Resizing);
    }
    QGraphicsTextItem::setSelected(selected);
}

Claudio Valerio's avatar
Claudio Valerio committed
91 92 93 94
QVariant UBGraphicsTextItem::itemChange(GraphicsItemChange change, const QVariant &value)
{
    QVariant newValue = value;

95 96
    if(Delegate())
        newValue = Delegate()->itemChange(change, value);
Claudio Valerio's avatar
Claudio Valerio committed
97 98 99 100 101 102

    return QGraphicsTextItem::itemChange(change, newValue);
}

void UBGraphicsTextItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
103 104
    setTextInteractionFlags(Qt::TextEditorInteraction);

105 106
    // scene()->itemAt(pos) returns 0 if pos is not over text, but over text item, but mouse press comes.
    // It is a cludge...
107 108
    if (UBStylusTool::Play == UBDrawingController::drawingController()->stylusTool())
    {
109
        QGraphicsTextItem::mousePressEvent(event);
110 111 112 113 114
        event->accept();
        clearFocus();
        return;
    }

115
    if (Delegate())
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
116
    {
117 118
        Delegate()->mousePressEvent(event);
        if (Delegate() && parentItem() && UBGraphicsGroupContainerItem::Type == parentItem()->type())
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
119 120 121 122 123 124
        {
            UBGraphicsGroupContainerItem *group = qgraphicsitem_cast<UBGraphicsGroupContainerItem*>(parentItem());
            if (group)
            {
                QGraphicsItem *curItem = group->getCurrentItem();
                if (curItem && this != curItem)
125 126 127
                {
                    group->deselectCurrentItem();
                }
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
128 129
                group->setCurrentItem(this);
                this->setSelected(true);
130
                Delegate()->positionHandles();
131
            }
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
132 133 134 135

        }
        else
        {
136
            Delegate()->getToolBarItem()->show();
Anatoly Mihalchenko's avatar
Anatoly Mihalchenko committed
137 138 139
        }

    }
140 141 142 143

    if (!data(UBGraphicsItemData::ItemEditable).toBool())
        return;

Claudio Valerio's avatar
Claudio Valerio committed
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
    int elapsed = mLastMousePressTime.msecsTo(QTime::currentTime());

    if (elapsed < UBApplication::app()->doubleClickInterval())
    {
        mMultiClickState++;
        if (mMultiClickState > 3)
            mMultiClickState = 1;
    }
    else
    {
        mMultiClickState = 1;
    }

    mLastMousePressTime = QTime::currentTime();

    if (mMultiClickState == 1)
    {
        QGraphicsTextItem::mousePressEvent(event);
        setFocus();
    }
    else if (mMultiClickState == 2)
    {
        QTextCursor tc= textCursor();
        tc.select(QTextCursor::WordUnderCursor);
        setTextCursor(tc);
    }
    else if (mMultiClickState == 3)
    {
        QTextCursor tc= textCursor();
        tc.select(QTextCursor::Document);
        setTextCursor(tc);
    }
    else
    {
        mMultiClickState = 0;
    }
}

void UBGraphicsTextItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
{
184
    if (!Delegate() || !Delegate()->mouseMoveEvent(event))
Claudio Valerio's avatar
Claudio Valerio committed
185 186 187 188 189 190 191
    {
        QGraphicsTextItem::mouseMoveEvent(event);
    }
}

void UBGraphicsTextItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
192 193
    // scene()->itemAt(pos) returns 0 if pos is not over text, but over text item, but mouse press comes.
    // It is a cludge...
194 195 196 197 198 199 200
    if (UBStylusTool::Play == UBDrawingController::drawingController()->stylusTool())
    {
        event->accept();
        clearFocus();
        return;
    }

Claudio Valerio's avatar
Claudio Valerio committed
201 202
    if (mMultiClickState == 1)
    {
203 204
        QGraphicsTextItem::mouseReleaseEvent(event);

205 206
        if (Delegate())
            Delegate()->mouseReleaseEvent(event);
Claudio Valerio's avatar
Claudio Valerio committed
207 208 209 210 211 212 213
    }
    else
    {
        event->accept();
    }
}

214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
void UBGraphicsTextItem::keyPressEvent(QKeyEvent *event)
{
    if (Delegate() && !Delegate()->keyPressEvent(event)) {
        qDebug() << "UBGraphicsTextItem::keyPressEvent(QKeyEvent *event) has been rejected by delegate. Don't call base class method";
        return;
    }

    QGraphicsTextItem::keyPressEvent(event);
}

void UBGraphicsTextItem::keyReleaseEvent(QKeyEvent *event)
{
    if (Delegate() && !Delegate()->keyReleaseEvent(event)) {
        qDebug() << "UBGraphicsTextItem::keyPressEvent(QKeyEvent *event) has been rejected by delegate. Don't call base class method";
        return;
    }

    QGraphicsTextItem::keyReleaseEvent(event);
}

Claudio Valerio's avatar
Claudio Valerio committed
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
void UBGraphicsTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
    QColor color = UBSettings::settings()->isDarkBackground() ? mColorOnDarkBackground : mColorOnLightBackground;
    setDefaultTextColor(color);

    // Never draw the rubber band, we draw our custom selection with the DelegateFrame
    QStyleOptionGraphicsItem styleOption = QStyleOptionGraphicsItem(*option);
    styleOption.state &= ~QStyle::State_Selected;
    styleOption.state &= ~QStyle::State_HasFocus;

    QGraphicsTextItem::paint(painter, &styleOption, widget);

    if (widget == UBApplication::boardController->controlView()->viewport() &&
            !isSelected() && toPlainText().isEmpty())
    {
249 250 251
//        QFontMetrics fm(font());
//        setTextWidth(fm.width(mTypeTextHereLabel));

Claudio Valerio's avatar
Claudio Valerio committed
252 253 254
        painter->setFont(font());
        painter->setPen(UBSettings::paletteColor);
        painter->drawText(boundingRect(), Qt::AlignCenter, mTypeTextHereLabel);
255
        setTextInteractionFlags(Qt::NoTextInteraction);
Claudio Valerio's avatar
Claudio Valerio committed
256
    }
257 258

    Delegate()->postpaint(painter, option, widget);
Claudio Valerio's avatar
Claudio Valerio committed
259 260 261 262 263 264 265
}


UBItem* UBGraphicsTextItem::deepCopy() const
{
    UBGraphicsTextItem* copy = new UBGraphicsTextItem();

266
    copyItemParameters(copy);
Claudio Valerio's avatar
Claudio Valerio committed
267 268 269 270 271 272

   // TODO UB 4.7 ... complete all members ?

   return copy;
}

273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
void UBGraphicsTextItem::copyItemParameters(UBItem *copy) const
{
    UBGraphicsTextItem *cp = dynamic_cast<UBGraphicsTextItem*>(copy);
    if (cp)
    {
        cp->setHtml(toHtml());
        cp->setPos(this->pos());
        cp->setTransform(this->transform());
        cp->setFlag(QGraphicsItem::ItemIsMovable, true);
        cp->setFlag(QGraphicsItem::ItemIsSelectable, true);
        cp->setData(UBGraphicsItemData::ItemLayerType, this->data(UBGraphicsItemData::ItemLayerType));
        cp->setData(UBGraphicsItemData::ItemLocked, this->data(UBGraphicsItemData::ItemLocked));
        cp->setData(UBGraphicsItemData::ItemEditable, data(UBGraphicsItemData::ItemEditable).toBool());
        cp->setTextWidth(this->textWidth());
        cp->setTextHeight(this->textHeight());

        cp->setSourceUrl(this->sourceUrl());
    }
}
Claudio Valerio's avatar
Claudio Valerio committed
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309

QRectF UBGraphicsTextItem::boundingRect() const
{
    qreal width = textWidth();
    qreal height = textHeight();
    return QRectF(QPointF(), QSizeF(width, height));
}


QPainterPath UBGraphicsTextItem::shape() const
{
    QPainterPath path;
    path.addRect(boundingRect());
    return path;
}

void UBGraphicsTextItem::setTextWidth(qreal width)
{
310
    qreal strictMin = 155; // the size of the font customization panel
Claudio Valerio's avatar
Claudio Valerio committed
311 312 313 314 315 316 317 318 319 320 321 322
    qreal newWidth = qMax(strictMin, width);

    QGraphicsTextItem::setTextWidth(newWidth);
}


void UBGraphicsTextItem::setTextHeight(qreal height)
{
    QFontMetrics fm(font());
    qreal minHeight = fm.height() + document()->documentMargin() * 2;
    mTextHeight = qMax(minHeight, height);
    update();
shibakaneki's avatar
shibakaneki committed
323
    setFocus();
Claudio Valerio's avatar
Claudio Valerio committed
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
}


qreal UBGraphicsTextItem::textHeight() const
{
    return mTextHeight;
}


void UBGraphicsTextItem::contentsChanged()
{
    if (scene())
    {
        scene()->setModified(true);
    }

    if (toPlainText().isEmpty())
    {
342
        resize(textWidth(),textHeight());
Claudio Valerio's avatar
Claudio Valerio committed
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
    }
}


UBGraphicsScene* UBGraphicsTextItem::scene()
{
    return static_cast<UBGraphicsScene*>(QGraphicsItem::scene());
}


void UBGraphicsTextItem::resize(qreal w, qreal h)
{
    setTextWidth(w);
    setTextHeight(h);

358 359
    if (Delegate())
        Delegate()->positionHandles();
Claudio Valerio's avatar
Claudio Valerio committed
360 361 362 363 364 365 366 367
}


QSizeF UBGraphicsTextItem::size() const
{
    return QSizeF(textWidth(), textHeight());
}

root's avatar
root committed
368 369 370 371 372 373
void UBGraphicsTextItem::setUuid(const QUuid &pUuid)
{
    UBItem::setUuid(pUuid);
    setData(UBGraphicsItemData::ItemUuid, QVariant(pUuid)); //store item uuid inside the QGraphicsItem to fast operations with Items on the scene
}

Claudio Valerio's avatar
Claudio Valerio committed
374 375 376 377 378 379 380 381 382 383 384

void UBGraphicsTextItem::undoCommandAdded()
{
    emit textUndoCommandAdded(this);
}


void UBGraphicsTextItem::documentSizeChanged(const QSizeF & newSize)
{
    resize(newSize.width(), newSize.height());
}
385 386 387 388 389 390

void UBGraphicsTextItem::setHtml(const QString &text)
{
    QGraphicsTextItem::setHtml(text);
    setTextInteractionFlags(Qt::NoTextInteraction);
}