Adium

Changeset 24125

Show
Ignore:
Timestamp:
06/30/2008 10:40:35 PM (5 months ago)
Author:
evands
Message:

Make these comments a bit easier for the searching. 'disclosure triangle' isn't as fun to say as 'flippy triangle', so we'll say both :)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Frameworks/Adium Framework/Source/AIListGroupCell.m

    r23985 r24125  
    121121//Sizing & Padding ----------------------------------------------------------------------------------------------------- 
    122122#pragma mark Sizing & Padding 
    123 //Padding.  Gives our cell a bit of extra padding for the group name and flippy triangle 
     123//Padding.  Gives our cell a bit of extra padding for the group name and flippy triangle (disclosure triangle) 
    124124- (int)topPadding{ 
    125125        return [super topPadding] + 1; 
     
    163163} 
    164164 
    165 //Calculates the distance from left margin to our display name.  This is the indent caused by group nesting. 
     165/*! 
     166 * @brief Get the distance from left margin to our display name. 
     167 * 
     168 * This is the space used by the flippy triangle (disclosure triangle)... more or less. 
     169 */ 
    166170- (int)flippyIndent 
    167171{ 
     
    181185- (void)drawContentWithFrame:(NSRect)rect 
    182186{ 
    183         //Draw flippy triangle 
     187        //Draw flippy triangle (disclosure triangle) 
    184188        [[self flippyColor] set]; 
    185189         
     
    258262} 
    259263 
    260 //Color of our flippy triangle.  By default we use the cell's text color. 
     264//Color of our flippy triangle (disclosure triangle).  By default we use the cell's text color. 
    261265- (NSColor *)flippyColor 
    262266{ 
  • trunk/Frameworks/Adium Framework/Source/AIListOutlineView.m

    r24120 r24125  
    688688} 
    689689 
    690 #pragma mark Attach & Detach Groups 
    691  
    692690- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender 
    693691{        
     
    703701} 
    704702 
     703- (BOOL)shouldCollapseAutoExpandedItemsForDeposited:(BOOL)deposited 
     704{ 
     705        return YES; 
     706} 
     707 
    705708- (IBAction)copy:(id)sender 
    706709{