home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Utilities / Remotes / Source / Configure.h < prev    next >
Encoding:
Text File  |  1992-09-22  |  2.2 KB  |  99 lines

  1. /*---------------------------------------------------------------------------
  2. Configure.h - Header files for Configure class.
  3. -----------------------------------------------------------------------------*/
  4. #import <objc/Object.h>
  5.  
  6. @interface Configure:Object
  7. {
  8.     id  appsButton;
  9.     id  autoStartButton;
  10.     id    configureButton;
  11.     id    launchButton;
  12.     id    buttonForm;
  13.     id    configForm;
  14.     id    hostForm;
  15.     id    colsCell;
  16.     id    fontForm;
  17.     id    idForm;
  18.     id    linesCell;
  19.     id    xCell;
  20.     id    yCell;
  21.     id  applicationMatrix;
  22.     id  fontMatrix;
  23.     id  idMatrix;
  24.     id  protocolMatrix;
  25.     id  terminalMatrix;
  26.     id  terminalMetaMatrix;
  27.     id  stuartMatrix;
  28.     id  stuartMetaMatrix;
  29.     id  windowMatrix;
  30.     id  configWindow;
  31.     id  boxViewWindow;
  32.     id  boxView;
  33.     id  configurePUL;
  34.     id  theHostsPUL;
  35.     id  theHostsButton;
  36.     id  theHLM;
  37.     id  theBVS;
  38.     short int appType;
  39.     short int fontType;
  40.     short int protocolType;
  41.     BOOL launchFlag;
  42. }
  43.  
  44. - init;
  45.  
  46. - setAppsButton:anObject;
  47. - setAutoStartButton:anObject;
  48. - setConfigureButton:anObject;
  49. - setLaunchButton:anObject;
  50. - setButtonForm:anObject;
  51. - setColsCell:anObject;
  52. - setHostForm:anObject;
  53. - setIdForm:anObject;
  54. - setLinesCell:anObject;
  55. - setXCell:anObject;
  56. - setYCell:anObject;
  57. - setProtocolMatrix:anObject;
  58. - setTerminalMatrix:anObject;
  59. - setTerminalMetaMatrix:anObject;
  60. - setStuartMatrix:anObject;
  61. - setStuartMetaMatrix:anObject;
  62. - setWindowMatrix:anObject;
  63. - setConfigWindow:anObject;
  64. - setBoxViewWindow:anObject;
  65. - setBoxView:anObject;
  66. - setHostsButton:anObject;
  67. - setHostsPUL:anObject;
  68. - setHLM:anObject;
  69. - addNewItem:sender;
  70. - (unsigned int)getMatrixFlags:sender;
  71. - initMatrixFlags:aMatrix;
  72. - boxViewDidSwitch:sender;
  73. - courierFont:sender;
  74. - courierSet:sender;
  75. - deleteOldItem:sender;
  76. - changeOldItem:sender;
  77. - launchDisable:sender;
  78. - display:sender;
  79. - initConfigWindow:sender;
  80. - initConfigButton:sender;
  81. - launch:sender;
  82. - launchState:(BOOL)flag;
  83. - menuRevert:sender;
  84. - ohlfsFont:sender;
  85. - ohlfsSet:sender;
  86. - rlogin:sender;
  87. - rloginSet:sender;
  88. - telnet:sender;
  89. - telnetSet:sender;
  90. - tn3270:sender;
  91. - tn3270Set:sender;
  92. - terminal:sender;
  93. - stuart:sender;
  94. - showConfigWindow:sender;
  95. - text:sender isEmpty:(BOOL)flag; 
  96. - (int)validHostFields:sender;
  97.  
  98. @end
  99.