source: trunk/ICeCoffEE/ICeCoffEE/ICeCoffEELabeledIconCell.h@ 342

Last change on this file since 342 was 319, checked in by Nicholas Riley, 17 years ago

VERSION: Starting with 1.5d1.

ICeCoffEEKeyEquivalents.m: Support "collision font" for displaying key
equivalent conflicts.

ICeCoffEE.m: Increase debug ICCF_MAX_URL_LEN to 120 for testing. Set
icons in ICCF_ConsolidateServicesMenu (needs better caching).

ICeCoffEEServicePrefController.m: Display icons, proper key
equivalents (instead of #, what was I thinking?!) and conflicts. Fix
a dumb bug in ICCF_PropagateServiceStateChange. Ellipsize long menu
items rather than chopping them off. Fix key equivalent column
getting moved when expanding disclosure triangles.

ICeCoffEELabeledIconCell.[hm]: An IconRef-displaying text cell.

Info-APE Module.plist: Update version to 1.5d1.

ICeCoffEE.xcodeproj: Added files, no significant changes.

English.lproj/InfoPlist.strings: Update version to 1.5d1.

English.lproj/APEInfo.rtfd/TXT.rtf: Some overdue documentation
updates.

ICeCoffEEShared.[hm]: Enable debugging; we're now using
kICServiceShortcut (though not yet for customizable shortcuts) so
define its data type.

ICeCoffEETerminal.m: Remove some useless code to "extend to beginning
of string" which seems to have been stolen from the NSTextView
implementation and not well understood. Handle common uses of
parentheses in URLs; still need to do this for NSTextView.

ICeCoffEESetServicesMenu.[hm]: Needs renaming; now with icon
extraction functionality and semi-working code to create a service
info dictionary.

Info-APEManagerPrefPane.plist: Update version to 1.5d1.

File size: 508 bytes
Line 
1//
2// ICeCoffEELabeledIconCell.h
3// ICeCoffEE
4//
5// Created by Nicholas Riley on 6/8/07.
6// Copyright 2007 Nicholas Riley. All rights reserved.
7//
8
9#import <ApplicationServices/ApplicationServices.h>
10#import "ICeCoffEENonHighlightingTextFieldCell.h"
11
12@interface ICeCoffEELabeledIconCell : ICeCoffEENonHighlightingTextFieldCell {
13@private
14 IconRef iconRef;
15}
16
17+ (ICeCoffEELabeledIconCell *)copyFromTextFieldCell:(NSTextFieldCell *)cell;
18
19- (void)setIconRef:(IconRef)anIconRef;
20- (IconRef)iconRef;
21
22@end
Note: See TracBrowser for help on using the repository browser.