/usr/include/liborigin2/OriginObj.h is in liborigin2-dev 2:20110117-1build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 | /***************************************************************************
File : OriginObj.h
--------------------------------------------------------------------
Copyright : (C) 2005-2007 Stefan Gerlach
(C) 2007-2008 Alex Kargovsky, Ion Vasilief
Email (use @ for *) : kargovsky*yumr.phys.msu.su, ion_vasilief*yahoo.fr
Description : Origin internal object classes
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301 USA *
* *
***************************************************************************/
#ifndef ORIGIN_OBJ_H
#define ORIGIN_OBJ_H
#include <string.h>
#include <vector>
#include "boost/variant.hpp"
#include "boost/bind.hpp"
#include "boost/date_time/posix_time/ptime.hpp"
using namespace std;
#define _ONAN (-1.23456789E-300)
namespace Origin
{
enum ValueType {Numeric = 0, Text = 1, Time = 2, Date = 3, Month = 4, Day = 5, ColumnHeading = 6, TickIndexedDataset = 7, TextNumeric = 9, Categorical = 10};
enum NumericDisplayType {DefaultDecimalDigits = 0, DecimalPlaces = 1, SignificantDigits = 2};
enum Attach {Frame = 0, Page = 1, Scale = 2};
enum BorderType {BlackLine = 0, Shadow = 1, DarkMarble = 2, WhiteOut = 3, BlackOut = 4, None = -1};
enum FillPattern {NoFill, BDiagDense, BDiagMedium, BDiagSparse, FDiagDense, FDiagMedium, FDiagSparse,
DiagCrossDense, DiagCrossMedium, DiagCrossSparse, HorizontalDense, HorizontalMedium, HorizontalSparse,
VerticalDense, VerticalMedium, VerticalSparse, CrossDense, CrossMedium, CrossSparse};
struct Color
{
enum ColorType {None, Automatic, Regular, Custom, Increment, Indexing, RGB, Mapping};
enum RegularColor {Black = 0, Red = 1, Green = 2, Blue = 3, Cyan = 4, Magenta = 5, Yellow = 6, DarkYellow = 7, Navy = 8,
Purple = 9, Wine = 10, Olive = 11, DarkCyan = 12, Royal= 13, Orange = 14, Violet = 15, Pink = 16, White = 17,
LightGray = 18, Gray = 19, LTYellow = 20, LTCyan = 21, LTMagenta = 22, DarkGray = 23/*, Custom = 255*/};
ColorType type;
union
{
unsigned char regular;
unsigned char custom[3];
unsigned char starting;
unsigned char column;
};
};
struct Rect
{
short left;
short top;
short right;
short bottom;
Rect(short width = 0, short height = 0)
: left(0)
, top(0)
, right(width)
, bottom(height)
{
};
int height() const
{
return bottom - top;
};
int width() const
{
return right - left;
};
bool isValid() const
{
return height() > 0 && width() > 0;
}
};
struct ColorMapLevel
{
Color fillColor;
unsigned char fillPattern;
Color fillPatternColor;
double fillPatternLineWidth;
bool lineVisible;
Color lineColor;
unsigned char lineStyle;
double lineWidth;
bool labelVisible;
};
typedef vector<pair<double, ColorMapLevel> > ColorMapVector;
struct ColorMap
{
bool fillEnabled;
ColorMapVector levels;
};
struct Window
{
enum State {Normal, Minimized, Maximized};
enum Title {Name, Label, Both};
string name;
string label;
int objectID;
bool hidden;
State state;
Title title;
Rect frameRect;
boost::posix_time::ptime creationDate;
boost::posix_time::ptime modificationDate;
Window(const string& _name= "", const string& _label = "", bool _hidden = false)
: name(_name)
, label(_label)
, objectID(-1)
, hidden(_hidden)
, state(Normal)
, title(Both)
{};
};
typedef boost::variant<double, string> variant;
struct SpreadColumn
{
enum ColumnType {X, Y, Z, XErr, YErr, Label, NONE};
string name;
ColumnType type;
ValueType valueType;
int valueTypeSpecification;
int significantDigits;
int decimalPlaces;
NumericDisplayType numericDisplayType;
string command;
string comment;
int width;
unsigned int index;
unsigned int sheet;
vector<variant> data;
SpreadColumn(const string& _name = "", unsigned int _index = 0)
: name(_name)
, index(_index)
, command("")
, comment("")
, valueType(Numeric)
, valueTypeSpecification(0)
, significantDigits(6)
, decimalPlaces(6)
, width(8)
, numericDisplayType(DefaultDecimalDigits)
, sheet(0)
{};
};
struct SpreadSheet : public Window
{
unsigned int maxRows;
bool loose;
bool multisheet;
unsigned int sheets;
vector<SpreadColumn> columns;
SpreadSheet(const string& _name = "")
: Window(_name)
, loose(true)
, multisheet(false)
, sheets(1)
{};
};
struct Excel : public Window
{
unsigned int maxRows;
bool loose;
vector<SpreadSheet> sheets;
Excel(const string& _name = "", const string& _label = "", int _maxRows = 0, bool _hidden = false, bool _loose = true)
: Window(_name, _label, _hidden)
, maxRows(_maxRows)
, loose(_loose)
{
};
};
struct Matrix : public Window
{
enum ViewType {DataView, ImageView};
enum HeaderViewType {ColumnRow, XY};
unsigned short rowCount;
unsigned short columnCount;
int valueTypeSpecification;
int significantDigits;
int decimalPlaces;
NumericDisplayType numericDisplayType;
string command;
int width;
unsigned int index;
unsigned int sheets;
ViewType view;
HeaderViewType header;
ColorMap colorMap;
vector<double> data;
vector<double> coordinates;
Matrix(const string& _name = "", unsigned int _index = 0)
: Window(_name)
, index(_index)
, sheets(1)
, command("")
, valueTypeSpecification(0)
, significantDigits(6)
, decimalPlaces(6)
, width(8)
, numericDisplayType(DefaultDecimalDigits)
, view(DataView)
, header(ColumnRow)
{coordinates.push_back(10.0);coordinates.push_back(10.0);coordinates.push_back(1.0);coordinates.push_back(1.0);};
};
struct Function
{
enum FunctionType {Normal, Polar};
string name;
FunctionType type;
string formula;
double begin;
double end;
int totalPoints;
unsigned int index;
Function(const string& _name = "", unsigned int _index = 0)
: name(_name)
, index(_index)
, type(Normal)
, formula("")
, begin(0.0)
, end(0.0)
, totalPoints(0)
{};
};
struct TextBox
{
string text;
Rect clientRect;
Color color;
unsigned short fontSize;
int rotation;
int tab;
BorderType borderType;
Attach attach;
TextBox(const string& _text = "")
: text(_text)
{};
TextBox(const string& _text, const Rect& _clientRect, const Color& _color, unsigned short _fontSize, int _rotation, int _tab, BorderType _borderType, Attach _attach)
: text(_text)
, clientRect(_clientRect)
, color(_color)
, fontSize(_fontSize)
, rotation(_rotation)
, tab(_tab)
, borderType(_borderType)
, attach(_attach)
{};
};
struct PieProperties
{
unsigned char viewAngle;
unsigned char thickness;
bool clockwiseRotation;
short rotation;
unsigned short radius;
unsigned short horizontalOffset;
unsigned long displacedSectionCount; // maximum - 32 sections
unsigned short displacement;
//labels
bool formatAutomatic;
bool formatValues;
bool formatPercentages;
bool formatCategories;
bool positionAssociate;
unsigned short distance;
PieProperties()
: clockwiseRotation(false)
, formatAutomatic(false)
, formatValues(false)
, formatPercentages(false)
, formatCategories(false)
, positionAssociate(false)
{};
};
struct VectorProperties
{
enum VectorPosition {Tail, Midpoint, Head};
Color color;
double width;
unsigned short arrowLenght;
unsigned char arrowAngle;
bool arrowClosed;
string endXColumnName;
string endYColumnName;
VectorPosition position;
string angleColumnName;
string magnitudeColumnName;
float multiplier;
int constAngle;
int constMagnitude;
VectorProperties()
: arrowClosed(false)
, position(Tail)
, multiplier(1.0)
, constAngle(0)
, constMagnitude(0)
{};
};
struct TextProperties
{
enum Justify {Left, Center, Right};
Color color;
bool fontBold;
bool fontItalic;
bool fontUnderline;
bool whiteOut;
Justify justify;
short rotation;
short xOffset;
short yOffset;
unsigned short fontSize;
};
struct SurfaceProperties
{
struct SurfaceColoration
{
bool fill;
bool contour;
Color lineColor;
double lineWidth;
};
enum Type {ColorMap3D, ColorFill, WireFrame, Bars};
enum Grids {None, X, Y, XY};
unsigned char type;
Grids grids;
double gridLineWidth;
Color gridColor;
bool backColorEnabled;
Color frontColor;
Color backColor;
bool sideWallEnabled;
Color xSideWallColor;
Color ySideWallColor;
SurfaceColoration surface;
SurfaceColoration topContour;
SurfaceColoration bottomContour;
ColorMap colorMap;
};
struct PercentileProperties
{
unsigned char maxSymbolType;
unsigned char p99SymbolType;
unsigned char meanSymbolType;
unsigned char p1SymbolType;
unsigned char minSymbolType;
Color symbolColor;
Color symbolFillColor;
unsigned short symbolSize;
unsigned char boxRange;
unsigned char whiskersRange;
double boxCoeff;
double whiskersCoeff;
bool diamondBox;
};
struct GraphCurve
{
enum Plot {Line = 200, Scatter=201, LineSymbol=202, Column = 203, Area = 204, HiLoClose = 205, Box = 206,
ColumnFloat = 207, Vector = 208, PlotDot = 209, Wall3D = 210, Ribbon3D = 211, Bar3D = 212, ColumnStack = 213,
AreaStack = 214, Bar = 215, BarStack = 216, FlowVector = 218, Histogram = 219, MatrixImage = 220, Pie = 225,
Contour = 226, Unknown = 230, ErrorBar = 231, TextPlot = 232, XErrorBar = 233, SurfaceColorMap = 236,
SurfaceColorFill = 237, SurfaceWireframe = 238, SurfaceBars = 239, Line3D = 240, Text3D = 241, Mesh3D = 242,
XYZContour = 243, XYZTriangular = 245, LineSeries = 246, YErrorBar = 254, XYErrorBar = 255, GraphScatter3D = 0x8AF0,
GraphTrajectory3D = 0x8AF1, Polar = 0x00020000, SmithChart = 0x00040000, FillArea = 0x00800000};
enum LineStyle {Solid = 0, Dash = 1, Dot = 2, DashDot = 3, DashDotDot = 4, ShortDash = 5, ShortDot = 6, ShortDashDot = 7};
enum LineConnect {NoLine = 0, Straight = 1, TwoPointSegment = 2, ThreePointSegment = 3, BSpline = 8, Spline = 9, StepHorizontal = 11, StepVertical = 12, StepHCenter = 13, StepVCenter = 14, Bezier = 15};
unsigned char type;
string dataName;
string xColumnName;
string yColumnName;
string zColumnName;
Color lineColor;
unsigned char lineStyle;
unsigned char lineConnect;
unsigned char boxWidth;
double lineWidth;
bool fillArea;
unsigned char fillAreaType;
unsigned char fillAreaPattern;
Color fillAreaColor;
Color fillAreaPatternColor;
double fillAreaPatternWidth;
unsigned char fillAreaPatternBorderStyle;
Color fillAreaPatternBorderColor;
double fillAreaPatternBorderWidth;
unsigned short symbolType;
Color symbolColor;
Color symbolFillColor;
double symbolSize;
unsigned char symbolThickness;
unsigned char pointOffset;
bool connectSymbols;
//pie
PieProperties pie;
//vector
VectorProperties vector;
//text
TextProperties text;
//surface
SurfaceProperties surface;
//contour
ColorMap colorMap;
};
struct GraphAxisBreak
{
bool show;
bool log10;
double from;
double to;
double position;
double scaleIncrementBefore;
double scaleIncrementAfter;
unsigned char minorTicksBefore;
unsigned char minorTicksAfter;
GraphAxisBreak()
: show(false)
{};
};
struct GraphGrid
{
bool hidden;
unsigned char color;
unsigned char style;
double width;
};
struct GraphAxisFormat
{
bool hidden;
unsigned char color;
double thickness;
double majorTickLength;
int majorTicksType;
int minorTicksType;
int axisPosition;
double axisPositionValue;
TextBox label;
string prefix;
string suffix;
};
struct GraphAxisTick
{
bool hidden;
unsigned char color;
ValueType valueType;
int valueTypeSpecification;
int decimalPlaces;
unsigned short fontSize;
bool fontBold;
string dataName;
string columnName;
int rotation;
};
struct GraphAxis
{
enum AxisPosition {Left = 0, Bottom, Right, Top, Front, Back};
enum Scale {Linear = 0, Log10 = 1, Probability = 2, Probit = 3, Reciprocal = 4, OffsetReciprocal = 5, Logit = 6, Ln = 7, Log2 = 8};
AxisPosition position;
double min;
double max;
double step;
unsigned char majorTicks;
unsigned char minorTicks;
unsigned char scale;
GraphGrid majorGrid;
GraphGrid minorGrid;
GraphAxisFormat formatAxis[2];
GraphAxisTick tickAxis[2]; //bottom-top, left-right
};
struct Figure
{
enum FigureType {Rectangle, Circle};
FigureType type;
Rect clientRect;
Attach attach;
Color color;
unsigned char style;
double width;
Color fillAreaColor;
unsigned char fillAreaPattern;
Color fillAreaPatternColor;
double fillAreaPatternWidth;
bool useBorderColor;
Figure(FigureType _type = Rectangle)
: type(_type)
{
};
};
struct LineVertex
{
unsigned char shapeType;
double shapeWidth;
double shapeLength;
double x;
double y;
LineVertex()
: shapeType(0)
, shapeWidth(0.0)
, shapeLength(0.0)
, x(0.0)
, y(0.0)
{};
};
struct Line
{
Rect clientRect;
Color color;
Attach attach;
double width;
unsigned char style;
LineVertex begin;
LineVertex end;
};
struct Bitmap
{
Rect clientRect;
Attach attach;
unsigned long size;
string windowName;
BorderType borderType;
unsigned char* data;
Bitmap(const string& _name = "")
: size(0)
, data(0)
, windowName(_name)
, borderType(Origin::None)
{
};
Bitmap(const Bitmap& bitmap)
: clientRect(bitmap.clientRect)
, attach(bitmap.attach)
, size(bitmap.size)
, windowName(bitmap.windowName)
, borderType(bitmap.borderType)
{
if(size > 0)
{
data = new unsigned char[size];
memcpy(data, bitmap.data, size);
}
};
~Bitmap()
{
if(size > 0)
delete data;
};
};
struct ColorScale
{
bool reverseOrder;
unsigned short labelGap;
unsigned short colorBarThickness;
Color labelsColor;
};
struct GraphLayer
{
Rect clientRect;
TextBox legend;
Color backgroundColor;
BorderType borderType;
GraphAxis xAxis;
GraphAxis yAxis;
GraphAxis zAxis;
GraphAxisBreak xAxisBreak;
GraphAxisBreak yAxisBreak;
GraphAxisBreak zAxisBreak;
double histogramBin;
double histogramBegin;
double histogramEnd;
PercentileProperties percentile;
ColorScale colorScale;
vector<TextBox> texts;
vector<TextBox> pieTexts;
vector<Line> lines;
vector<Figure> figures;
vector<Bitmap> bitmaps;
vector<GraphCurve> curves;
float xLength;
float yLength;
float zLength;
bool imageProfileTool;
double vLine;
double hLine;
bool isXYY3D;
GraphLayer()
: imageProfileTool(false)
, isXYY3D(false)
{};
//bool threeDimensional;
bool is3D() const
{
return curves.end() != find_if(curves.begin(), curves.end(),
boost::bind(logical_or<bool>(), boost::bind(&GraphCurve::type, _1) == GraphCurve::Line3D,
boost::bind(&GraphCurve::type, _1) == GraphCurve::Mesh3D));
}
};
struct GraphLayerRange
{
double min;
double max;
double step;
GraphLayerRange(double _min = 0.0, double _max = 0.0, double _step = 0.0)
: min(_min)
, max(_max)
, step(_step)
{};
};
struct Graph : public Window
{
vector<GraphLayer> layers;
unsigned short width;
unsigned short height;
bool is3D;
bool isLayout;
Graph(const string& _name = "")
: Window(_name)
, is3D(false)
, isLayout(false)
{};
};
struct Note : public Window
{
string text;
Note(const string& _name = "")
: Window(_name)
{};
};
struct ProjectNode
{
enum NodeType {SpreadSheet, Matrix, Excel, Graph, Graph3D, Note, Folder};
NodeType type;
string name;
boost::posix_time::ptime creationDate;
boost::posix_time::ptime modificationDate;
ProjectNode(const string& _name = "", NodeType _type = Folder, const boost::posix_time::ptime& _creationDate = boost::posix_time::ptime(), const boost::posix_time::ptime& _modificationDate = boost::posix_time::ptime())
: name(_name)
, type(_type)
, creationDate(_creationDate)
, modificationDate(_modificationDate)
{};
};
}
#endif // ORIGIN_OBJ_H
|