Get Saved Event Visual Studio DTE












0















I'm using COM DTE in order to make an application where, when a document in a Visual Studio Solution is saved, a certain action is executed. For instance if a document in the solution is saved, a new compilation is triggered.



I'm using C++ but the only documentation that I was able to find out is written C# [DTE events][https://docs.microsoft.com/en-us/dotnet/api/envdte.events?view=visualstudiosdk-2017].



I tried several methods of DTE objects, but I was not able to find out the event that is triggered when a document is saved, for example using [DocumentEvents][https://docs.microsoft.com/en-us/dotnet/api/envdte.events.documentevents?view=visualstudiosdk-2017] (I omit error checking for simplicity):



    TComPtr<EnvDTE::Events> events;
DTE->get_Events(&events);

TComPtr<EnvDTE::_DocumentEvents> docsEvents;
TComPtr<EnvDTE::Document> doc;
events->get_DocumentEvents(doc, &docsEvents);


Then I'm blocked at docsEvents, that I expected that gives me the events to control (connecting them to handlers, using __hook for instance).



I was therefore wondering what was the correct call sequence to access the events of the documents in the solution (especially the one that is launched when a document of the solution is saved) (the documentation in C++ is relatively poor)










share|improve this question



























    0















    I'm using COM DTE in order to make an application where, when a document in a Visual Studio Solution is saved, a certain action is executed. For instance if a document in the solution is saved, a new compilation is triggered.



    I'm using C++ but the only documentation that I was able to find out is written C# [DTE events][https://docs.microsoft.com/en-us/dotnet/api/envdte.events?view=visualstudiosdk-2017].



    I tried several methods of DTE objects, but I was not able to find out the event that is triggered when a document is saved, for example using [DocumentEvents][https://docs.microsoft.com/en-us/dotnet/api/envdte.events.documentevents?view=visualstudiosdk-2017] (I omit error checking for simplicity):



        TComPtr<EnvDTE::Events> events;
    DTE->get_Events(&events);

    TComPtr<EnvDTE::_DocumentEvents> docsEvents;
    TComPtr<EnvDTE::Document> doc;
    events->get_DocumentEvents(doc, &docsEvents);


    Then I'm blocked at docsEvents, that I expected that gives me the events to control (connecting them to handlers, using __hook for instance).



    I was therefore wondering what was the correct call sequence to access the events of the documents in the solution (especially the one that is launched when a document of the solution is saved) (the documentation in C++ is relatively poor)










    share|improve this question

























      0












      0








      0








      I'm using COM DTE in order to make an application where, when a document in a Visual Studio Solution is saved, a certain action is executed. For instance if a document in the solution is saved, a new compilation is triggered.



      I'm using C++ but the only documentation that I was able to find out is written C# [DTE events][https://docs.microsoft.com/en-us/dotnet/api/envdte.events?view=visualstudiosdk-2017].



      I tried several methods of DTE objects, but I was not able to find out the event that is triggered when a document is saved, for example using [DocumentEvents][https://docs.microsoft.com/en-us/dotnet/api/envdte.events.documentevents?view=visualstudiosdk-2017] (I omit error checking for simplicity):



          TComPtr<EnvDTE::Events> events;
      DTE->get_Events(&events);

      TComPtr<EnvDTE::_DocumentEvents> docsEvents;
      TComPtr<EnvDTE::Document> doc;
      events->get_DocumentEvents(doc, &docsEvents);


      Then I'm blocked at docsEvents, that I expected that gives me the events to control (connecting them to handlers, using __hook for instance).



      I was therefore wondering what was the correct call sequence to access the events of the documents in the solution (especially the one that is launched when a document of the solution is saved) (the documentation in C++ is relatively poor)










      share|improve this question














      I'm using COM DTE in order to make an application where, when a document in a Visual Studio Solution is saved, a certain action is executed. For instance if a document in the solution is saved, a new compilation is triggered.



      I'm using C++ but the only documentation that I was able to find out is written C# [DTE events][https://docs.microsoft.com/en-us/dotnet/api/envdte.events?view=visualstudiosdk-2017].



      I tried several methods of DTE objects, but I was not able to find out the event that is triggered when a document is saved, for example using [DocumentEvents][https://docs.microsoft.com/en-us/dotnet/api/envdte.events.documentevents?view=visualstudiosdk-2017] (I omit error checking for simplicity):



          TComPtr<EnvDTE::Events> events;
      DTE->get_Events(&events);

      TComPtr<EnvDTE::_DocumentEvents> docsEvents;
      TComPtr<EnvDTE::Document> doc;
      events->get_DocumentEvents(doc, &docsEvents);


      Then I'm blocked at docsEvents, that I expected that gives me the events to control (connecting them to handlers, using __hook for instance).



      I was therefore wondering what was the correct call sequence to access the events of the documents in the solution (especially the one that is launched when a document of the solution is saved) (the documentation in C++ is relatively poor)







      c++ visual-studio events com envdte






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 23 '18 at 9:03









      MattMatt

      214




      214
























          1 Answer
          1






          active

          oldest

          votes


















          0














          You are on the right path. Now just subscribe to the DocumentSaved event.






          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53443501%2fget-saved-event-visual-studio-dte%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            You are on the right path. Now just subscribe to the DocumentSaved event.






            share|improve this answer




























              0














              You are on the right path. Now just subscribe to the DocumentSaved event.






              share|improve this answer


























                0












                0








                0







                You are on the right path. Now just subscribe to the DocumentSaved event.






                share|improve this answer













                You are on the right path. Now just subscribe to the DocumentSaved event.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 24 '18 at 6:46









                Sergey VlasovSergey Vlasov

                16.2k13939




                16.2k13939
































                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53443501%2fget-saved-event-visual-studio-dte%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    這個網誌中的熱門文章

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud

                    Zucchini