From 271b47b558c0fdbf23c68d29163185127ac5d4f3 Mon Sep 17 00:00:00 2001 From: Bibiko Date: Fri, 8 Oct 2010 12:31:32 +0000 Subject: =?UTF-8?q?=E2=80=A2=20improved=20issues=20for=20tooltip=20in=20Co?= =?UTF-8?q?ntent=20and=20Custom=20tables=20-=20added=20not=20yet=20support?= =?UTF-8?q?ed=20MCPGeometryData=20view=20-=20removed=20@try=20clauses,=20i?= =?UTF-8?q?nstead=20make=20usage=20of=20pthread=5Fmutex=5Flock=20etc.=20ap?= =?UTF-8?q?proach=20=E2=80=A2=20adjusted=20autodetectWidthForColumnDefinit?= =?UTF-8?q?ion:=20for=20SPCopyTable=20to=20calculate=20the=20width=20by=20?= =?UTF-8?q?taking=20the=20WKT=20string=20of=20MCPGeometryData=20=E2=80=A2?= =?UTF-8?q?=20added=20SPGeometryDataView=20class=20which=20will=20be=20use?= =?UTF-8?q?d=20for=20displaying=20GEOMETRY=20data=20as=20image=20(for=20to?= =?UTF-8?q?oltips,=20inside=20field=20editor=20sheet)=20[not=20yet=20imple?= =?UTF-8?q?mented]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/SPGeometryDataView.m | 50 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Source/SPGeometryDataView.m (limited to 'Source/SPGeometryDataView.m') diff --git a/Source/SPGeometryDataView.m b/Source/SPGeometryDataView.m new file mode 100644 index 00000000..8cfaf767 --- /dev/null +++ b/Source/SPGeometryDataView.m @@ -0,0 +1,50 @@ +// +// $Id$ +// +// SPGeometryDataView.h +// sequel-pro +// +// Created by Hans-Jörg Bibiko on October 08, 2010 +// +// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// More info at + +#import "SPGeometryDataView.h" + + +@implementation SPGeometryDataView + +/** + * Initialize SPGeometryDataView object + */ +- (id)initWithFrame:(NSRect)frame +{ + if ( self = [super initWithFrame:frame] ) + { + ; + } + return self; +} + +/** + * dealloc + */ +- (void)dealloc +{ + [super dealloc]; +} + +@end -- cgit v1.2.3