|
Engauge Digitizer
2
|
#include "CallbackBoundingRects.h"#include "CmdMediator.h"#include "CmdSettingsCoords.h"#include "CoordUnitsDate.h"#include "CoordUnitsTime.h"#include "DlgSettingsCoords.h"#include "DlgValidatorAbstract.h"#include "DlgValidatorFactory.h"#include "DocumentModelCoords.h"#include "EngaugeAssert.h"#include "Logger.h"#include "MainWindow.h"#include <math.h>#include <QComboBox>#include <QDebug>#include <QDoubleValidator>#include <QGraphicsRectItem>#include <QGridLayout>#include <QGroupBox>#include <QGraphicsScene>#include <QLabel>#include <QLineEdit>#include <qmath.h>#include <QPalette>#include <QRadioButton>#include <QStackedWidget>#include <QVBoxLayout>#include "Transformation.h"#include "ViewPreview.h"
Go to the source code of this file.
Functions | |
| const QString | OVERRIDDEN_VALUE ("") |
| const QString OVERRIDDEN_VALUE | ( | "" | ) |
| const int CARTESIAN_COORD_MAX = 100 |
Definition at line 48 of file DlgSettingsCoords.cpp.
| const int CARTESIAN_COORD_MIN = -100 |
Definition at line 49 of file DlgSettingsCoords.cpp.
| const double CARTESIAN_COORD_STEP = (CARTESIAN_COORD_MAX - CARTESIAN_COORD_MIN) / (NUM_COORD_STEPS - 1.0) |
Definition at line 50 of file DlgSettingsCoords.cpp.
| const int COLUMN_0 = 0 |
Definition at line 39 of file DlgSettingsCoords.cpp.
| const int COLUMN_1 = 1 |
Definition at line 40 of file DlgSettingsCoords.cpp.
| const double DEG_2_RAD = PI / 180.0 |
Definition at line 66 of file DlgSettingsCoords.cpp.
| const int FONT_SIZE = 6 |
Definition at line 68 of file DlgSettingsCoords.cpp.
| const double LINE_WIDTH_THICK = 2.0 |
Definition at line 63 of file DlgSettingsCoords.cpp.
| const double LINE_WIDTH_THIN = 0.0 |
Definition at line 62 of file DlgSettingsCoords.cpp.
| const int MAX_WIDTH_EDIT_ORIGIN_RADIUS = 140 |
Definition at line 46 of file DlgSettingsCoords.cpp.
| const int MINIMUM_DIALOG_WIDTH_COORDS = 800 |
Definition at line 72 of file DlgSettingsCoords.cpp.
| const int MINIMUM_HEIGHT = 540 |
Definition at line 73 of file DlgSettingsCoords.cpp.
| const int NUM_COORD_STEPS = 1 + STEPS_PER_CYCLE * STEPS_CYCLE_COUNT |
Definition at line 44 of file DlgSettingsCoords.cpp.
| const double PI = 3.1415926535 |
Definition at line 65 of file DlgSettingsCoords.cpp.
| const int POLAR_RADIUS = CARTESIAN_COORD_MAX |
Definition at line 52 of file DlgSettingsCoords.cpp.
| const double POLAR_STEP = POLAR_RADIUS / (NUM_COORD_STEPS - 1.0) |
Definition at line 53 of file DlgSettingsCoords.cpp.
| const int POLAR_THETA_MAX = 360 |
Definition at line 55 of file DlgSettingsCoords.cpp.
| const int POLAR_THETA_MIN = 0 |
Definition at line 56 of file DlgSettingsCoords.cpp.
| const double POLAR_THETA_STEP = (POLAR_THETA_MAX - POLAR_THETA_MIN) / (NUM_COORD_STEPS - 1.0) |
Definition at line 57 of file DlgSettingsCoords.cpp.
| const double POWER_FOR_LOG = 10.0 |
Definition at line 70 of file DlgSettingsCoords.cpp.
| const int STEPS_CYCLE_COUNT = 4 |
Definition at line 43 of file DlgSettingsCoords.cpp.
| const int STEPS_PER_CYCLE = 4 |
Definition at line 42 of file DlgSettingsCoords.cpp.
| const double XCENTER = (CARTESIAN_COORD_MIN + CARTESIAN_COORD_MAX) / 2.0 |
Definition at line 59 of file DlgSettingsCoords.cpp.
| const double YCENTER = (CARTESIAN_COORD_MIN + CARTESIAN_COORD_MAX) / 2.0 |
Definition at line 60 of file DlgSettingsCoords.cpp.
1.8.5