README.TXT
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:9k
源码类别:

Windows编程

开发平台:

Visual C++

  1. ======================================================
  2. Notes for Active Documents "Framer" (Container) Sample
  3. ======================================================
  4. Framer is intended to demonstrate simple Active Document Objects hosting as
  5. a container.  That is, Framer demonstrates the basic support necessary to
  6. host Active Documents.  It is implemented according to the guidlines in the
  7. "Active Documents Specification" document and has been tested against
  8. Microsoft Word and Microsoft Excel as well as a few other OLE-enabled
  9. applications that do not support Active Documents.
  10. Framer itself has almost nothing in the way of its own user interface such
  11. as a more complete host would, such as the Office Binder.  Framer has these
  12. menu commands available:
  13.     Command     Description
  14.     ----------------------------------------------------------------------
  15.     File Open   Displays a File Open dialog and allows the user to select
  16.                 a file.  Framer will attempt to activate the file as an 
  17.                 Active Document.  Failing that it will create a standard
  18.                 embedded object and activate it in a separate window.
  19.                 This command is disabled when an object already exists.
  20.                 File/Close must be used before creating another object.
  21.     File Close  Closes the document that is currently open; if the object
  22.                 is just an embedding it will destroy that object which has
  23.                 the effect of closing the server as well.  Try opening
  24.                 a .BMP file (which should activate PaintBrush, for instance)
  25.                 and use Close to see the effect.  There are some variations to
  26. this behavior (see next section below).
  27.     File Exit   Performs File/Close if necessary and terminates Framer.
  28.     Help About  Displays Framer's About box.  This command exists to
  29.                 demonstrate Active Document Help menu merging.
  30. Whenever Framer knows it has an object it displays a small message in its
  31. client area to remind you that you have to File/Close before creating another.
  32. Creating and Activating an Object
  33. ---------------------------------
  34. Framer allows you to open documents regardless of whether or not
  35. there is a server that supports Active Documents for the document
  36. type and regardless of whether or not the document server even knows
  37. about Active Documents at all.  
  38. When you "Open" a file in Framer, the code call OleCreateFromFile to create
  39. an embedded object from the contents of the file.  This has two possible
  40. results:
  41.     1.  If there is an Active Documents server associated with the file,
  42.         an embedded object initialized with the file contents is created.
  43.     2.  If there is not an Active Documents server associated with the file,
  44.         a package object is created.
  45. Immediately after creation, Framer activates the object with IOleObject::DoVerb
  46. passing OLEIVERB_SHOW.
  47. If the object is a true embedding with server support, one of two things
  48. will happen:
  49.     1a. If the object doesn't know about Active Documents, it is activated in
  50.         another window.  Using File/Close in this case will close the server.
  51.         Closing the server itself will cause Framer to do the equivalent
  52.         of File/Close, which frees the object and re-enables File/Open.
  53.         See CImpIIAdviseSink::OnClose in iadvsink.cpp.  The closing
  54.         sequence is in CFrame::Close in framer.cpp.  Using Framer with the
  55.      Paint application will demonstrate this behavior.
  56.     1b. If the object has Active Document support, then its server will start
  57.         activation sequence, primarily by calling IOleDocumentSite::ActivateMe
  58.         which is found in idocsite.cpp.  Inside this member, Framer
  59.         then performs the standard sequence of document object activation
  60.         steps.  After these steps the Active Document will be fully
  61.         interactive; using File/Close on the menu, which Framer still owns,
  62.         will deactivate the object through CFrame::Close which performs the
  63.         same set of steps as in #1b above.  Using Framer with Microsoft Word
  64.     will demonstrate this behavior.
  65. If you activate a package object, the result is that you launch an application
  66. and have it open the file.  Since the application has no OLE support in it
  67. whatsoever, there is no communication link between Framer and that application.
  68. This means that closing Framer will not close that other application.  This is
  69. what one observes with opening a .TXT file in Framer which will launch Notepad.
  70. Once Notepad is running, it's separate and disconnected from Framer.  You have
  71. to close Notepad manually.
  72. Framer might have been written to disallow insertion of files that do not have
  73. Active Documents support.  Framer rather demonstrates how to view any file
  74. regardless of server support.
  75. Help Menu Merging
  76. -----------------
  77. Framer implements the container side of the Help menu merging protocol
  78. described in the Active Documents Specification.  This involves the members
  79. CFrame::InsertMenus, CFrame::SetMenu, and CFrame::RemoveMenus.  The
  80. InsertMenus method will install Framer's Help menu in the correct location
  81. on the shared menu.  The container-side popup used here is loaded from
  82. Framer's resources on startup in CFrame::Init.
  83. Inside CFrame::SetMenu, Framer checks if there's more than one item on
  84. the menu added in InsertMenus.  If so, then Framer remembers this fact
  85. for later message handling.  Otherwise Framer removes this menu from the
  86. shared menu entirely as the dicument object itself isn't using this shared
  87. capability.
  88. Inside CFrame::RemoveMenus, Framer simply makes sure that its own Help
  89. menu is removed as it should be.
  90. The really interesting stuff happens in FrameWndProc (framer.cpp) in the
  91. WM_INITMENU, WM_INITMENUPOPUP, WM_MENUSELECT, and WM_COMMAND cases.  Inside
  92. WM_INITMENU Framer clears a flag that indicates whether the last popup menu
  93. that was being used was the object's additions to the Help menu.  Inside
  94. WM_MENUSELECT, Framer checks if the originating menu is a popup and if so,
  95. it checks if that popup is on the shared "Help" popup, and if that is also
  96. true then Framer checks if the item being used is the first one or some
  97. other one.  The first item is what Framer knows to be its own Help item, so
  98. it just handles the messages as usual.  Otherwise the user is working with
  99. an Active Document-owned menu, so Framer sets the flag m_fInObjectHelp variable
  100. to TRUE and forwards the message to the object's window (available from
  101. IOleInPlaceObject::GetWindow).
  102. As long as m_fInObjectHelp is set, Framer will forward WM_COMMAND,
  103. WM_INITMENUPOPUP, and WM_MENUSELECT messages.  As soon as another
  104. WM_MENUSELECT message is seen for another non-object menu, then Framer
  105. will reset the flag and begin processing messages once again itself.
  106. In this way you'll see, with Microsoft Word for example, the correct
  107. behavior of a shared Help popup.  Note that Microsoft Excel does not
  108. exhibit this shared Help menu behavior as it only displays its own
  109. Help menus.
  110. Known Feature Limitations
  111. -------------------------
  112. 1.  Framer does not print so it does not use the IPrint interface nor does
  113.     it implement IContinueCallback.
  114. 2.  Framer does nothing with command targets.
  115. 3.  Framer does not forward owner-draw menu messages to the object which
  116.     means that if owner-draw menus are used in a DocObject help menu,
  117.     this sample will not work correctly.
  118. 4.  Framer does not provide for actually saving any changes made to an
  119.     Active Document.  Because an Active Document is an embedding, Framer has
  120.     to provide an instance of IStorage through IPersistStorage::InitNew
  121.     or IPersistStorage::Load.  It does this using a temporary Compound File
  122.     that is deleted when Framer exits.  Therefore any changes made to the data
  123.     in the Active Document will simply be discarded.
  124. Potential for Better UI
  125. -----------------------
  126. The item #4 above takes a little more explanation.  When OleCreateFromFile is
  127. used in the File/Open command, Framer is making a COPY of the file contents.
  128. When an Active Document is activated with this content, the document has a copy
  129. of the file contents, not the contents of the file itself.  Therefore any
  130. changes made there will not be reflected back into the original file, although
  131. Framer's UI suggests that this should happen.
  132. A real Active Document container like the Office Binder actually stores all the
  133. object data in its own Compound File, not as separate files.  If one needs
  134. to have an Active Document save into a separate file, then the container needs
  135. to either use command-targets or has to call IPersistFile::Save to accomplish
  136. this step.
  137. In short, Active Documents is not about activating the apps that manipulate
  138. files; it's about activating embedded *documents* saved within the container
  139. file *as if* those documents were stand alone.
  140. Framer's UI, which is really inappropriate for DocObjects, exists as it does
  141. for simplicity's sake.
  142. A more appropraite container application would maintain its own "files" in
  143. which it collected data from a number of other "documents" which are stored
  144. simply as embedded objects.  The Office Binder does exactly this, where
  145. a "Binder" is a Compound File with sub-storages for each "section" in the
  146. document.
  147. Certainly with some more work on UI, Framer could become such an application.