AlbumShaper
1.0a3
|
#include <qsize.h>
#include <qapplication.h>
#include <qpainter.h>
#include <qevent.h>
#include <qpoint.h>
#include <q3accel.h>
#include <qcursor.h>
#include <QPaintEvent>
#include <QResizeEvent>
#include <QPixmap>
#include <QMouseEvent>
#include <QKeyEvent>
#include <QDesktopWidget>
#include "selectionInterface.h"
#include "../cursors.h"
#include "../../config.h"
#include "../../backend/tools/imageTools.h"
#include "../window.h"
#include "../../configuration/configuration.h"
Go to the source code of this file.
Macros | |
#define | MIN(x, y) ((x) < (y) ? (x) : (y)) |
#define | MAX(x, y) ((x) > (y) ? (x) : (y)) |
#define | DRAG_THRESHOLD 8 |
#define | MOVE_THRESHOLD 150 |
#define | MINIMUM_SELECTION_SIZE 3 |
#define DRAG_THRESHOLD 8 |
Definition at line 41 of file selectionInterface.cpp.
Referenced by SelectionInterface::mouseActionByPosition().
#define MAX | ( | x, | |
y | |||
) | ((x) > (y) ? (x) : (y)) |
Definition at line 36 of file selectionInterface.cpp.
Referenced by SelectionInterface::constructDisplayImages(), SelectionInterface::cropSelectedPoint(), SelectionInterface::getSelection(), SelectionInterface::keyPressEvent(), SelectionInterface::mouseActionByPosition(), SelectionInterface::mouseMoveEvent(), SelectionInterface::mousePressEvent(), SelectionInterface::mouseReleaseEvent(), SelectionInterface::paintEvent(), and SelectionInterface::scaleSelection().
#define MIN | ( | x, | |
y | |||
) | ((x) < (y) ? (x) : (y)) |
Definition at line 35 of file selectionInterface.cpp.
Referenced by SelectionInterface::constructDisplayImages(), SelectionInterface::cropSelectedPoint(), SelectionInterface::getSelection(), SelectionInterface::keyPressEvent(), SelectionInterface::mouseActionByPosition(), SelectionInterface::mouseMoveEvent(), SelectionInterface::mousePressEvent(), SelectionInterface::mouseReleaseEvent(), SelectionInterface::paintEvent(), and SelectionInterface::scaleSelection().
#define MINIMUM_SELECTION_SIZE 3 |
Definition at line 48 of file selectionInterface.cpp.
Referenced by SelectionInterface::mouseReleaseEvent().
#define MOVE_THRESHOLD 150 |
Definition at line 45 of file selectionInterface.cpp.
Referenced by SelectionInterface::mouseActionByPosition().