/* DefSortOrderPref.m * * Copyright (C) 2003 Free Software Foundation, Inc. * * Author: Enrico Sersale * Date: August 2001 * * This file is part of the GNUstep GWorkspace application * * This program 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 of the License, or * (at your option) any later version. * * This program 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; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA. */ #include #include #include "FSNodeRep.h" #include "DefSortOrderPref.h" #include "GWorkspace.h" #include "GNUstep.h" static NSString *nibName = @"DefSortOrderPref"; @implementation DefSortOrderPref - (void)dealloc { RELEASE (prefbox); [super dealloc]; } - (id)init { self = [super init]; if(self) { if ([NSBundle loadNibNamed: nibName owner: self] == NO) { NSLog(@"failed to load %@!", nibName); } else { RETAIN (prefbox); RELEASE (win); sortType = [[FSNodeRep sharedInstance] defaultSortOrder]; [matrix selectCellAtRow: sortType column: 0]; [setButt setEnabled: NO]; /* Internationalization */ [setButt setTitle: NSLocalizedString(@"Set", @"")]; [selectbox setTitle: NSLocalizedString(@"Sort by", @"")]; [sortinfo1 setStringValue: NSLocalizedString(@"The method will apply to all the folders", @"")]; [sortinfo2 setStringValue: NSLocalizedString(@"that have no order specified", @"")]; [[matrix cellAtRow:0 column:0] setTitle: NSLocalizedString(@"Name", @"")]; [[matrix cellAtRow:1 column:0] setTitle: NSLocalizedString(@"Type", @"")]; [[matrix cellAtRow:2 column:0] setTitle: NSLocalizedString(@"Date", @"")]; [[matrix cellAtRow:3 column:0] setTitle: NSLocalizedString(@"Size", @"")]; [[matrix cellAtRow:4 column:0] setTitle: NSLocalizedString(@"Owner", @"")]; } } return self; } - (NSView *)prefView { return prefbox; } - (NSString *)prefName { return NSLocalizedString(@"Sorting Order", @""); } - (void)changeType:(id)sender { sortType = [[sender selectedCell] tag]; [setButt setEnabled: YES]; } - (void)setNewSortType:(id)sender { [[FSNodeRep sharedInstance] setDefaultSortOrder: sortType]; [setButt setEnabled: NO]; [[NSDistributedNotificationCenter defaultCenter] postNotificationName: @"GWSortTypeDidChangeNotification" object: nil userInfo: nil]; } @end