diff options
author | stuconnolly <stuart02@gmail.com> | 2009-11-01 22:06:45 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-11-01 22:06:45 +0000 |
commit | 7280c2ffaf22f20e4aa8bd1057487b4c3d847c98 (patch) | |
tree | f30e950051f26d8b4499da073e3d000e9a328a07 /Source/SPTableTextFieldCell.h | |
parent | 6a9e12b0bc9600fa3a0b878b74854e5ef29964bb (diff) | |
download | sequelpro-7280c2ffaf22f20e4aa8bd1057487b4c3d847c98.tar.gz sequelpro-7280c2ffaf22f20e4aa8bd1057487b4c3d847c98.tar.bz2 sequelpro-7280c2ffaf22f20e4aa8bd1057487b4c3d847c98.zip |
Improve truncating of table names (by appending ...) using SPTableTextFieldCell.
Diffstat (limited to 'Source/SPTableTextFieldCell.h')
-rw-r--r-- | Source/SPTableTextFieldCell.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Source/SPTableTextFieldCell.h b/Source/SPTableTextFieldCell.h new file mode 100644 index 00000000..51ca62d2 --- /dev/null +++ b/Source/SPTableTextFieldCell.h @@ -0,0 +1,31 @@ +// +// $Id$ +// +// SPTableTextFieldCell.h +// sequel-pro +// +// Created by Stuart Connolly (stuconnolly.com) on November 1, 2009 +// Copyright (c) 2009 Stuart Connolly. All rights reserved. +// +// 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 <Cocoa/Cocoa.h> +#import "ImageAndTextCell.h" + +@interface SPTableTextFieldCell : ImageAndTextCell + +@end |