The problem with not wanting each plugin to read its own configuration file is that you have to have one central file that knows what configuration settings to include; this goes against the concept of a plugin, where I give you a plugin and you know nothing about it.
That's not the same, of course, as a central config file with information about what plugins to load.
Contrary to what others have said, there are ways to have DLLs read config setting from their own config file, but if you specifically don't want to do that I won't get into them.
I'm surprised nobody's mentioned the registry. It's the family secret everyone wants to keep locked in the basement, but that's exactly what it was meant for: A centralized location for storing application settings that anyone (i.e. any plugin) can access.
However. If you want the main application to access and store the plugin configurations, the best way (IMO) is to have an interface to query the plugin's properties (and to pass them back). If you keep it generic, you can reuse it for other apps.
interface IExposedProperties {
Dictionary<string,string> GetProperties();
void SetProperties(Dictionary<string,string> Properties);
}
The main app would query each plugin for a set of properties, then add/update settings to its config file, as such:
private void SavePluginSettings(List<IExposedProperties> PluginProperties) {
// Feel free to get fancy with LINQ here
foreach (IExposedProperties pluginProperties in PluginProperties) {
foreach (KeyValuePair<string,string> Property in pluginProperties.GetProperties()) {
// Use Property.Key to write to the config file, and Property.Value
// as the value to write.
//
// Note that you will need to avoid Key conflict... you can prepend
// the plugin name to the key to avoid this
}
}
}
I haven't tested that yet, just threw it down quick in a few free moments; I'll check it later to make sure there aren't any dumb mistakes. But you get the idea.
As for expanding the GUI, other suggestions have pretty much nailed it... the choice is whether you want to pass the app's control to the plugin, or query the plugin for a tab page and add it.
Typically you'd see the app pass an object to the plugin... caveat being that it must be an object over which the plugin is allowed complete control. I.E. you wouldn't pass the tab control itself, but you could have the app create the tab page and pass it to the plugin, saying basically 'do what you want with it'.
The 'return null if no tab' argument carries some weight here, but I prefer to have the app handle the creation and cleanup of all objects it uses. Can't give you a good reason why... one of those arbitrary style preferences, maybe. I wouldn't criticize either approach.
interface IPluginDisplay {
bool BuildTab(TabPage PluginTab); // returns false if couldn't create
} // tab or no data
interface IPluginDisplay {
TabPage GetTab(); // creates a tab and returns it
}
HTH,
James
P.S. Thought I would mention the mother of all plugin apps: Windows Explorer
You name it, explorer's got it. Any app can add property pages to any file type, the right-click menus dynamically query DLLs for entries... if you want perspective on how flexible plugins can be, read up on Shell Programming. Some excellent articles at Code Project... Part V talks about adding tabs to the property page dialog for files.
http://www.codeproject.com/Articles/830/The-Complete-Idiot-s-Guide-to-Writing-Shell-Extens
.