Group: Forum Members
Posts: 18,
Visits: 105
|
Hi all,
i've written some custom reader that parses some binary files in our own format. This works very well except one point. We need some configuration here as each version of the binary file has some sort of schema file that needs to be read in order to parse the binary file correctly. Now unfortunately each developer stores the schema files in different locations and we have to make it configurable but therefore the current option with a text box and the arguments in the Initialize method is not sufficient as we have a lot of versions and to maintain these versions in the text box is a mess. I would really appreciate to have an extra Interface or an extension to the ILogReader interface that provides a custom configuration dialog. Maybe some extension like an enum ConfigSetting.Simple and ConfigSetting.Custom in the ILogReader interface and dependent on that you show the simple text box or a "configure"-button. If we press the configure button everything is under the control of the plugin. Including Storing/Restoring the configuration options. If the simple settings is used it's handled as today by logviewplus. Would something like this be possible?
|