Sujet : OOP design choices
De : luc (at) *nospam* sep.invalid (Luc)
Groupes : comp.lang.tclDate : 29. Sep 2024, 14:12:32
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <20240929101232.6a49c00b@lud1.home>
I am rewriting my application which has tabs.
Now I hesitate. Which is better?
1. Create the overall GUI and code as procedural and the tabs as
objects/a class.
2. Create the overall GUI as a big object (superclass) with tabs as
subclasses.
3. Create the overall GUI as an object/class with tabs as separate
classes.
4. Create the overall GUI as a big object (superclass) with tabs as
methods.
Thank you for any ideas.
-- Luc>