2013-07-28 22:08:34 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Declarations relating to our user interface, in both the graphics and
|
|
|
|
// text browser window.
|
|
|
|
//
|
|
|
|
// Copyright 2008-2013 Jonathan Westhues.
|
|
|
|
//-----------------------------------------------------------------------------
|
2008-03-25 10:02:13 +00:00
|
|
|
|
|
|
|
#ifndef __UI_H
|
|
|
|
#define __UI_H
|
|
|
|
|
2008-03-28 10:00:37 +00:00
|
|
|
class TextWindow {
|
|
|
|
public:
|
2013-09-09 19:50:32 +00:00
|
|
|
enum {
|
|
|
|
MAX_COLS = 100,
|
|
|
|
MIN_COLS = 45,
|
|
|
|
MAX_ROWS = 2000
|
|
|
|
};
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2008-03-28 10:00:37 +00:00
|
|
|
typedef struct {
|
2015-07-10 11:54:39 +00:00
|
|
|
char c;
|
|
|
|
RgbaColor color;
|
2008-03-28 10:00:37 +00:00
|
|
|
} Color;
|
2008-04-28 07:18:39 +00:00
|
|
|
static const Color fgColors[];
|
|
|
|
static const Color bgColors[];
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2010-04-26 07:52:49 +00:00
|
|
|
float bgColorTable[256*3];
|
|
|
|
float fgColorTable[256*3];
|
|
|
|
|
2013-09-09 19:50:32 +00:00
|
|
|
enum {
|
|
|
|
CHAR_WIDTH = 9,
|
|
|
|
CHAR_HEIGHT = 16,
|
|
|
|
LINE_HEIGHT = 20,
|
|
|
|
LEFT_MARGIN = 6,
|
2010-04-26 07:52:49 +00:00
|
|
|
|
2013-09-09 19:50:32 +00:00
|
|
|
CHECK_FALSE = 0x80,
|
|
|
|
CHECK_TRUE = 0x81,
|
|
|
|
RADIO_FALSE = 0x82,
|
|
|
|
RADIO_TRUE = 0x83
|
|
|
|
};
|
2010-05-09 01:20:02 +00:00
|
|
|
|
2010-04-26 07:52:49 +00:00
|
|
|
int scrollPos; // The scrollbar position, in half-row units
|
|
|
|
int halfRows; // The height of our window, in half-row units
|
|
|
|
|
Use C99 integer types and C++ boolean types/values
This change comprehensively replaces the use of Microsoft-standard integer
and boolean types with their C99/C++ standard equivalents, as the latter is
more appropriate for a cross-platform application. With matter-of-course
exceptions in the Win32-specific code, the types/values have been converted
as follows:
QWORD --> uint64_t
SQWORD --> int64_t
DWORD --> uint32_t
SDWORD --> int32_t
WORD --> uint16_t
SWORD --> int16_t
BYTE --> uint8_t
BOOL --> bool
TRUE --> true
FALSE --> false
The following related changes are also included:
* Added C99 integer type definitions for Windows, as stdint.h is not
available prior to Visual Studio 2010
* Changed types of some variables in the SolveSpace class from 'int' to
'bool', as they actually represent boolean settings
* Implemented new Cnf{Freeze,Thaw}Bool() functions to support boolean
variables in the Registry
* Cnf{Freeze,Thaw}DWORD() are now Cnf{Freeze,Thaw}Int()
* TtfFont::Get{WORD,DWORD}() are now TtfFont::Get{USHORT,ULONG}() (names
inspired by the OpenType spec)
* RGB colors are packed into an integer of type uint32_t (nee DWORD), but
in a few places, these were represented by an int; these have been
corrected to uint32_t
2013-10-02 05:45:13 +00:00
|
|
|
uint8_t text[MAX_ROWS][MAX_COLS];
|
|
|
|
typedef void LinkFunction(int link, uint32_t v);
|
2013-09-09 19:50:32 +00:00
|
|
|
enum { NOT_A_LINK = 0 };
|
2008-03-25 10:02:13 +00:00
|
|
|
struct {
|
2008-04-28 07:18:39 +00:00
|
|
|
char fg;
|
Replaced RGB-color integers with dedicated data structure
RGB colors were represented using a uint32_t with the red, green and blue
values stuffed into the lower three octets (i.e. 0x00BBGGRR), like
Microsoft's COLORREF. This approach did not lend itself to type safety,
however, so this change replaces it with an RgbColor class that provides
the same infomation plus a handful of useful methods to work with it. (Note
that sizeof(RgbColor) == sizeof(uint32_t), so this change should not lead
to memory bloat.)
Some of the new methods/fields replace what were previously macro calls;
e.g. RED(c) is now c.red, REDf(c) is now c.redF(). The .Equals() method is
now used instead of == to compare colors.
RGB colors still need to be represented as packed integers in file I/O and
preferences, so the methods .FromPackedInt() and .ToPackedInt() are
provided. Also implemented are Cnf{Freeze,Thaw}Color(), type-safe wrappers
around Cnf{Freeze,Thaw}Int() that facilitate I/O with preferences.
(Cnf{Freeze,Thaw}Color() are defined outside of the system-dependent code
to minimize the footprint of the latter; because the same can be done with
Cnf{Freeze,Thaw}Bool(), those are also moved out of the system code with
this commit.)
Color integers were being OR'ed with 0x80000000 in some places for two
distinct purposes: One, to indicate use of a default color in
glxFillMesh(); this has been replaced by use of the .UseDefault() method.
Two, to indicate to TextWindow::Printf() that the format argument of a
"%Bp"/"%Fp" specifier is an RGB color rather than a color "code" from
TextWindow::bgColors[] or TextWindow::fgColors[] (as the specifier can
accept either); instead, we define a new flag "z" (as in "%Bz" or "%Fz") to
indicate an RGBcolor pointer, leaving "%Bp"/"%Fp" to indicate a color code
exclusively.
(This also allows TextWindow::meta[][].bg to be a char instead of an int,
partly compensating for the new .bgRgb field added immediately after.)
In array declarations, RGB colors could previously be specified as 0 (often
in a terminating element). As that no longer works, we define NULL_COLOR,
which serves much the same purpose for RgbColor variables as NULL serves
for pointers.
2013-10-16 20:00:58 +00:00
|
|
|
char bg;
|
2015-07-10 11:54:39 +00:00
|
|
|
RgbaColor bgRgb;
|
2008-03-28 10:00:37 +00:00
|
|
|
int link;
|
Use C99 integer types and C++ boolean types/values
This change comprehensively replaces the use of Microsoft-standard integer
and boolean types with their C99/C++ standard equivalents, as the latter is
more appropriate for a cross-platform application. With matter-of-course
exceptions in the Win32-specific code, the types/values have been converted
as follows:
QWORD --> uint64_t
SQWORD --> int64_t
DWORD --> uint32_t
SDWORD --> int32_t
WORD --> uint16_t
SWORD --> int16_t
BYTE --> uint8_t
BOOL --> bool
TRUE --> true
FALSE --> false
The following related changes are also included:
* Added C99 integer type definitions for Windows, as stdint.h is not
available prior to Visual Studio 2010
* Changed types of some variables in the SolveSpace class from 'int' to
'bool', as they actually represent boolean settings
* Implemented new Cnf{Freeze,Thaw}Bool() functions to support boolean
variables in the Registry
* Cnf{Freeze,Thaw}DWORD() are now Cnf{Freeze,Thaw}Int()
* TtfFont::Get{WORD,DWORD}() are now TtfFont::Get{USHORT,ULONG}() (names
inspired by the OpenType spec)
* RGB colors are packed into an integer of type uint32_t (nee DWORD), but
in a few places, these were represented by an int; these have been
corrected to uint32_t
2013-10-02 05:45:13 +00:00
|
|
|
uint32_t data;
|
2008-03-28 10:00:37 +00:00
|
|
|
LinkFunction *f;
|
2008-05-26 09:56:50 +00:00
|
|
|
LinkFunction *h;
|
2008-03-25 10:02:13 +00:00
|
|
|
} meta[MAX_ROWS][MAX_COLS];
|
2010-05-03 05:04:42 +00:00
|
|
|
int hoveredRow, hoveredCol;
|
|
|
|
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2010-05-03 05:04:42 +00:00
|
|
|
int top[MAX_ROWS]; // in half-line units, or -1 for unused
|
2008-04-09 09:35:09 +00:00
|
|
|
int rows;
|
2010-04-26 07:52:49 +00:00
|
|
|
|
2010-05-03 05:04:42 +00:00
|
|
|
// The row of icons at the top of the text window, to hide/show things
|
|
|
|
typedef struct {
|
2013-08-26 18:58:35 +00:00
|
|
|
bool *var;
|
Use C99 integer types and C++ boolean types/values
This change comprehensively replaces the use of Microsoft-standard integer
and boolean types with their C99/C++ standard equivalents, as the latter is
more appropriate for a cross-platform application. With matter-of-course
exceptions in the Win32-specific code, the types/values have been converted
as follows:
QWORD --> uint64_t
SQWORD --> int64_t
DWORD --> uint32_t
SDWORD --> int32_t
WORD --> uint16_t
SWORD --> int16_t
BYTE --> uint8_t
BOOL --> bool
TRUE --> true
FALSE --> false
The following related changes are also included:
* Added C99 integer type definitions for Windows, as stdint.h is not
available prior to Visual Studio 2010
* Changed types of some variables in the SolveSpace class from 'int' to
'bool', as they actually represent boolean settings
* Implemented new Cnf{Freeze,Thaw}Bool() functions to support boolean
variables in the Registry
* Cnf{Freeze,Thaw}DWORD() are now Cnf{Freeze,Thaw}Int()
* TtfFont::Get{WORD,DWORD}() are now TtfFont::Get{USHORT,ULONG}() (names
inspired by the OpenType spec)
* RGB colors are packed into an integer of type uint32_t (nee DWORD), but
in a few places, these were represented by an int; these have been
corrected to uint32_t
2013-10-02 05:45:13 +00:00
|
|
|
uint8_t *icon;
|
2013-08-26 18:58:35 +00:00
|
|
|
const char *tip;
|
2010-05-03 05:04:42 +00:00
|
|
|
} HideShowIcon;
|
|
|
|
static HideShowIcon hideShowIcons[];
|
|
|
|
static bool SPACER;
|
|
|
|
|
2010-04-26 07:52:49 +00:00
|
|
|
// These are called by the platform-specific code.
|
2010-05-03 05:04:42 +00:00
|
|
|
void Paint(void);
|
2010-07-21 05:04:03 +00:00
|
|
|
void MouseEvent(bool isClick, bool leftDown, double x, double y);
|
2010-04-26 07:52:49 +00:00
|
|
|
void MouseScroll(double x, double y, int delta);
|
2010-05-03 05:04:42 +00:00
|
|
|
void MouseLeave(void);
|
2010-04-26 07:52:49 +00:00
|
|
|
void ScrollbarEvent(int newPos);
|
2010-05-03 05:04:42 +00:00
|
|
|
|
2013-09-09 19:50:32 +00:00
|
|
|
enum {
|
|
|
|
PAINT = 0,
|
|
|
|
HOVER = 1,
|
|
|
|
CLICK = 2
|
|
|
|
};
|
2010-05-03 05:04:42 +00:00
|
|
|
void DrawOrHitTestIcons(int how, double mx, double my);
|
|
|
|
void TimerCallback(void);
|
|
|
|
Point2d oldMousePos;
|
|
|
|
HideShowIcon *hoveredIcon, *tooltippedIcon;
|
2010-07-21 05:04:03 +00:00
|
|
|
|
|
|
|
Vector HsvToRgb(Vector hsv);
|
Use C99 integer types and C++ boolean types/values
This change comprehensively replaces the use of Microsoft-standard integer
and boolean types with their C99/C++ standard equivalents, as the latter is
more appropriate for a cross-platform application. With matter-of-course
exceptions in the Win32-specific code, the types/values have been converted
as follows:
QWORD --> uint64_t
SQWORD --> int64_t
DWORD --> uint32_t
SDWORD --> int32_t
WORD --> uint16_t
SWORD --> int16_t
BYTE --> uint8_t
BOOL --> bool
TRUE --> true
FALSE --> false
The following related changes are also included:
* Added C99 integer type definitions for Windows, as stdint.h is not
available prior to Visual Studio 2010
* Changed types of some variables in the SolveSpace class from 'int' to
'bool', as they actually represent boolean settings
* Implemented new Cnf{Freeze,Thaw}Bool() functions to support boolean
variables in the Registry
* Cnf{Freeze,Thaw}DWORD() are now Cnf{Freeze,Thaw}Int()
* TtfFont::Get{WORD,DWORD}() are now TtfFont::Get{USHORT,ULONG}() (names
inspired by the OpenType spec)
* RGB colors are packed into an integer of type uint32_t (nee DWORD), but
in a few places, these were represented by an int; these have been
corrected to uint32_t
2013-10-02 05:45:13 +00:00
|
|
|
uint8_t *HsvPattern2d(void);
|
|
|
|
uint8_t *HsvPattern1d(double h, double s);
|
2010-07-21 05:04:03 +00:00
|
|
|
void ColorPickerDone(void);
|
|
|
|
bool DrawOrHitTestColorPicker(int how, bool leftDown, double x, double y);
|
2015-03-29 00:30:52 +00:00
|
|
|
|
2008-03-25 10:02:13 +00:00
|
|
|
void Init(void);
|
2010-04-26 07:52:49 +00:00
|
|
|
void MakeColorTable(const Color *in, float *out);
|
2013-08-26 18:58:35 +00:00
|
|
|
void Printf(bool half, const char *fmt, ...);
|
2008-03-25 10:02:13 +00:00
|
|
|
void ClearScreen(void);
|
2015-03-29 00:30:52 +00:00
|
|
|
|
2008-04-11 12:47:14 +00:00
|
|
|
void Show(void);
|
|
|
|
|
2008-04-12 14:12:26 +00:00
|
|
|
// State for the screen that we are showing in the text window.
|
2013-09-09 19:50:32 +00:00
|
|
|
enum {
|
|
|
|
SCREEN_LIST_OF_GROUPS = 0,
|
|
|
|
SCREEN_GROUP_INFO = 1,
|
|
|
|
SCREEN_GROUP_SOLVE_INFO = 2,
|
|
|
|
SCREEN_CONFIGURATION = 3,
|
|
|
|
SCREEN_STEP_DIMENSION = 4,
|
|
|
|
SCREEN_LIST_OF_STYLES = 5,
|
|
|
|
SCREEN_STYLE_INFO = 6,
|
|
|
|
SCREEN_PASTE_TRANSFORMED = 7,
|
|
|
|
SCREEN_EDIT_VIEW = 8,
|
|
|
|
SCREEN_TANGENT_ARC = 9
|
|
|
|
};
|
2008-04-12 14:12:26 +00:00
|
|
|
typedef struct {
|
2008-04-25 08:26:15 +00:00
|
|
|
int screen;
|
2008-07-20 11:27:22 +00:00
|
|
|
|
2008-04-25 08:26:15 +00:00
|
|
|
hGroup group;
|
2009-09-18 08:14:15 +00:00
|
|
|
hStyle style;
|
2008-07-20 11:27:22 +00:00
|
|
|
|
|
|
|
hConstraint constraint;
|
|
|
|
bool dimIsDistance;
|
|
|
|
double dimFinish;
|
|
|
|
int dimSteps;
|
2009-12-15 12:26:22 +00:00
|
|
|
|
|
|
|
struct {
|
|
|
|
int times;
|
|
|
|
Vector trans;
|
|
|
|
double theta;
|
|
|
|
Vector origin;
|
|
|
|
double scale;
|
|
|
|
} paste;
|
2008-04-12 14:12:26 +00:00
|
|
|
} ShownState;
|
2008-07-10 06:11:56 +00:00
|
|
|
ShownState shown;
|
2008-04-12 14:12:26 +00:00
|
|
|
|
2013-09-09 19:50:32 +00:00
|
|
|
enum {
|
|
|
|
EDIT_NOTHING = 0,
|
|
|
|
// For multiple groups
|
|
|
|
EDIT_TIMES_REPEATED = 1,
|
|
|
|
EDIT_GROUP_NAME = 2,
|
|
|
|
EDIT_GROUP_SCALE = 3,
|
|
|
|
EDIT_GROUP_COLOR = 4,
|
2015-03-26 10:30:12 +00:00
|
|
|
EDIT_GROUP_OPACITY = 5,
|
2013-09-09 19:50:32 +00:00
|
|
|
// For the configuraiton screen
|
|
|
|
EDIT_LIGHT_DIRECTION = 100,
|
|
|
|
EDIT_LIGHT_INTENSITY = 101,
|
|
|
|
EDIT_COLOR = 102,
|
|
|
|
EDIT_CHORD_TOLERANCE = 103,
|
|
|
|
EDIT_MAX_SEGMENTS = 104,
|
|
|
|
EDIT_CAMERA_TANGENT = 105,
|
|
|
|
EDIT_GRID_SPACING = 106,
|
|
|
|
EDIT_DIGITS_AFTER_DECIMAL = 107,
|
|
|
|
EDIT_EXPORT_SCALE = 108,
|
|
|
|
EDIT_EXPORT_OFFSET = 109,
|
|
|
|
EDIT_CANVAS_SIZE = 110,
|
|
|
|
EDIT_G_CODE_DEPTH = 120,
|
|
|
|
EDIT_G_CODE_PASSES = 121,
|
|
|
|
EDIT_G_CODE_FEED = 122,
|
|
|
|
EDIT_G_CODE_PLUNGE_FEED = 123,
|
2015-03-29 04:46:57 +00:00
|
|
|
EDIT_AUTOSAVE_INTERVAL = 124,
|
2013-09-09 19:50:32 +00:00
|
|
|
// For TTF text
|
|
|
|
EDIT_TTF_TEXT = 300,
|
|
|
|
// For the step dimension screen
|
|
|
|
EDIT_STEP_DIM_FINISH = 400,
|
|
|
|
EDIT_STEP_DIM_STEPS = 401,
|
|
|
|
// For the styles stuff
|
|
|
|
EDIT_STYLE_WIDTH = 500,
|
|
|
|
EDIT_STYLE_TEXT_HEIGHT = 501,
|
|
|
|
EDIT_STYLE_TEXT_ANGLE = 502,
|
|
|
|
EDIT_STYLE_COLOR = 503,
|
|
|
|
EDIT_STYLE_FILL_COLOR = 504,
|
|
|
|
EDIT_STYLE_NAME = 505,
|
|
|
|
EDIT_BACKGROUND_COLOR = 506,
|
|
|
|
EDIT_BACKGROUND_IMG_SCALE = 507,
|
|
|
|
// For paste transforming
|
|
|
|
EDIT_PASTE_TIMES_REPEATED = 600,
|
|
|
|
EDIT_PASTE_ANGLE = 601,
|
|
|
|
EDIT_PASTE_SCALE = 602,
|
|
|
|
// For view
|
|
|
|
EDIT_VIEW_SCALE = 700,
|
|
|
|
EDIT_VIEW_ORIGIN = 701,
|
|
|
|
EDIT_VIEW_PROJ_RIGHT = 702,
|
|
|
|
EDIT_VIEW_PROJ_UP = 703,
|
|
|
|
// For tangent arc
|
|
|
|
EDIT_TANGENT_ARC_RADIUS = 800
|
|
|
|
};
|
2008-05-27 06:36:59 +00:00
|
|
|
struct {
|
2010-01-04 00:35:28 +00:00
|
|
|
bool showAgain;
|
2008-06-30 09:09:17 +00:00
|
|
|
int meaning;
|
|
|
|
int i;
|
|
|
|
hGroup group;
|
|
|
|
hRequest request;
|
2009-09-18 08:14:15 +00:00
|
|
|
hStyle style;
|
2008-05-27 06:36:59 +00:00
|
|
|
} edit;
|
|
|
|
|
2008-05-26 09:56:50 +00:00
|
|
|
static void ReportHowGroupSolved(hGroup hg);
|
|
|
|
|
2010-07-12 07:51:12 +00:00
|
|
|
struct {
|
|
|
|
int halfRow;
|
|
|
|
int col;
|
|
|
|
|
2010-07-21 05:04:03 +00:00
|
|
|
struct {
|
2015-07-10 11:54:39 +00:00
|
|
|
RgbaColor rgb;
|
|
|
|
double h, s, v;
|
|
|
|
bool show;
|
|
|
|
bool picker1dActive;
|
|
|
|
bool picker2dActive;
|
2010-07-21 05:04:03 +00:00
|
|
|
} colorPicker;
|
2010-07-12 07:51:12 +00:00
|
|
|
} editControl;
|
|
|
|
|
|
|
|
void HideEditControl(void);
|
|
|
|
void ShowEditControl(int halfRow, int col, char *s);
|
2015-07-10 11:54:39 +00:00
|
|
|
void ShowEditControlWithColorPicker(int halfRow, int col, RgbaColor rgb);
|
2010-07-12 07:51:12 +00:00
|
|
|
|
2008-06-01 00:26:41 +00:00
|
|
|
void ClearSuper(void);
|
|
|
|
|
|
|
|
void ShowHeader(bool withNav);
|
2008-04-08 12:54:53 +00:00
|
|
|
// These are self-contained screens, that show some information about
|
|
|
|
// the sketch.
|
2008-04-25 08:26:15 +00:00
|
|
|
void ShowListOfGroups(void);
|
|
|
|
void ShowGroupInfo(void);
|
2008-05-26 09:56:50 +00:00
|
|
|
void ShowGroupSolveInfo(void);
|
2008-06-11 04:22:52 +00:00
|
|
|
void ShowConfiguration(void);
|
2009-09-18 08:14:15 +00:00
|
|
|
void ShowListOfStyles(void);
|
|
|
|
void ShowStyleInfo(void);
|
2008-07-20 11:27:22 +00:00
|
|
|
void ShowStepDimension(void);
|
2009-12-15 12:26:22 +00:00
|
|
|
void ShowPasteTransformed(void);
|
2010-01-04 00:35:28 +00:00
|
|
|
void ShowEditView(void);
|
2010-05-16 16:36:23 +00:00
|
|
|
void ShowTangentArc(void);
|
2008-06-01 00:26:41 +00:00
|
|
|
// Special screen, based on selection
|
|
|
|
void DescribeSelection(void);
|
2008-04-18 07:06:37 +00:00
|
|
|
|
2008-07-10 06:11:56 +00:00
|
|
|
void GoToScreen(int screen);
|
2008-05-27 06:36:59 +00:00
|
|
|
|
2008-06-30 09:09:17 +00:00
|
|
|
// All of these are callbacks from the GUI code; first from when
|
|
|
|
// we're describing an entity
|
Use C99 integer types and C++ boolean types/values
This change comprehensively replaces the use of Microsoft-standard integer
and boolean types with their C99/C++ standard equivalents, as the latter is
more appropriate for a cross-platform application. With matter-of-course
exceptions in the Win32-specific code, the types/values have been converted
as follows:
QWORD --> uint64_t
SQWORD --> int64_t
DWORD --> uint32_t
SDWORD --> int32_t
WORD --> uint16_t
SWORD --> int16_t
BYTE --> uint8_t
BOOL --> bool
TRUE --> true
FALSE --> false
The following related changes are also included:
* Added C99 integer type definitions for Windows, as stdint.h is not
available prior to Visual Studio 2010
* Changed types of some variables in the SolveSpace class from 'int' to
'bool', as they actually represent boolean settings
* Implemented new Cnf{Freeze,Thaw}Bool() functions to support boolean
variables in the Registry
* Cnf{Freeze,Thaw}DWORD() are now Cnf{Freeze,Thaw}Int()
* TtfFont::Get{WORD,DWORD}() are now TtfFont::Get{USHORT,ULONG}() (names
inspired by the OpenType spec)
* RGB colors are packed into an integer of type uint32_t (nee DWORD), but
in a few places, these were represented by an int; these have been
corrected to uint32_t
2013-10-02 05:45:13 +00:00
|
|
|
static void ScreenEditTtfText(int link, uint32_t v);
|
|
|
|
static void ScreenSetTtfFont(int link, uint32_t v);
|
|
|
|
static void ScreenUnselectAll(int link, uint32_t v);
|
2008-06-30 09:09:17 +00:00
|
|
|
|
2015-03-22 13:07:49 +00:00
|
|
|
// when we're describing a constraint
|
|
|
|
static void ScreenConstraintShowAsRadius(int link, uint32_t v);
|
|
|
|
|
2008-06-30 09:09:17 +00:00
|
|
|
// and the rest from the stuff in textscreens.cpp
|
Use C99 integer types and C++ boolean types/values
This change comprehensively replaces the use of Microsoft-standard integer
and boolean types with their C99/C++ standard equivalents, as the latter is
more appropriate for a cross-platform application. With matter-of-course
exceptions in the Win32-specific code, the types/values have been converted
as follows:
QWORD --> uint64_t
SQWORD --> int64_t
DWORD --> uint32_t
SDWORD --> int32_t
WORD --> uint16_t
SWORD --> int16_t
BYTE --> uint8_t
BOOL --> bool
TRUE --> true
FALSE --> false
The following related changes are also included:
* Added C99 integer type definitions for Windows, as stdint.h is not
available prior to Visual Studio 2010
* Changed types of some variables in the SolveSpace class from 'int' to
'bool', as they actually represent boolean settings
* Implemented new Cnf{Freeze,Thaw}Bool() functions to support boolean
variables in the Registry
* Cnf{Freeze,Thaw}DWORD() are now Cnf{Freeze,Thaw}Int()
* TtfFont::Get{WORD,DWORD}() are now TtfFont::Get{USHORT,ULONG}() (names
inspired by the OpenType spec)
* RGB colors are packed into an integer of type uint32_t (nee DWORD), but
in a few places, these were represented by an int; these have been
corrected to uint32_t
2013-10-02 05:45:13 +00:00
|
|
|
static void ScreenSelectGroup(int link, uint32_t v);
|
|
|
|
static void ScreenActivateGroup(int link, uint32_t v);
|
|
|
|
static void ScreenToggleGroupShown(int link, uint32_t v);
|
|
|
|
static void ScreenHowGroupSolved(int link, uint32_t v);
|
|
|
|
static void ScreenShowGroupsSpecial(int link, uint32_t v);
|
|
|
|
static void ScreenDeleteGroup(int link, uint32_t v);
|
|
|
|
|
|
|
|
static void ScreenHoverConstraint(int link, uint32_t v);
|
|
|
|
static void ScreenHoverRequest(int link, uint32_t v);
|
|
|
|
static void ScreenSelectRequest(int link, uint32_t v);
|
|
|
|
static void ScreenSelectConstraint(int link, uint32_t v);
|
|
|
|
|
|
|
|
static void ScreenChangeGroupOption(int link, uint32_t v);
|
|
|
|
static void ScreenColor(int link, uint32_t v);
|
2015-03-26 10:30:12 +00:00
|
|
|
static void ScreenOpacity(int link, uint32_t v);
|
Use C99 integer types and C++ boolean types/values
This change comprehensively replaces the use of Microsoft-standard integer
and boolean types with their C99/C++ standard equivalents, as the latter is
more appropriate for a cross-platform application. With matter-of-course
exceptions in the Win32-specific code, the types/values have been converted
as follows:
QWORD --> uint64_t
SQWORD --> int64_t
DWORD --> uint32_t
SDWORD --> int32_t
WORD --> uint16_t
SWORD --> int16_t
BYTE --> uint8_t
BOOL --> bool
TRUE --> true
FALSE --> false
The following related changes are also included:
* Added C99 integer type definitions for Windows, as stdint.h is not
available prior to Visual Studio 2010
* Changed types of some variables in the SolveSpace class from 'int' to
'bool', as they actually represent boolean settings
* Implemented new Cnf{Freeze,Thaw}Bool() functions to support boolean
variables in the Registry
* Cnf{Freeze,Thaw}DWORD() are now Cnf{Freeze,Thaw}Int()
* TtfFont::Get{WORD,DWORD}() are now TtfFont::Get{USHORT,ULONG}() (names
inspired by the OpenType spec)
* RGB colors are packed into an integer of type uint32_t (nee DWORD), but
in a few places, these were represented by an int; these have been
corrected to uint32_t
2013-10-02 05:45:13 +00:00
|
|
|
|
|
|
|
static void ScreenShowListOfStyles(int link, uint32_t v);
|
|
|
|
static void ScreenShowStyleInfo(int link, uint32_t v);
|
|
|
|
static void ScreenDeleteStyle(int link, uint32_t v);
|
|
|
|
static void ScreenChangeStyleYesNo(int link, uint32_t v);
|
|
|
|
static void ScreenCreateCustomStyle(int link, uint32_t v);
|
|
|
|
static void ScreenLoadFactoryDefaultStyles(int link, uint32_t v);
|
|
|
|
static void ScreenAssignSelectionToStyle(int link, uint32_t v);
|
|
|
|
static void ScreenBackgroundImage(int link, uint32_t v);
|
|
|
|
|
|
|
|
static void ScreenShowConfiguration(int link, uint32_t v);
|
|
|
|
static void ScreenShowEditView(int link, uint32_t v);
|
|
|
|
static void ScreenGoToWebsite(int link, uint32_t v);
|
|
|
|
|
|
|
|
static void ScreenChangeFixExportColors(int link, uint32_t v);
|
|
|
|
static void ScreenChangeBackFaces(int link, uint32_t v);
|
|
|
|
static void ScreenChangeCheckClosedContour(int link, uint32_t v);
|
|
|
|
static void ScreenChangePwlCurves(int link, uint32_t v);
|
|
|
|
static void ScreenChangeCanvasSizeAuto(int link, uint32_t v);
|
|
|
|
static void ScreenChangeCanvasSize(int link, uint32_t v);
|
|
|
|
static void ScreenChangeShadedTriangles(int link, uint32_t v);
|
|
|
|
|
|
|
|
static void ScreenStepDimSteps(int link, uint32_t v);
|
|
|
|
static void ScreenStepDimFinish(int link, uint32_t v);
|
|
|
|
static void ScreenStepDimGo(int link, uint32_t v);
|
|
|
|
|
|
|
|
static void ScreenChangeTangentArc(int link, uint32_t v);
|
|
|
|
|
|
|
|
static void ScreenPasteTransformed(int link, uint32_t v);
|
|
|
|
|
|
|
|
static void ScreenHome(int link, uint32_t v);
|
2008-06-02 05:38:12 +00:00
|
|
|
|
2008-05-27 09:52:36 +00:00
|
|
|
// These ones do stuff with the edit control
|
Use C99 integer types and C++ boolean types/values
This change comprehensively replaces the use of Microsoft-standard integer
and boolean types with their C99/C++ standard equivalents, as the latter is
more appropriate for a cross-platform application. With matter-of-course
exceptions in the Win32-specific code, the types/values have been converted
as follows:
QWORD --> uint64_t
SQWORD --> int64_t
DWORD --> uint32_t
SDWORD --> int32_t
WORD --> uint16_t
SWORD --> int16_t
BYTE --> uint8_t
BOOL --> bool
TRUE --> true
FALSE --> false
The following related changes are also included:
* Added C99 integer type definitions for Windows, as stdint.h is not
available prior to Visual Studio 2010
* Changed types of some variables in the SolveSpace class from 'int' to
'bool', as they actually represent boolean settings
* Implemented new Cnf{Freeze,Thaw}Bool() functions to support boolean
variables in the Registry
* Cnf{Freeze,Thaw}DWORD() are now Cnf{Freeze,Thaw}Int()
* TtfFont::Get{WORD,DWORD}() are now TtfFont::Get{USHORT,ULONG}() (names
inspired by the OpenType spec)
* RGB colors are packed into an integer of type uint32_t (nee DWORD), but
in a few places, these were represented by an int; these have been
corrected to uint32_t
2013-10-02 05:45:13 +00:00
|
|
|
static void ScreenChangeExprA(int link, uint32_t v);
|
|
|
|
static void ScreenChangeGroupName(int link, uint32_t v);
|
|
|
|
static void ScreenChangeGroupScale(int link, uint32_t v);
|
|
|
|
static void ScreenChangeLightDirection(int link, uint32_t v);
|
|
|
|
static void ScreenChangeLightIntensity(int link, uint32_t v);
|
|
|
|
static void ScreenChangeColor(int link, uint32_t v);
|
|
|
|
static void ScreenChangeChordTolerance(int link, uint32_t v);
|
|
|
|
static void ScreenChangeMaxSegments(int link, uint32_t v);
|
|
|
|
static void ScreenChangeCameraTangent(int link, uint32_t v);
|
|
|
|
static void ScreenChangeGridSpacing(int link, uint32_t v);
|
|
|
|
static void ScreenChangeDigitsAfterDecimal(int link, uint32_t v);
|
|
|
|
static void ScreenChangeExportScale(int link, uint32_t v);
|
|
|
|
static void ScreenChangeExportOffset(int link, uint32_t v);
|
|
|
|
static void ScreenChangeGCodeParameter(int link, uint32_t v);
|
2015-03-29 04:46:57 +00:00
|
|
|
static void ScreenChangeAutosaveInterval(int link, uint32_t v);
|
Use C99 integer types and C++ boolean types/values
This change comprehensively replaces the use of Microsoft-standard integer
and boolean types with their C99/C++ standard equivalents, as the latter is
more appropriate for a cross-platform application. With matter-of-course
exceptions in the Win32-specific code, the types/values have been converted
as follows:
QWORD --> uint64_t
SQWORD --> int64_t
DWORD --> uint32_t
SDWORD --> int32_t
WORD --> uint16_t
SWORD --> int16_t
BYTE --> uint8_t
BOOL --> bool
TRUE --> true
FALSE --> false
The following related changes are also included:
* Added C99 integer type definitions for Windows, as stdint.h is not
available prior to Visual Studio 2010
* Changed types of some variables in the SolveSpace class from 'int' to
'bool', as they actually represent boolean settings
* Implemented new Cnf{Freeze,Thaw}Bool() functions to support boolean
variables in the Registry
* Cnf{Freeze,Thaw}DWORD() are now Cnf{Freeze,Thaw}Int()
* TtfFont::Get{WORD,DWORD}() are now TtfFont::Get{USHORT,ULONG}() (names
inspired by the OpenType spec)
* RGB colors are packed into an integer of type uint32_t (nee DWORD), but
in a few places, these were represented by an int; these have been
corrected to uint32_t
2013-10-02 05:45:13 +00:00
|
|
|
static void ScreenChangeStyleName(int link, uint32_t v);
|
|
|
|
static void ScreenChangeStyleWidthOrTextHeight(int link, uint32_t v);
|
|
|
|
static void ScreenChangeStyleTextAngle(int link, uint32_t v);
|
|
|
|
static void ScreenChangeStyleColor(int link, uint32_t v);
|
|
|
|
static void ScreenChangeBackgroundColor(int link, uint32_t v);
|
|
|
|
static void ScreenChangeBackgroundImageScale(int link, uint32_t v);
|
|
|
|
static void ScreenChangePasteTransformed(int link, uint32_t v);
|
|
|
|
static void ScreenChangeViewScale(int link, uint32_t v);
|
|
|
|
static void ScreenChangeViewOrigin(int link, uint32_t v);
|
|
|
|
static void ScreenChangeViewProjection(int link, uint32_t v);
|
2008-05-17 08:02:39 +00:00
|
|
|
|
2013-09-16 19:51:20 +00:00
|
|
|
bool EditControlDoneForStyles(const char *s);
|
|
|
|
bool EditControlDoneForConfiguration(const char *s);
|
|
|
|
bool EditControlDoneForPaste(const char *s);
|
|
|
|
bool EditControlDoneForView(const char *s);
|
|
|
|
void EditControlDone(const char *s);
|
2008-03-28 10:00:37 +00:00
|
|
|
};
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2008-03-28 10:00:37 +00:00
|
|
|
class GraphicsWindow {
|
|
|
|
public:
|
2008-04-12 15:17:58 +00:00
|
|
|
void Init(void);
|
|
|
|
|
2008-03-26 09:18:12 +00:00
|
|
|
// This table describes the top-level menus in the graphics winodw.
|
2008-04-12 15:17:58 +00:00
|
|
|
typedef enum {
|
2008-04-18 11:11:48 +00:00
|
|
|
// File
|
|
|
|
MNU_NEW = 100,
|
|
|
|
MNU_OPEN,
|
2008-05-28 10:10:31 +00:00
|
|
|
MNU_OPEN_RECENT,
|
2008-04-18 11:11:48 +00:00
|
|
|
MNU_SAVE,
|
|
|
|
MNU_SAVE_AS,
|
2008-06-18 08:35:14 +00:00
|
|
|
MNU_EXPORT_PNG,
|
2008-07-06 09:24:31 +00:00
|
|
|
MNU_EXPORT_MESH,
|
2009-06-08 06:50:16 +00:00
|
|
|
MNU_EXPORT_SURFACES,
|
2009-01-14 05:10:42 +00:00
|
|
|
MNU_EXPORT_VIEW,
|
|
|
|
MNU_EXPORT_SECTION,
|
2009-10-12 09:28:34 +00:00
|
|
|
MNU_EXPORT_WIREFRAME,
|
2008-04-18 11:11:48 +00:00
|
|
|
MNU_EXIT,
|
2008-04-13 10:57:41 +00:00
|
|
|
// View
|
2008-04-18 11:11:48 +00:00
|
|
|
MNU_ZOOM_IN,
|
2008-04-12 15:17:58 +00:00
|
|
|
MNU_ZOOM_OUT,
|
|
|
|
MNU_ZOOM_TO_FIT,
|
2009-09-29 11:35:19 +00:00
|
|
|
MNU_SHOW_GRID,
|
2010-05-03 05:15:28 +00:00
|
|
|
MNU_PERSPECTIVE_PROJ,
|
2010-05-03 05:04:42 +00:00
|
|
|
MNU_ONTO_WORKPLANE,
|
2009-01-02 04:06:47 +00:00
|
|
|
MNU_NEAREST_ORTHO,
|
|
|
|
MNU_NEAREST_ISO,
|
2009-01-13 06:56:05 +00:00
|
|
|
MNU_CENTER_VIEW,
|
2013-10-25 05:04:16 +00:00
|
|
|
MNU_SHOW_MENU_BAR,
|
2009-01-02 10:38:36 +00:00
|
|
|
MNU_SHOW_TOOLBAR,
|
2013-10-25 05:04:16 +00:00
|
|
|
MNU_SHOW_TEXT_WND,
|
2008-04-22 13:14:15 +00:00
|
|
|
MNU_UNITS_INCHES,
|
|
|
|
MNU_UNITS_MM,
|
2013-10-25 05:04:16 +00:00
|
|
|
MNU_FULL_SCREEN,
|
2008-04-14 10:28:32 +00:00
|
|
|
// Edit
|
2008-06-04 10:22:30 +00:00
|
|
|
MNU_UNDO,
|
|
|
|
MNU_REDO,
|
2009-11-03 18:54:49 +00:00
|
|
|
MNU_CUT,
|
|
|
|
MNU_COPY,
|
|
|
|
MNU_PASTE,
|
2009-11-10 03:57:24 +00:00
|
|
|
MNU_PASTE_TRANSFORM,
|
2008-04-14 10:28:32 +00:00
|
|
|
MNU_DELETE,
|
2009-11-03 18:54:49 +00:00
|
|
|
MNU_SELECT_CHAIN,
|
2009-12-21 16:44:00 +00:00
|
|
|
MNU_SELECT_ALL,
|
2009-09-29 11:35:19 +00:00
|
|
|
MNU_SNAP_TO_GRID,
|
2009-06-21 20:39:42 +00:00
|
|
|
MNU_ROTATE_90,
|
2008-04-27 05:00:12 +00:00
|
|
|
MNU_UNSELECT_ALL,
|
2008-06-30 09:34:03 +00:00
|
|
|
MNU_REGEN_ALL,
|
2008-04-13 10:57:41 +00:00
|
|
|
// Request
|
2008-04-27 03:26:27 +00:00
|
|
|
MNU_SEL_WORKPLANE,
|
|
|
|
MNU_FREE_IN_3D,
|
2008-04-13 10:57:41 +00:00
|
|
|
MNU_DATUM_POINT,
|
2008-05-05 11:17:00 +00:00
|
|
|
MNU_WORKPLANE,
|
2008-04-13 10:57:41 +00:00
|
|
|
MNU_LINE_SEGMENT,
|
2008-05-05 06:18:01 +00:00
|
|
|
MNU_CIRCLE,
|
2008-05-12 10:01:44 +00:00
|
|
|
MNU_ARC,
|
2008-04-22 10:53:42 +00:00
|
|
|
MNU_RECTANGLE,
|
2008-04-25 12:07:17 +00:00
|
|
|
MNU_CUBIC,
|
2008-06-30 09:09:17 +00:00
|
|
|
MNU_TTF_TEXT,
|
2009-01-03 12:27:33 +00:00
|
|
|
MNU_SPLIT_CURVES,
|
2010-05-16 16:36:23 +00:00
|
|
|
MNU_TANGENT_ARC,
|
2008-05-07 04:17:29 +00:00
|
|
|
MNU_CONSTRUCTION,
|
2008-04-27 09:03:01 +00:00
|
|
|
// Group
|
2008-05-11 02:57:47 +00:00
|
|
|
MNU_GROUP_3D,
|
|
|
|
MNU_GROUP_WRKPL,
|
2008-04-27 09:03:01 +00:00
|
|
|
MNU_GROUP_EXTRUDE,
|
2008-06-06 11:35:28 +00:00
|
|
|
MNU_GROUP_LATHE,
|
2008-05-11 06:09:46 +00:00
|
|
|
MNU_GROUP_ROT,
|
|
|
|
MNU_GROUP_TRANS,
|
2008-05-28 10:10:31 +00:00
|
|
|
MNU_GROUP_IMPORT,
|
|
|
|
MNU_GROUP_RECENT,
|
2008-04-14 10:28:32 +00:00
|
|
|
// Constrain
|
|
|
|
MNU_DISTANCE_DIA,
|
2015-07-06 02:20:18 +00:00
|
|
|
MNU_REF_DISTANCE,
|
2008-05-17 11:15:14 +00:00
|
|
|
MNU_ANGLE,
|
2015-07-06 02:20:18 +00:00
|
|
|
MNU_REF_ANGLE,
|
2008-05-17 11:15:14 +00:00
|
|
|
MNU_OTHER_ANGLE,
|
2008-06-11 04:22:52 +00:00
|
|
|
MNU_REFERENCE,
|
2008-04-22 05:00:49 +00:00
|
|
|
MNU_EQUAL,
|
2008-05-11 10:40:37 +00:00
|
|
|
MNU_RATIO,
|
2008-04-21 08:16:38 +00:00
|
|
|
MNU_ON_ENTITY,
|
2008-04-30 08:14:32 +00:00
|
|
|
MNU_SYMMETRIC,
|
|
|
|
MNU_AT_MIDPOINT,
|
2008-04-23 07:29:19 +00:00
|
|
|
MNU_HORIZONTAL,
|
|
|
|
MNU_VERTICAL,
|
2008-05-09 05:33:23 +00:00
|
|
|
MNU_PARALLEL,
|
2008-07-02 09:21:29 +00:00
|
|
|
MNU_PERPENDICULAR,
|
2008-05-09 05:33:23 +00:00
|
|
|
MNU_ORIENTED_SAME,
|
2010-05-04 05:11:52 +00:00
|
|
|
MNU_WHERE_DRAGGED,
|
2008-06-12 08:58:58 +00:00
|
|
|
MNU_COMMENT,
|
2008-07-20 11:27:22 +00:00
|
|
|
// Analyze
|
|
|
|
MNU_VOLUME,
|
2010-03-01 17:23:57 +00:00
|
|
|
MNU_AREA,
|
2009-03-29 06:05:28 +00:00
|
|
|
MNU_INTERFERENCE,
|
2009-01-19 10:37:10 +00:00
|
|
|
MNU_NAKED_EDGES,
|
2009-01-04 12:01:46 +00:00
|
|
|
MNU_SHOW_DOF,
|
2008-07-20 11:27:22 +00:00
|
|
|
MNU_TRACE_PT,
|
|
|
|
MNU_STOP_TRACING,
|
|
|
|
MNU_STEP_DIM,
|
2008-02-09 13:52:01 +00:00
|
|
|
// Help,
|
|
|
|
MNU_WEBSITE,
|
2013-08-26 20:54:04 +00:00
|
|
|
MNU_ABOUT
|
2008-04-12 15:17:58 +00:00
|
|
|
} MenuId;
|
2008-04-14 10:28:32 +00:00
|
|
|
typedef void MenuHandler(int id);
|
2013-09-20 17:54:57 +00:00
|
|
|
enum {
|
|
|
|
ESCAPE_KEY = 27,
|
|
|
|
DELETE_KEY = 127,
|
|
|
|
FUNCTION_KEY_BASE = 0xf0
|
|
|
|
};
|
|
|
|
enum {
|
|
|
|
SHIFT_MASK = 0x100,
|
|
|
|
CTRL_MASK = 0x200
|
|
|
|
};
|
2015-03-18 17:02:11 +00:00
|
|
|
enum MenuItemKind {
|
|
|
|
MENU_ITEM_NORMAL = 0,
|
|
|
|
MENU_ITEM_CHECK,
|
|
|
|
MENU_ITEM_RADIO
|
|
|
|
};
|
2008-03-26 09:18:12 +00:00
|
|
|
typedef struct {
|
2015-03-18 17:02:11 +00:00
|
|
|
int level; // 0 == on menu bar, 1 == one level down
|
|
|
|
const char *label; // or NULL for a separator
|
|
|
|
int id; // unique ID
|
|
|
|
int accel; // keyboard accelerator
|
|
|
|
MenuItemKind kind;
|
|
|
|
MenuHandler *fn;
|
2008-03-26 09:18:12 +00:00
|
|
|
} MenuEntry;
|
|
|
|
static const MenuEntry menu[];
|
2008-04-14 10:28:32 +00:00
|
|
|
static void MenuView(int id);
|
|
|
|
static void MenuEdit(int id);
|
|
|
|
static void MenuRequest(int id);
|
2009-12-04 08:08:41 +00:00
|
|
|
void DeleteSelection(void);
|
|
|
|
void CopySelection(void);
|
2009-12-15 12:26:22 +00:00
|
|
|
void PasteClipboard(Vector trans, double theta, double scale);
|
2009-12-04 08:08:41 +00:00
|
|
|
static void MenuClipboard(int id);
|
2008-04-12 14:12:26 +00:00
|
|
|
|
2008-04-01 10:48:44 +00:00
|
|
|
// The width and height (in pixels) of the window.
|
|
|
|
double width, height;
|
2008-03-25 10:02:13 +00:00
|
|
|
// These parameters define the map from 2d screen coordinates to the
|
|
|
|
// coordinates of the 3d sketch points. We will use an axonometric
|
|
|
|
// projection.
|
|
|
|
Vector offset;
|
|
|
|
Vector projRight;
|
2008-04-12 15:17:58 +00:00
|
|
|
Vector projUp;
|
2008-03-27 09:53:51 +00:00
|
|
|
double scale;
|
|
|
|
struct {
|
2009-11-08 01:11:38 +00:00
|
|
|
bool mouseDown;
|
2008-03-27 09:53:51 +00:00
|
|
|
Vector offset;
|
|
|
|
Vector projRight;
|
2008-04-12 15:17:58 +00:00
|
|
|
Vector projUp;
|
2008-03-27 09:53:51 +00:00
|
|
|
Point2d mouse;
|
2009-11-03 18:54:49 +00:00
|
|
|
Point2d mouseOnButtonDown;
|
2009-11-04 07:52:58 +00:00
|
|
|
Vector marqueePoint;
|
2009-09-23 10:59:59 +00:00
|
|
|
bool startedMoving;
|
2008-03-27 09:53:51 +00:00
|
|
|
} orig;
|
|
|
|
|
2010-07-12 06:47:14 +00:00
|
|
|
// Most recent mouse position, updated every time the mouse moves.
|
|
|
|
Point2d currentMousePosition;
|
|
|
|
|
2008-04-28 09:40:02 +00:00
|
|
|
// When the user is dragging a point, don't solve multiple times without
|
|
|
|
// allowing a paint in between. The extra solves are wasted if they're
|
|
|
|
// not displayed.
|
|
|
|
bool havePainted;
|
|
|
|
|
2009-09-23 10:59:59 +00:00
|
|
|
// Some state for the context menu.
|
|
|
|
struct {
|
|
|
|
bool active;
|
|
|
|
} context;
|
|
|
|
|
2008-03-27 09:53:51 +00:00
|
|
|
void NormalizeProjectionVectors(void);
|
2008-04-12 14:12:26 +00:00
|
|
|
Point2d ProjectPoint(Vector p);
|
2008-06-17 19:12:25 +00:00
|
|
|
Vector ProjectPoint3(Vector p);
|
|
|
|
Vector ProjectPoint4(Vector p, double *w);
|
2009-11-04 07:52:58 +00:00
|
|
|
Vector UnProjectPoint(Point2d p);
|
2009-01-02 04:06:47 +00:00
|
|
|
void AnimateOnto(Quaternion quatf, Vector offsetf);
|
2008-05-27 02:22:20 +00:00
|
|
|
void AnimateOntoWorkplane(void);
|
2008-06-11 04:22:52 +00:00
|
|
|
Vector VectorFromProjs(Vector rightUpForward);
|
2008-06-17 19:12:25 +00:00
|
|
|
void HandlePointForZoomToFit(Vector p, Point2d *pmax, Point2d *pmin,
|
|
|
|
double *wmin, bool div);
|
2009-05-29 05:40:17 +00:00
|
|
|
void LoopOverPoints(Point2d *pmax, Point2d *pmin, double *wmin, bool div,
|
|
|
|
bool includingInvisibles);
|
|
|
|
void ZoomToFit(bool includingInvisibles);
|
2008-04-13 10:57:41 +00:00
|
|
|
|
|
|
|
hGroup activeGroup;
|
2008-05-27 02:22:20 +00:00
|
|
|
void EnsureValidActives(void);
|
|
|
|
bool LockedInWorkplane(void);
|
|
|
|
void SetWorkplaneFreeIn3d(void);
|
|
|
|
hEntity ActiveWorkplane(void);
|
2008-09-17 10:13:37 +00:00
|
|
|
void ForceTextWindowShown(void);
|
2008-04-13 10:57:41 +00:00
|
|
|
|
|
|
|
// Operations that must be completed by doing something with the mouse
|
2008-05-05 06:18:01 +00:00
|
|
|
// are noted here. These occupy the same space as the menu ids.
|
2013-09-09 19:50:32 +00:00
|
|
|
enum {
|
|
|
|
FIRST_PENDING = 0x0f000000,
|
|
|
|
DRAGGING_POINTS = 0x0f000000,
|
|
|
|
DRAGGING_NEW_POINT = 0x0f000001,
|
|
|
|
DRAGGING_NEW_LINE_POINT = 0x0f000002,
|
|
|
|
DRAGGING_NEW_CUBIC_POINT = 0x0f000003,
|
|
|
|
DRAGGING_NEW_ARC_POINT = 0x0f000004,
|
|
|
|
DRAGGING_CONSTRAINT = 0x0f000005,
|
|
|
|
DRAGGING_RADIUS = 0x0f000006,
|
|
|
|
DRAGGING_NORMAL = 0x0f000007,
|
|
|
|
DRAGGING_NEW_RADIUS = 0x0f000008,
|
|
|
|
DRAGGING_MARQUEE = 0x0f000009
|
|
|
|
};
|
2008-05-05 06:18:01 +00:00
|
|
|
struct {
|
2009-11-03 18:54:49 +00:00
|
|
|
int operation;
|
2008-05-05 06:18:01 +00:00
|
|
|
|
2015-03-29 22:26:07 +00:00
|
|
|
hRequest request;
|
2009-11-03 18:54:49 +00:00
|
|
|
hEntity point;
|
|
|
|
List<hEntity> points;
|
|
|
|
hEntity circle;
|
|
|
|
hEntity normal;
|
|
|
|
hConstraint constraint;
|
2015-03-29 00:30:52 +00:00
|
|
|
|
2013-08-26 18:58:35 +00:00
|
|
|
const char *description;
|
2008-05-05 06:18:01 +00:00
|
|
|
} pending;
|
|
|
|
void ClearPending(void);
|
2008-04-21 10:12:04 +00:00
|
|
|
// The constraint that is being edited with the on-screen textbox.
|
|
|
|
hConstraint constraintBeingEdited;
|
2008-05-05 06:18:01 +00:00
|
|
|
|
2015-03-29 22:26:07 +00:00
|
|
|
enum SuggestedConstraint {
|
|
|
|
SUGGESTED_NONE = 0,
|
|
|
|
SUGGESTED_HORIZONTAL = Constraint::HORIZONTAL,
|
|
|
|
SUGGESTED_VERTICAL = Constraint::VERTICAL,
|
|
|
|
};
|
|
|
|
SuggestedConstraint SuggestLineConstraint(hRequest lineSegment);
|
|
|
|
|
2009-09-29 11:35:19 +00:00
|
|
|
Vector SnapToGrid(Vector p);
|
2008-05-08 07:30:30 +00:00
|
|
|
bool ConstrainPointByHovered(hEntity pt);
|
2009-01-03 12:27:33 +00:00
|
|
|
void DeleteTaggedRequests(void);
|
2008-06-04 10:22:30 +00:00
|
|
|
hRequest AddRequest(int type, bool rememberForUndo);
|
2008-05-05 06:18:01 +00:00
|
|
|
hRequest AddRequest(int type);
|
2009-01-03 12:27:33 +00:00
|
|
|
|
2010-05-16 16:36:23 +00:00
|
|
|
class ParametricCurve {
|
|
|
|
public:
|
|
|
|
bool isLine; // else circle
|
|
|
|
Vector p0, p1;
|
|
|
|
Vector u, v;
|
|
|
|
double r, theta0, theta1, dtheta;
|
2015-03-29 00:30:52 +00:00
|
|
|
|
2010-05-16 16:36:23 +00:00
|
|
|
void MakeFromEntity(hEntity he, bool reverse);
|
|
|
|
Vector PointAt(double t);
|
|
|
|
Vector TangentAt(double t);
|
|
|
|
double LengthForAuto(void);
|
|
|
|
|
|
|
|
hRequest CreateRequestTrimmedTo(double t, bool extraConstraints,
|
|
|
|
hEntity orig, hEntity arc, bool arcFinish);
|
|
|
|
void ConstrainPointIfCoincident(hEntity hpt);
|
|
|
|
};
|
2009-01-03 12:27:33 +00:00
|
|
|
void MakeTangentArc(void);
|
|
|
|
void SplitLinesOrCurves(void);
|
2009-07-07 08:21:59 +00:00
|
|
|
hEntity SplitEntity(hEntity he, Vector pinter);
|
|
|
|
hEntity SplitLine(hEntity he, Vector pinter);
|
|
|
|
hEntity SplitCircle(hEntity he, Vector pinter);
|
|
|
|
hEntity SplitCubic(hEntity he, Vector pinter);
|
2009-01-03 12:27:33 +00:00
|
|
|
void ReplacePointInConstraints(hEntity oldpt, hEntity newpt);
|
2009-07-08 09:36:18 +00:00
|
|
|
void FixConstraintsForRequestBeingDeleted(hRequest hr);
|
|
|
|
void FixConstraintsForPointBeingDeleted(hEntity hpt);
|
2015-03-29 00:30:52 +00:00
|
|
|
|
2008-04-12 14:12:26 +00:00
|
|
|
// The current selection.
|
|
|
|
class Selection {
|
|
|
|
public:
|
2009-11-03 18:54:49 +00:00
|
|
|
int tag;
|
|
|
|
|
2008-04-12 14:12:26 +00:00
|
|
|
hEntity entity;
|
2008-04-14 10:28:32 +00:00
|
|
|
hConstraint constraint;
|
2008-05-26 09:56:50 +00:00
|
|
|
bool emphasized;
|
2008-04-12 14:12:26 +00:00
|
|
|
|
|
|
|
void Draw(void);
|
|
|
|
|
|
|
|
void Clear(void);
|
|
|
|
bool IsEmpty(void);
|
|
|
|
bool Equals(Selection *b);
|
2009-09-24 15:52:48 +00:00
|
|
|
bool IsStylable(void);
|
2009-11-03 18:54:49 +00:00
|
|
|
bool HasEndpoints(void);
|
2008-04-12 14:12:26 +00:00
|
|
|
};
|
|
|
|
Selection hover;
|
2010-01-03 10:26:15 +00:00
|
|
|
bool hoverWasSelectedOnMousedown;
|
2009-11-03 18:54:49 +00:00
|
|
|
List<Selection> selection;
|
2008-04-23 07:29:19 +00:00
|
|
|
void HitTestMakeSelection(Point2d mp);
|
2008-04-12 15:17:58 +00:00
|
|
|
void ClearSelection(void);
|
2008-05-17 11:15:14 +00:00
|
|
|
void ClearNonexistentSelectionItems(void);
|
2013-09-09 19:50:32 +00:00
|
|
|
enum { MAX_SELECTED = 32 };
|
2008-04-12 15:17:58 +00:00
|
|
|
struct {
|
2008-04-19 11:09:47 +00:00
|
|
|
hEntity point[MAX_SELECTED];
|
2008-04-12 15:17:58 +00:00
|
|
|
hEntity entity[MAX_SELECTED];
|
2008-05-09 05:33:23 +00:00
|
|
|
hEntity anyNormal[MAX_SELECTED];
|
|
|
|
hEntity vector[MAX_SELECTED];
|
2008-06-01 00:26:41 +00:00
|
|
|
hEntity face[MAX_SELECTED];
|
2008-05-17 11:15:14 +00:00
|
|
|
hConstraint constraint[MAX_SELECTED];
|
2008-04-12 15:17:58 +00:00
|
|
|
int points;
|
|
|
|
int entities;
|
2008-04-27 03:26:27 +00:00
|
|
|
int workplanes;
|
2008-06-01 00:26:41 +00:00
|
|
|
int faces;
|
2008-04-14 10:28:32 +00:00
|
|
|
int lineSegments;
|
2008-05-07 08:19:37 +00:00
|
|
|
int circlesOrArcs;
|
2008-07-13 12:44:05 +00:00
|
|
|
int arcs;
|
|
|
|
int cubics;
|
2009-11-10 03:57:24 +00:00
|
|
|
int periodicCubics;
|
2008-05-09 05:33:23 +00:00
|
|
|
int anyNormals;
|
|
|
|
int vectors;
|
2008-05-17 11:15:14 +00:00
|
|
|
int constraints;
|
2009-09-24 15:52:48 +00:00
|
|
|
int stylables;
|
2009-09-29 11:35:19 +00:00
|
|
|
int comments;
|
2009-11-03 18:54:49 +00:00
|
|
|
int withEndpoints;
|
2008-04-12 15:17:58 +00:00
|
|
|
int n;
|
|
|
|
} gs;
|
|
|
|
void GroupSelection(void);
|
2010-01-03 10:26:15 +00:00
|
|
|
bool IsSelected(Selection *s);
|
|
|
|
bool IsSelected(hEntity he);
|
|
|
|
void MakeSelected(hEntity he);
|
|
|
|
void MakeSelected(Selection *s);
|
|
|
|
void MakeUnselected(hEntity he, bool coincidentPointTrick);
|
|
|
|
void MakeUnselected(Selection *s, bool coincidentPointTrick);
|
2009-11-04 07:52:58 +00:00
|
|
|
void SelectByMarquee(void);
|
2008-05-17 11:15:14 +00:00
|
|
|
void ClearSuper(void);
|
|
|
|
|
2013-09-09 19:50:32 +00:00
|
|
|
enum {
|
|
|
|
CMNU_UNSELECT_ALL = 0x100,
|
|
|
|
CMNU_UNSELECT_HOVERED = 0x101,
|
|
|
|
CMNU_CUT_SEL = 0x102,
|
|
|
|
CMNU_COPY_SEL = 0x103,
|
|
|
|
CMNU_PASTE_SEL = 0x104,
|
|
|
|
CMNU_DELETE_SEL = 0x105,
|
|
|
|
CMNU_SELECT_CHAIN = 0x106,
|
|
|
|
CMNU_NEW_CUSTOM_STYLE = 0x110,
|
|
|
|
CMNU_NO_STYLE = 0x111,
|
|
|
|
CMNU_GROUP_INFO = 0x120,
|
|
|
|
CMNU_STYLE_INFO = 0x121,
|
|
|
|
CMNU_REFERENCE_DIM = 0x130,
|
|
|
|
CMNU_OTHER_ANGLE = 0x131,
|
|
|
|
CMNU_DEL_COINCIDENT = 0x132,
|
|
|
|
CMNU_SNAP_TO_GRID = 0x140,
|
|
|
|
CMNU_FIRST_STYLE = 0x40000000
|
|
|
|
};
|
2009-09-23 10:59:59 +00:00
|
|
|
void ContextMenuListStyles(void);
|
2013-10-28 04:28:39 +00:00
|
|
|
int64_t contextMenuCancelTime;
|
2009-09-23 10:59:59 +00:00
|
|
|
|
2009-01-02 10:38:36 +00:00
|
|
|
// The toolbar, in toolbar.cpp
|
2013-10-19 05:36:45 +00:00
|
|
|
bool ToolbarDrawOrHitTest(int x, int y, bool paint, int *menuHit);
|
2009-01-02 10:38:36 +00:00
|
|
|
void ToolbarDraw(void);
|
|
|
|
bool ToolbarMouseMoved(int x, int y);
|
|
|
|
bool ToolbarMouseDown(int x, int y);
|
|
|
|
static void TimerCallback(void);
|
|
|
|
int toolbarHovered;
|
|
|
|
int toolbarTooltipped;
|
|
|
|
int toolbarMouseX, toolbarMouseY;
|
|
|
|
|
2008-04-11 12:47:14 +00:00
|
|
|
// This sets what gets displayed.
|
2008-04-27 03:26:27 +00:00
|
|
|
bool showWorkplanes;
|
2008-05-05 06:18:01 +00:00
|
|
|
bool showNormals;
|
2008-04-11 12:47:14 +00:00
|
|
|
bool showPoints;
|
|
|
|
bool showConstraints;
|
2008-04-27 05:00:12 +00:00
|
|
|
bool showTextWindow;
|
2008-05-28 10:34:55 +00:00
|
|
|
bool showShaded;
|
2009-03-18 04:26:04 +00:00
|
|
|
bool showEdges;
|
2008-06-02 05:38:12 +00:00
|
|
|
bool showFaces;
|
2008-05-28 10:34:55 +00:00
|
|
|
bool showMesh;
|
2008-05-02 10:54:22 +00:00
|
|
|
bool showHdnLines;
|
2010-05-03 05:04:42 +00:00
|
|
|
void ToggleBool(bool *v);
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2009-09-29 11:35:19 +00:00
|
|
|
bool showSnapGrid;
|
|
|
|
|
2009-11-03 18:54:49 +00:00
|
|
|
void AddPointToDraggedList(hEntity hp);
|
|
|
|
void StartDraggingByEntity(hEntity he);
|
|
|
|
void StartDraggingBySelection(void);
|
2008-05-05 06:18:01 +00:00
|
|
|
void UpdateDraggedNum(Vector *pos, double mx, double my);
|
|
|
|
void UpdateDraggedPoint(hEntity hp, double mx, double my);
|
2008-04-13 10:57:41 +00:00
|
|
|
|
2008-03-25 10:02:13 +00:00
|
|
|
// These are called by the platform-specific code.
|
2010-05-03 05:04:42 +00:00
|
|
|
void Paint(void);
|
2008-03-25 10:02:13 +00:00
|
|
|
void MouseMoved(double x, double y, bool leftDown, bool middleDown,
|
2008-03-27 09:53:51 +00:00
|
|
|
bool rightDown, bool shiftDown, bool ctrlDown);
|
|
|
|
void MouseLeftDown(double x, double y);
|
2008-04-22 10:53:42 +00:00
|
|
|
void MouseLeftUp(double x, double y);
|
2008-03-25 10:02:13 +00:00
|
|
|
void MouseLeftDoubleClick(double x, double y);
|
2008-07-06 07:56:24 +00:00
|
|
|
void MouseMiddleOrRightDown(double x, double y);
|
2009-09-23 10:59:59 +00:00
|
|
|
void MouseRightUp(double x, double y);
|
2008-04-01 10:48:44 +00:00
|
|
|
void MouseScroll(double x, double y, int delta);
|
2009-01-02 10:38:36 +00:00
|
|
|
void MouseLeave(void);
|
2009-09-28 10:01:34 +00:00
|
|
|
bool KeyDown(int c);
|
2013-09-16 19:51:20 +00:00
|
|
|
void EditControlDone(const char *s);
|
2009-07-20 19:05:33 +00:00
|
|
|
|
2013-10-28 04:28:39 +00:00
|
|
|
int64_t lastSpaceNavigatorTime;
|
2009-07-20 19:05:33 +00:00
|
|
|
hGroup lastSpaceNavigatorGroup;
|
|
|
|
void SpaceNavigatorMoved(double tx, double ty, double tz,
|
|
|
|
double rx, double ry, double rz, bool shiftDown);
|
|
|
|
void SpaceNavigatorButtonUp(void);
|
2008-03-28 10:00:37 +00:00
|
|
|
};
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2008-03-26 09:18:12 +00:00
|
|
|
|
2008-03-25 10:02:13 +00:00
|
|
|
#endif
|