summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c5da071)
raw | patch | inline | side by side (parent: c5da071)
author | mental <mental@users.sourceforge.net> | |
Mon, 5 Mar 2007 05:50:20 +0000 (05:50 +0000) | ||
committer | mental <mental@users.sourceforge.net> | |
Mon, 5 Mar 2007 05:50:20 +0000 (05:50 +0000) |
diff --git a/src/document.cpp b/src/document.cpp
index 3579c4c91ffc1906ae25060816f0c804093c0d90..ab60031675c67eee00ccdab75b2706ca21e7b153 100644 (file)
--- a/src/document.cpp
+++ b/src/document.cpp
*/
void SPDocument::fitToRect(NRRect const & rect)
{
- g_return_if_fail(!empty(rect));
+ g_return_if_fail(!nr_rect_d_test_empty(&rect));
gdouble w = rect.x1 - rect.x0;
gdouble h = rect.y1 - rect.y0;
diff --git a/src/libnr/nr-rect.cpp b/src/libnr/nr-rect.cpp
index 76d7fff8dd8ce956bc4f6b326d698a0992821253..21d3f470ad129e1d60b5def6035b06a16084f4ee 100644 (file)
--- a/src/libnr/nr-rect.cpp
+++ b/src/libnr/nr-rect.cpp
#include "nr-rect-l.h"
+NRRect::NRRect(NR::Rect const &rect)
+: x0(rect.min()[NR::X]), y0(rect.min()[NR::Y]),
+ x1(rect.max()[NR::X]), y1(rect.max()[NR::Y])
+{}
+
+NRRect::NRRect(NR::Maybe<NR::Rect> const &rect) {
+ if (rect) {
+ x0 = rect->min()[NR::X];
+ y0 = rect->min()[NR::Y];
+ x1 = rect->max()[NR::X];
+ y1 = rect->max()[NR::Y];
+ } else {
+ nr_rect_d_set_empty(this);
+ }
+}
+
+NR::Maybe<NR::Rect> NRRect::upgrade() const {
+ if (nr_rect_d_test_empty(this)) {
+ return NR::Nothing();
+ } else {
+ return NR::Rect(NR::Point(x0, y0), NR::Point(x1, y1));
+ }
+}
+
/**
* \param r0 Rectangle.
* \param r1 Another rectangle.
diff --git a/src/libnr/nr-rect.h b/src/libnr/nr-rect.h
index 115f94e46043f2bb36fd3485559c18187d6a8833..dd7caa897ea100c4a59704df33943926033ada89 100644 (file)
--- a/src/libnr/nr-rect.h
+++ b/src/libnr/nr-rect.h
#include <stdexcept>
+#include <limits>
#include "libnr/nr-values.h"
#include <libnr/nr-coord.h>
#include <libnr/nr-maybe.h>
#include <libnr/nr-point-matrix-ops.h>
-struct NRMatrix;
namespace NR {
struct Matrix;
-}
-
-/* NULL rect is infinite */
-
-struct NRRect {
- NR::Coord x0, y0, x1, y1;
-};
-
-inline bool empty(NRRect const &r)
-{
- return ( ( r.x0 > r.x1 ) ||
- ( r.y0 > r.y1 ) );
-}
-
-#define nr_rect_d_set_empty(r) (*(r) = NR_RECT_EMPTY)
-#define nr_rect_l_set_empty(r) (*(r) = NR_RECT_L_EMPTY)
-
-#define nr_rect_d_test_empty(r) ((r) && NR_RECT_DFLS_TEST_EMPTY(r))
-#define nr_rect_l_test_empty(r) ((r) && NR_RECT_DFLS_TEST_EMPTY(r))
-
-#define nr_rect_d_test_intersect(r0,r1) \
- (!nr_rect_d_test_empty(r0) && !nr_rect_d_test_empty(r1) && \
- !((r0) && (r1) && !NR_RECT_DFLS_TEST_INTERSECT(r0, r1)))
-#define nr_rect_l_test_intersect(r0,r1) \
- (!nr_rect_l_test_empty(r0) && !nr_rect_l_test_empty(r1) && \
- !((r0) && (r1) && !NR_RECT_DFLS_TEST_INTERSECT(r0, r1)))
-
-#define nr_rect_d_point_d_test_inside(r,p) ((p) && (!(r) || (!NR_RECT_DF_TEST_EMPTY(r) && NR_RECT_DF_POINT_DF_TEST_INSIDE(r,p))))
-#define nr_rect_l_point_l_test_inside(r,p) ((p) && (!(r) || (!NR_RECT_DFLS_TEST_EMPTY(r) && NR_RECT_LS_POINT_LS_TEST_INSIDE(r,p))))
-#define nr_rect_l_test_inside(r,x,y) ((!(r) || (!NR_RECT_DFLS_TEST_EMPTY(r) && NR_RECT_LS_TEST_INSIDE(r,x,y))))
-
-// returns minimal rect which covers all of r0 not covered by r1
-NRRectL *nr_rect_l_subtract(NRRectL *d, NRRectL const *r0, NRRectL const *r1);
-
-// returns the area of r
-NR::ICoord nr_rect_l_area(NRRectL *r);
-
-/* NULL values are OK for r0 and r1, but not for d */
-NRRect *nr_rect_d_intersect(NRRect *d, NRRect const *r0, NRRect const *r1);
-NRRectL *nr_rect_l_intersect(NRRectL *d, NRRectL const *r0, NRRectL const *r1);
-
-NRRect *nr_rect_d_union(NRRect *d, NRRect const *r0, NRRect const *r1);
-NRRectL *nr_rect_l_union(NRRectL *d, NRRectL const *r0, NRRectL const *r1);
-
-NRRect *nr_rect_union_pt(NRRect *dst, NR::Point const &p);
-NRRect *nr_rect_d_union_xy(NRRect *d, NR::Coord x, NR::Coord y);
-NRRectL *nr_rect_l_union_xy(NRRectL *d, NR::ICoord x, NR::ICoord y);
-
-NRRect *nr_rect_d_matrix_transform(NRRect *d, NRRect const *s, NR::Matrix const &m);
-NRRect *nr_rect_d_matrix_transform(NRRect *d, NRRect const *s, NRMatrix const *m);
-NRRectL *nr_rect_l_enlarge(NRRectL *d, int amount);
-
-namespace NR {
/** A rectangle is always aligned to the X and Y axis. This means it
* can be defined using only 4 coordinates, and determining
* points. Infinities are also permitted. */
class Rect {
public:
- Rect() : _min(0.0, 0.0), _max(0.0, 0.0) {}
- Rect(NRRect const &r) : _min(r.x0, r.y0), _max(r.x1, r.y1) {}
- Rect(Rect const &r) : _min(r._min), _max(r._max) {}
+ Rect() : _min(-_inf(), -_inf()), _max(_inf(), _inf()) {}
Rect(Point const &p0, Point const &p1);
Point const &min() const { return _min; }
friend inline std::ostream &operator<<(std::ostream &out_file, NR::Rect const &in_rect);
private:
+ static double _inf() {
+ return std::numeric_limits<double>::infinity();
+ }
template <NR::Dim2 axis>
double extent() const {
} /* namespace NR */
+/* legacy rect stuff */
+
+struct NRMatrix;
+
+/* NULL rect is infinite */
+
+struct NRRect {
+ NRRect() {}
+ NRRect(NR::Coord xmin, NR::Coord ymin, NR::Coord xmax, NR::Coord ymax)
+ : x0(xmin), y0(ymin), x1(xmin), y1(ymin)
+ {}
+ explicit NRRect(NR::Rect const &rect);
+ explicit NRRect(NR::Maybe<NR::Rect> const &rect);
+ operator NR::Maybe<NR::Rect>() const { return upgrade(); }
+ NR::Maybe<NR::Rect> upgrade() const;
+
+ NR::Coord x0, y0, x1, y1;
+};
+
+#define nr_rect_d_set_empty(r) (*(r) = NR_RECT_EMPTY)
+#define nr_rect_l_set_empty(r) (*(r) = NR_RECT_L_EMPTY)
+
+#define nr_rect_d_test_empty(r) ((r) && NR_RECT_DFLS_TEST_EMPTY(r))
+#define nr_rect_l_test_empty(r) ((r) && NR_RECT_DFLS_TEST_EMPTY(r))
+
+#define nr_rect_d_test_intersect(r0,r1) \
+ (!nr_rect_d_test_empty(r0) && !nr_rect_d_test_empty(r1) && \
+ !((r0) && (r1) && !NR_RECT_DFLS_TEST_INTERSECT(r0, r1)))
+#define nr_rect_l_test_intersect(r0,r1) \
+ (!nr_rect_l_test_empty(r0) && !nr_rect_l_test_empty(r1) && \
+ !((r0) && (r1) && !NR_RECT_DFLS_TEST_INTERSECT(r0, r1)))
+
+#define nr_rect_d_point_d_test_inside(r,p) ((p) && (!(r) || (!NR_RECT_DF_TEST_EMPTY(r) && NR_RECT_DF_POINT_DF_TEST_INSIDE(r,p))))
+#define nr_rect_l_point_l_test_inside(r,p) ((p) && (!(r) || (!NR_RECT_DFLS_TEST_EMPTY(r) && NR_RECT_LS_POINT_LS_TEST_INSIDE(r,p))))
+#define nr_rect_l_test_inside(r,x,y) ((!(r) || (!NR_RECT_DFLS_TEST_EMPTY(r) && NR_RECT_LS_TEST_INSIDE(r,x,y))))
+
+// returns minimal rect which covers all of r0 not covered by r1
+NRRectL *nr_rect_l_subtract(NRRectL *d, NRRectL const *r0, NRRectL const *r1);
+
+// returns the area of r
+NR::ICoord nr_rect_l_area(NRRectL *r);
+
+/* NULL values are OK for r0 and r1, but not for d */
+NRRect *nr_rect_d_intersect(NRRect *d, NRRect const *r0, NRRect const *r1);
+NRRectL *nr_rect_l_intersect(NRRectL *d, NRRectL const *r0, NRRectL const *r1);
+
+NRRect *nr_rect_d_union(NRRect *d, NRRect const *r0, NRRect const *r1);
+NRRectL *nr_rect_l_union(NRRectL *d, NRRectL const *r0, NRRectL const *r1);
+
+NRRect *nr_rect_union_pt(NRRect *dst, NR::Point const &p);
+NRRect *nr_rect_d_union_xy(NRRect *d, NR::Coord x, NR::Coord y);
+NRRectL *nr_rect_l_union_xy(NRRectL *d, NR::ICoord x, NR::ICoord y);
+
+NRRect *nr_rect_d_matrix_transform(NRRect *d, NRRect const *s, NR::Matrix const &m);
+NRRect *nr_rect_d_matrix_transform(NRRect *d, NRRect const *s, NRMatrix const *m);
+NRRectL *nr_rect_l_enlarge(NRRectL *d, int amount);
+
#endif /* !LIBNR_NR_RECT_H_SEEN */
index bb310cc49c91093510f37eccf9540c02f5e85cc6..846a16bb8a439abf83f7b1c51855fe653f765da3 100644 (file)
--- a/src/libnr/nr-values.cpp
+++ b/src/libnr/nr-values.cpp
*/
NRMatrix NR_MATRIX_IDENTITY =
{{1.0, 0.0, 0.0, 1.0, 0.0, 0.0}};
-NRRect NR_RECT_EMPTY =
- {NR_HUGE, NR_HUGE, -NR_HUGE, -NR_HUGE};
+NRRect NR_RECT_EMPTY(NR_HUGE, NR_HUGE, -NR_HUGE, -NR_HUGE);
NRRectL NR_RECT_L_EMPTY =
{NR_HUGE_L, NR_HUGE_L, -NR_HUGE_L, -NR_HUGE_L};
NRRectL NR_RECT_S_EMPTY =
index 34041b204b1ace195ad7493f7484f0ad9a3796ba..57fa6bb848b9a7486bef57376a5bfb67349996c7 100644 (file)
g_return_if_fail(doc != NULL);
g_return_if_fail(desktop->selection != NULL);
g_return_if_fail(!desktop->selection->isEmpty());
- NRRect bbox = {0,0,0,0};
+ NRRect bbox(0, 0, 0, 0);
desktop->selection->bounds(&bbox);
- if (!empty(bbox)) {
+ if (!nr_rect_d_test_empty(&bbox)) {
doc->fitToRect(bbox);
}
};
void fit_canvas_to_drawing(SPDocument *doc) {
g_return_if_fail(doc != NULL);
- NRRect bbox = {0,0,0,0};
+ NRRect bbox(0, 0, 0, 0);
sp_document_ensure_up_to_date (doc);
sp_item_invoke_bbox(SP_ITEM(doc->root), &bbox, sp_item_i2r_affine(SP_ITEM(doc->root)), TRUE);
- if (!empty(bbox)) {
+ if (!nr_rect_d_test_empty(&bbox)) {
doc->fitToRect(bbox);
}
};
diff --git a/src/selection.cpp b/src/selection.cpp
index 82c82b5232c8053dd4eba0f5a0615580b8a0b636..5c60e5f41e76652079dab454d900d697e5583815 100644 (file)
--- a/src/selection.cpp
+++ b/src/selection.cpp
NR::Rect Selection::boundsInDocument() const {
NRRect r;
- return NR::Rect(*boundsInDocument(&r));
+ NR::Maybe<NR::Rect> rect(boundsInDocument(&r)->upgrade());
+ if (rect) {
+ return *rect;
+ } else {
+ // FIXME
+ return NR::Rect(NR::Point(0, 0), NR::Point(0, 0));
+ }
}
/** Extract the position of the center from the first selected object */
diff --git a/src/sp-item.cpp b/src/sp-item.cpp
index 521d2d1cc402cd022cb8bb178b4e3c8bf9dbf6f4..22114cd5be9d368a6be8e8e6d9f270d81aaf2b9c 100644 (file)
--- a/src/sp-item.cpp
+++ b/src/sp-item.cpp
{
NRRect r;
sp_item_invoke_bbox_full(this, &r, transform, type, TRUE);
- if (nr_rect_d_test_empty(&r)) {
- return NR::Nothing();
- } else {
- return NR::Rect(r);
- }
+ return r;
}
void
{
NRRect ret;
sp_item_invoke_bbox(item, &ret, sp_item_i2d_affine(item), TRUE);
- return NR::Rect(ret);
+ NR::Maybe<NR::Rect> result = ret.upgrade();
+ if (result) {
+ return *result;
+ } else {
+ // FIXME
+ return NR::Rect(NR::Point(0, 0), NR::Point(0, 0));
+ }
}
static void sp_item_private_snappoints(SPItem const *item, SnapPointsIter p)