LT-22568: Part 2 – Scope Pub/Sub to a Main Window#958
Merged
Conversation
The Pub/Sub framework was allowing Subscribers to receive messages from all Publishers. In most cases we want this to be scoped to only include Subscribers with the same Main Window (IxWindow) as the Publisher. Now both the Publish() and Subscribe() methods take a IPubSubScope object as a Parameter (IxWindow is not available in the Pub/Sub dll). Note: We use the interface to prevent accidentally passing a dialog instead of the main window (ex. passing Form.ActiveForm inside a modal).
- Move these Subscribe calls to places where we can get the scope: ItemDataModified ConfigureCustomFields - Added PropertyTable to VwBaseVc and TextsFilterItem so a scope could be provided in additional Publish() calls. - Add support for subscribers in a new app window. - Null is still valid for a scope, but require that it is provided. - SFMImport is currently the only null (process-wide) scope. All other messages have a scope for all of the publishers and subscribers.
aror92
approved these changes
Jun 24, 2026
aror92
left a comment
Contributor
There was a problem hiding this comment.
@aror92 reviewed 68 files and all commit messages.
Reviewable status:complete! all files reviewed, all discussions resolved (waiting on mark-sil).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change is