diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-10-08 23:45:46 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-10-08 23:45:46 +0000 |
commit | a8bc3c8f6cedc76cd64babacaec4310737787edc (patch) | |
tree | ac15331180e7b4cfb2984853e04eb88dc0927d6c /Source/SPGeometryDataView.h | |
parent | 8b4c46a01eab8f390ff4ab8ec5b78d8055ff4f34 (diff) | |
download | sequelpro-a8bc3c8f6cedc76cd64babacaec4310737787edc.tar.gz sequelpro-a8bc3c8f6cedc76cd64babacaec4310737787edc.tar.bz2 sequelpro-a8bc3c8f6cedc76cd64babacaec4310737787edc.zip |
• some further work on displaying geometry fields as image
Diffstat (limited to 'Source/SPGeometryDataView.h')
-rw-r--r-- | Source/SPGeometryDataView.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/Source/SPGeometryDataView.h b/Source/SPGeometryDataView.h index 3ff72110..c40cff97 100644 --- a/Source/SPGeometryDataView.h +++ b/Source/SPGeometryDataView.h @@ -29,14 +29,15 @@ { NSString *type; NSArray *coordinates; - double x_min; - double x_max; - double y_min; - double y_max; - double width; - double height; - double zoom_factor; - double margin_offset; + CGFloat x_min; + CGFloat x_max; + CGFloat y_min; + CGFloat y_max; + CGFloat width; + CGFloat height; + CGFloat zoom_factor; + CGFloat margin_offset; + } - (id)initWithCoordinates:(NSDictionary*)coord; |