-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca7e98d
commit 4d6303a
Showing
9 changed files
with
46 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/****************************************************************************************************** | ||
* (C) 2016 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * | ||
* under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * | ||
* LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * | ||
******************************************************************************************************/ | ||
|
||
#include "ZValues.h" | ||
|
||
const int Z_VALUE_BACKGROUND = 0; | ||
const int Z_VALUE_GRID_LINE = 100; | ||
const int Z_VALUE_CURVE = 200; | ||
const int Z_VALUE_POINT = 300; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/****************************************************************************************************** | ||
* (C) 2016 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * | ||
* under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * | ||
* LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * | ||
******************************************************************************************************/ | ||
|
||
#ifndef Z_VALUES_H | ||
#define Z_VALUES_H | ||
|
||
/// Z values for ordering of the various graphics layers, with background at the bottom | ||
extern const int Z_VALUE_BACKGROUND; | ||
extern const int Z_VALUE_CURVE; | ||
extern const int Z_VALUE_GRID; | ||
extern const int Z_VALUE_POINT; | ||
|
||
#endif // Z_VALUES_H |