I'm making a plugin for code reformatting, based on Astyle.
I already changed code in Astyle to use NTL instead of STL, I'll test it this week end.
I want to put patched Astyle in 'plugins' folder and make some additions to theide... it's right to do so ?
And... how can I save user settings in order to have them loaded when ide starts ?
Ciao
Max
Well, it would be fun to do so without Astyle, but yes, you are on the right track.
Configs: TheIDE has two configurations: "global" and "main package specific". Adding things is easy; see
void Ide::SerializeWorkspace(Stream& s);
and
void Ide::Serialize(Stream& s);
but even better approach might be using modular serialization (which is later included), see