/* copyright 2002 Alexander Malmberg This file is a part of Terminal.app. Terminal.app 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; version 2 of the License. See COPYING or main.m for more information. */ #ifndef ServicesPrefs_h #define ServicesPrefs_h #include "PrefBox.h" @class NSMutableDictionary,NSMutableArray; @class GSVbox,NSTableView,NSPopUpButton,NSTextField; @interface TerminalServicesPrefs : NSObject { NSMutableDictionary *services; NSMutableArray *service_list; int current; GSVbox *top; NSTableView *list; NSPopUpButton *pb_input,*pb_output,*pb_type; NSTextField *tf_name,*tf_cmdline,*tf_key; NSButton *cb_string,*cb_filenames; } @end #endif