/System/Applications/Terminal/ServicesPrefs.h
C Header | 35 lines | 18 code | 9 blank | 8 comment | 0 complexity | adec815a3f62b1310b93b377f93db239 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1
1/* 2copyright 2002 Alexander Malmberg <alexander@malmberg.org> 3 4This file is a part of Terminal.app. Terminal.app is free software; you 5can redistribute it and/or modify it under the terms of the GNU General 6Public License as published by the Free Software Foundation; version 2 7of the License. See COPYING or main.m for more information. 8*/ 9 10#ifndef ServicesPrefs_h 11#define ServicesPrefs_h 12 13#include "PrefBox.h" 14 15@class NSMutableDictionary,NSMutableArray; 16@class GSVbox,NSTableView,NSPopUpButton,NSTextField; 17 18@interface TerminalServicesPrefs : NSObject <PrefBox> 19{ 20 NSMutableDictionary *services; 21 NSMutableArray *service_list; 22 int current; 23 24 GSVbox *top; 25 NSTableView *list; 26 NSPopUpButton *pb_input,*pb_output,*pb_type; 27 NSTextField *tf_name,*tf_cmdline,*tf_key; 28 29 NSButton *cb_string,*cb_filenames; 30} 31 32@end 33 34#endif 35