Updating svn:mergeinfo
[adiumx.git] / Source / AIContactListRecentImagesWindowController.h
blobb453e7d90ce0851f38836ff04ca84b4bf495f633
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;
17 AIContactListImagePicker *picker;
18 SEL recentPictureSelector;
20 int currentHoveredIndex;
23 + (void)showWindowFromPoint:(NSPoint)inPoint
24 imagePicker:(AIContactListImagePicker *)inPicker
25 recentPictureSelector:(SEL)inRecentPictureSelector;
27 - (void)positionFromPoint:(NSPoint)inPoint;
29 @end