1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
/*
copyright 2002 Alexander Malmberg <alexander@malmberg.org>
2014 The GAP Project
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
#import <AppKit/NSTableView.h>
#import "PrefBox.h"
@class NSMutableDictionary,NSMutableArray;
@class GSVbox,NSTableView,NSPopUpButton,NSTextField;
@interface TerminalServicesPrefs : NSObject <PrefBox, NSTableViewDelegate>
{
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
|