Get Saved Event Visual Studio DTE
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
add a comment |
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
add a comment |
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
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
c++ visual-studio events com envdte
asked Nov 23 '18 at 9:03
Matt
214
214
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You are on the right path. Now just subscribe to the DocumentSaved event.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
You are on the right path. Now just subscribe to the DocumentSaved event.
add a comment |
You are on the right path. Now just subscribe to the DocumentSaved event.
add a comment |
You are on the right path. Now just subscribe to the DocumentSaved event.
You are on the right path. Now just subscribe to the DocumentSaved event.
answered Nov 24 '18 at 6:46
Sergey Vlasov
15.4k13938
15.4k13938
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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