From d75eaf5688872bd6fe245e11c048c40817b7ee1b Mon Sep 17 00:00:00 2001 From: "gtm.daemon" Date: Wed, 24 Aug 2011 16:00:31 +0000 Subject: [Author: justincohen] Fade to translucent mask used by chrome instead of an ellipses or just truncating the string. R=dmaclach APPROVED=dmaclach DELTA=249 (249 added, 0 deleted, 0 changed) --- iPhone/GTMFadeTruncatingLabel.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 iPhone/GTMFadeTruncatingLabel.h (limited to 'iPhone/GTMFadeTruncatingLabel.h') diff --git a/iPhone/GTMFadeTruncatingLabel.h b/iPhone/GTMFadeTruncatingLabel.h new file mode 100755 index 0000000..5b768f0 --- /dev/null +++ b/iPhone/GTMFadeTruncatingLabel.h @@ -0,0 +1,32 @@ +// +// GTMFadeTruncatingLabel.h +// +// Copyright 2011 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); you may not +// use this file except in compliance with the License. You may obtain a copy +// of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. +// + +#import + +typedef enum { + GTMFadeTruncatingTail = 0x1, + GTMFadeTruncatingHead = 0x2, + GTMFadeTruncatingHeadAndTail = GTMFadeTruncatingHead | GTMFadeTruncatingTail +} GTMFadeTruncatingMode; + +@interface GTMFadeTruncatingLabel : UILabel + +// Which side(s) to truncate. +@property(nonatomic, assign) GTMFadeTruncatingMode truncateMode; + +@end -- cgit v1.2.3