Started.sgm 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!-- $XConsortium: Started.sgm /main/9 1996/09/08 20:16:26 rws $ -->
  2. <!-- (c) Copyright 1995 Digital Equipment Corporation. -->
  3. <!-- (c) Copyright 1995 Hewlett-Packard Company. -->
  4. <!-- (c) Copyright 1995 International Business Machines Corp. -->
  5. <!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
  6. <!-- (c) Copyright 1995 Novell, Inc. -->
  7. <!-- (c) Copyright 1995 FUJITSU LIMITED. -->
  8. <!-- (c) Copyright 1995 Hitachi. -->
  9. <![ %CDE.C.CDE; [<RefEntry Id="CDEMX.XCDI.MAN314.rsml.1">]]>
  10. <![ %CDE.C.XO; [<RefEntry Id="XCDI.MAN314.rsml.1">]]>
  11. <RefMeta>
  12. <RefEntryTitle>Started</RefEntryTitle>
  13. <ManVolNum>special file</ManVolNum>
  14. </RefMeta>
  15. <RefNameDiv>
  16. <RefName><Symbol Role="Message">Started</Symbol></RefName>
  17. <RefPurpose>a tool has started
  18. </RefPurpose>
  19. </RefNameDiv>
  20. <RefSynopsisDiv>
  21. <Synopsis>Started(in string <Emphasis>vendor</Emphasis>,
  22. in string <Emphasis>toolName</Emphasis>,
  23. in string <Emphasis>toolVersion</Emphasis>);
  24. </Synopsis>
  25. </RefSynopsisDiv>
  26. <RefSect1>
  27. <Title>DESCRIPTION</Title>
  28. <Para>The
  29. <Symbol Role="Message">Started</Symbol> notice announces that
  30. a tool has started.
  31. </Para>
  32. <Para>The
  33. <Emphasis>vendor</Emphasis> argument
  34. is the vendor of the started tool.
  35. </Para>
  36. <Para>The
  37. <Emphasis>toolName</Emphasis> argument
  38. is the name of the started tool.
  39. </Para>
  40. <Para>The
  41. <Emphasis>toolVersion</Emphasis> argument
  42. is the version of the started tool.
  43. </Para>
  44. </RefSect1>
  45. <RefSect1>
  46. <Title>APPLICATION USAGE</Title>
  47. <Para>None.</Para>
  48. </RefSect1>
  49. <RefSect1>
  50. <Title>EXAMPLES</Title>
  51. <Para>A pattern observing the
  52. <Symbol Role="Message">Started</Symbol> request can be registered as
  53. in the following example:
  54. </Para>
  55. <InformalExample Remap="indent">
  56. <ProgramListing>Tt_pattern pat = tt_pattern_create();
  57. tt_pattern_category_set(pat, TT_OBSERVE);
  58. tt_pattern_scope_add(pat, TT_SESSION);
  59. char *ses = tt_default_session();
  60. tt_pattern_session_add(pat, ses);
  61. tt_free(ses);
  62. tt_pattern_op_add(pat, Tttk_Started);
  63. tt_pattern_op_add(pat, Tttk_Stopped);
  64. tt_pattern_callback_add(pat, my_callback);
  65. tt_pattern_register(pat);
  66. </ProgramListing>
  67. </InformalExample>
  68. <Para>The
  69. <Symbol Role="Message">Started</Symbol> request can be sent with
  70. &cdeman.ttdt.open;.</Para>
  71. </RefSect1>
  72. <RefSect1>
  73. <Title>SEE ALSO</Title>
  74. <Para>&cdeman.tt.free;, &cdeman.tt.pattern.callback.add;, &cdeman.tt.pattern.category.set;, &cdeman.tt.pattern.op.add;, &cdeman.tt.pattern.register;, &cdeman.tt.pattern.scope.add;, &cdeman.tt.pattern.session.add;, &cdeman.ttdt.open;; <Symbol Role="Message">Stopped</Symbol> notice.
  75. </Para>
  76. </RefSect1>
  77. </RefEntry>
  78. <!--fickle 1.12 mancsf-to-docbook 1.2 08/07/95 23:18:47-->