Added `-[NSArray validateAsPropertyList]` and `-[NSDictionary validateAsPropertyList...
[adiumx.git] / Source / AIContactListRecentImagesWindowController.h
blob1ab4cb5b79aabbffb14643a8ba55c700b885eb19
1 //
2 // AIContactListRecentImagesWindowController.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 12/19/05.
6 //
8 #import <Adium/AIWindowController.h>
10 @class AIImageGridView, AIColoredBoxView, AIMenuItemView, AIContactListImagePicker;
12 @interface AIContactListRecentImagesWindowController : AIWindowController {
13 IBOutlet AIImageGridView *imageGridView;
14 IBOutlet AIColoredBoxView *coloredBox;
15 IBOutlet AIMenuItemView *menuItemView;
16 IBOutlet NSTextField *label_recentIcons;
18 AIContactListImagePicker *picker;
19 SEL recentPictureSelector;
21 int currentHoveredIndex;
24 + (void)showWindowFromPoint:(NSPoint)inPoint
25 imagePicker:(AIContactListImagePicker *)inPicker
26 recentPictureSelector:(SEL)inRecentPictureSelector;
28 - (void)positionFromPoint:(NSPoint)inPoint;
30 @end