/doc/src/snippets/dragging/mainwindow.cpp

https://bitbucket.org/ultra_iter/qt-vtl · C++ · 110 lines · 54 code · 11 blank · 45 comment · 4 complexity · 2dc96fdf7d97b1de4edbdf8ffd5d63e1 MD5 · raw file

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
  4. ** All rights reserved.
  5. ** Contact: Nokia Corporation (qt-info@nokia.com)
  6. **
  7. ** This file is part of the documentation of the Qt Toolkit.
  8. **
  9. ** $QT_BEGIN_LICENSE:BSD$
  10. ** You may use this file under the terms of the BSD license as follows:
  11. **
  12. ** "Redistribution and use in source and binary forms, with or without
  13. ** modification, are permitted provided that the following conditions are
  14. ** met:
  15. ** * Redistributions of source code must retain the above copyright
  16. ** notice, this list of conditions and the following disclaimer.
  17. ** * Redistributions in binary form must reproduce the above copyright
  18. ** notice, this list of conditions and the following disclaimer in
  19. ** the documentation and/or other materials provided with the
  20. ** distribution.
  21. ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
  22. ** the names of its contributors may be used to endorse or promote
  23. ** products derived from this software without specific prior written
  24. ** permission.
  25. **
  26. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  27. ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  28. ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  29. ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  30. ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  31. ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  32. ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  33. ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  34. ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  35. ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  36. ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
  37. ** $QT_END_LICENSE$
  38. **
  39. ****************************************************************************/
  40. #include <QtGui>
  41. #include "mainwindow.h"
  42. MainWindow::MainWindow(QWidget *parent)
  43. : QMainWindow(parent)
  44. {
  45. QFrame *centralFrame = new QFrame(this);
  46. QLabel *nameLabel = new QLabel(tr("Comment:"), centralFrame);
  47. commentEdit = new QTextEdit(centralFrame);
  48. QLabel *dragLabel = new QLabel(tr("<p>Drag the icon to a filer "
  49. "window or the desktop background:</p>"),
  50. centralFrame);
  51. iconLabel = new QLabel(centralFrame);
  52. iconPixmap.load(":/images/file.png");
  53. iconLabel->setPixmap(iconPixmap);
  54. QGridLayout *grid = new QGridLayout(centralFrame);
  55. grid->addWidget(nameLabel, 0, 0);
  56. grid->addWidget(commentEdit, 1, 0, 1, 2);
  57. grid->addWidget(dragLabel, 2, 0);
  58. grid->addWidget(iconLabel, 2, 1);
  59. statusBar();
  60. setCentralWidget(centralFrame);
  61. setWindowTitle(tr("Dragging"));
  62. }
  63. //! [0]
  64. void MainWindow::mousePressEvent(QMouseEvent *event)
  65. {
  66. if (event->button() == Qt::LeftButton
  67. && iconLabel->geometry().contains(event->pos())) {
  68. //! [1]
  69. QDrag *drag = new QDrag(this);
  70. QMimeData *mimeData = new QMimeData;
  71. mimeData->setText(commentEdit->toPlainText());
  72. drag->setMimeData(mimeData);
  73. //! [1]
  74. drag->setPixmap(iconPixmap);
  75. Qt::DropAction dropAction = drag->exec();
  76. //! [0]
  77. QString actionText;
  78. switch (dropAction) {
  79. case Qt::CopyAction:
  80. actionText = tr("The text was copied.");
  81. break;
  82. case Qt::MoveAction:
  83. actionText = tr("The text was moved.");
  84. break;
  85. case Qt::LinkAction:
  86. actionText = tr("The text was linked.");
  87. break;
  88. case Qt::IgnoreAction:
  89. actionText = tr("The drag was ignored.");
  90. break;
  91. default:
  92. actionText = tr("Unknown action.");
  93. break;
  94. }
  95. statusBar()->showMessage(actionText);
  96. //! [2]
  97. }
  98. }
  99. //! [2]