aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPColorWellCell.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-08-17 12:10:54 +0000
committerBibiko <bibiko@eva.mpg.de>2010-08-17 12:10:54 +0000
commit487cc8e31b4487c5d85817e9ff73d24dbaeedd74 (patch)
tree6ba1d1905fa5587900928b08991a7e7af781fcbb /Source/SPColorWellCell.m
parent9c466bb7ca3bd581cb52d80a800ad9f46f0817bb (diff)
downloadsequelpro-487cc8e31b4487c5d85817e9ff73d24dbaeedd74.tar.gz
sequelpro-487cc8e31b4487c5d85817e9ff73d24dbaeedd74.tar.bz2
sequelpro-487cc8e31b4487c5d85817e9ff73d24dbaeedd74.zip
• initial commit to set the Editor's colors by using a table approach containing SPColorWellCells
- further improvements will follow soon
Diffstat (limited to 'Source/SPColorWellCell.m')
-rw-r--r--Source/SPColorWellCell.m51
1 files changed, 51 insertions, 0 deletions
diff --git a/Source/SPColorWellCell.m b/Source/SPColorWellCell.m
new file mode 100644
index 00000000..d7f50006
--- /dev/null
+++ b/Source/SPColorWellCell.m
@@ -0,0 +1,51 @@
+//
+// $Id$
+//
+// SPColorWellCell.m
+// sequel-pro
+//
+// Created by Hans-Jörg Bibiko on August 17, 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 <http://code.google.com/p/sequel-pro/>
+
+#import "SPColorWellCell.h"
+
+
+@implementation SPColorWellCell
+
+- (void) drawWithFrame:(NSRect)cellFrame inView:(NSView*)controlView
+{
+ NSRect square = NSInsetRect (cellFrame, 0.5, 0.5);
+
+ if (square.size.height < square.size.width) {
+ square.size.width = square.size.height;
+ square.origin.x = square.origin.x + (cellFrame.size.width -
+ square.size.width) / 2.0;
+ } else {
+ square.size.height = square.size.width;
+ square.origin.y = square.origin.y + (cellFrame.size.height -
+ square.size.height) / 2.0;
+ }
+
+ [[NSColor blackColor] set];
+ [NSBezierPath strokeRect: square];
+
+ [(NSColor*) [self objectValue] set];
+ [NSBezierPath fillRect: NSInsetRect (square, 2.0, 2.0)];
+}
+
+@end