WorkArea.hpp 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*********************************************************************/
  2. /* */
  3. /* Copyright 2022-2023 Rémi Synave - remi.synave@univ-littoral.fr */
  4. /* */
  5. /* This file is part of DSL. */
  6. /* This software uses Qt to build the Graphical User Interface */
  7. /* https://www.qt.io/ */
  8. /* */
  9. /* DSL is free software: you can redistribute it and/or modify */
  10. /* it under the terms of the GNU General Public License as published */
  11. /* by the Free Software Foundation, either version 3 of the License, */
  12. /* or (at your option) any later version. */
  13. /* */
  14. /* DSL is distributed in the hope that it will be useful, */
  15. /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
  16. /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
  17. /* GNU General Public License for more details. */
  18. /* */
  19. /* You should have received a copy of the GNU General Public License */
  20. /* along with DSL. If not, see <http://www.gnu.org/licenses/>. */
  21. /* */
  22. /*********************************************************************/
  23. #ifndef WORKAREA_HPP
  24. #define WORKAREA_HPP
  25. #include <string>
  26. #include <QWidget>
  27. #include <QPainter>
  28. #include <QMouseEvent>
  29. #include <QPoint>
  30. #include <QImage>
  31. class WorkArea: public QWidget
  32. {
  33. Q_OBJECT
  34. private:
  35. const int taillePoint = 10;
  36. const int epaisseurLigne = 3;
  37. unsigned int screenSizeX, screenSizeY;
  38. bool readOnly;
  39. bool modificationInProgress;
  40. QImage *img;
  41. double resizeFactor;
  42. QList < QPoint * >liste_points;
  43. int indexPointClicked;
  44. int maxLines;
  45. protected:
  46. void paintEvent (QPaintEvent * event) override;
  47. void mousePressEvent (QMouseEvent * event);
  48. void mouseMoveEvent (QMouseEvent * event);
  49. void mouseReleaseEvent (QMouseEvent * event);
  50. public:
  51. WorkArea (int screenSizeX, int screenSizeY, QWidget * parent = nullptr);
  52. WorkArea (int screenSizeX, int screenSizeY, const std::string & filename, QWidget * parent = nullptr);
  53. WorkArea (int screenSizeX, int screenSizeY, const std::string & imageFilename, const std::string & SLFilename, bool readOnly, QWidget * parent = nullptr);
  54. ~WorkArea ();
  55. void paint (QPainter & painter);
  56. void loadImage (const std::string & filename);
  57. void loadSL (const std::string & filename);
  58. void saveStrengthLine (const std::string & filename);
  59. void setReadOnly(bool readOnly);
  60. bool getReadOnly();
  61. void setModificationInProgress(bool mip);
  62. bool getModificationInProgress();
  63. };
  64. #endif