PageRenderTime 49ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/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. /*
  2. copyright 2002 Alexander Malmberg <alexander@malmberg.org>
  3. This file is a part of Terminal.app. Terminal.app is free software; you
  4. can redistribute it and/or modify it under the terms of the GNU General
  5. Public License as published by the Free Software Foundation; version 2
  6. of the License. See COPYING or main.m for more information.
  7. */
  8. #ifndef ServicesPrefs_h
  9. #define ServicesPrefs_h
  10. #include "PrefBox.h"
  11. @class NSMutableDictionary,NSMutableArray;
  12. @class GSVbox,NSTableView,NSPopUpButton,NSTextField;
  13. @interface TerminalServicesPrefs : NSObject <PrefBox>
  14. {
  15. NSMutableDictionary *services;
  16. NSMutableArray *service_list;
  17. int current;
  18. GSVbox *top;
  19. NSTableView *list;
  20. NSPopUpButton *pb_input,*pb_output,*pb_type;
  21. NSTextField *tf_name,*tf_cmdline,*tf_key;
  22. NSButton *cb_string,*cb_filenames;
  23. }
  24. @end
  25. #endif