Codebase list cynthiune.app / bddf8b56-aa25-4977-9cd5-3768bca9d036/main CynthiunePopUpButton.m
bddf8b56-aa25-4977-9cd5-3768bca9d036/main

Tree @bddf8b56-aa25-4977-9cd5-3768bca9d036/main (Download .tar.gz)

CynthiunePopUpButton.m @bddf8b56-aa25-4977-9cd5-3768bca9d036/mainraw · history · blame

/* CynthiunePopUpButton.h - this file is part of Cynthiune
 *
 * Copyright (C) 2004 Wolfgang Sourdeau
 *
 * Author: Wolfgang Sourdeau <Wolfgang@Contre.COM>
 *
 * This file is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This file is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#import "CynthiunePopUpButton.h"

@implementation CynthiunePopUpButton : NSPopUpButton

- (void) addItemWithTitle: (NSString *) aTitle
{
  [super addItemWithTitle: aTitle];
  [self setEnabled: ([self numberOfItems] > 1)];
}

@end