Interposer class - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T05:11:00Z http://stackoverflow.com/feeds/question/1067117 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1067117/interposer-class 2 Interposer class Roderick 2009-07-01T03:13:47Z 2009-07-01T17:54:38Z <p>Do I need to put my Interposer class in all the form that will the particular class ? Say I want to re-implement TPanel, I redeclare it as <strong><em>TPanel = class(ExtCtrls.TPanel)</em></strong> in the unit. Do I need to do this in all the unit that uses TPanel ?</p> <p>Thanks in advance !</p> http://stackoverflow.com/questions/1067117/interposer-class/1067142#1067142 3 Answer by Mason Wheeler for Interposer class Mason Wheeler 2009-07-01T03:22:41Z 2009-07-01T03:22:41Z <p>If you want to design a new component, you'll have to give it a unique name. Otherwise the form designer and the serialization code won't be able to tell them apart. Call it TRoderickPanel or something. Then just replace all your TPanel objects with TRoderickPanel objects on every form that uses them. (GExperts adds a right-click option that makes this much easier.)</p> http://stackoverflow.com/questions/1067117/interposer-class/1067265#1067265 5 Answer by Rob Kennedy for Interposer class Rob Kennedy 2009-07-01T04:25:30Z 2009-07-01T04:25:30Z <p>You yourself have acknowledged that this is a hack. It's not meant to scale well. It's meant for one-time cases where it's not worth the trouble to "do it right" by writing a <em>bona fide</em> custom control.</p> <p>You can try putting your new class declaration in a separate unit. Make sure that unit appears on <code>uses</code> clauses <em>after</em> the VCL unit that declares the "real" version of the class. If that doesn't work, then yes, you need to make new declarations in every unit that uses the hack.</p> <p>Since you're doing this to turn <code>TLabel</code> into <code>TStaticText</code>, you'd probably be better off simply changing your <code>TLabel</code> controls into real <code>TStaticText</code> controls on your forms. (That was the answer <a href="http://stackoverflow.com/questions/1041383/how-to-test-labels-in-qtp">the last time you asked about this</a>.) That way, the program you ship will be the same program you tested. Otherwise, you're testing a program with one kind of control and shipping one with another.</p> http://stackoverflow.com/questions/1067117/interposer-class/1068184#1068184 1 Answer by Cobus Kruger for Interposer class Cobus Kruger 2009-07-01T09:26:04Z 2009-07-01T09:26:04Z <p>Depending on the functionality you are trying to add, you could consider using a class helper. If what you need cannot be done that way, I'd just bite the bullet and create a new class like Mason said. Replacing it right through your code is not that hard really, given that form files are also stored as text.</p> <p>If you also have Visual Studio installed, that actually has a "Replace in files" command. On top of that I'm sure Google will be able to help you out with stand-alone tools. And I haven't used GExperts in a while, but I'm almost certain that had a "Replace component" command.</p> <p>This is a far better solution for the long term. If you can use a class helper for what you need, that may be quicker, simpler and less work.</p> http://stackoverflow.com/questions/1067117/interposer-class/1070494#1070494 1 Answer by skamradt for Interposer class skamradt 2009-07-01T17:54:38Z 2009-07-01T17:54:38Z <p>I would instead use the GExperts wizard to replace components to get the behavior you are wanting. Doing what you are suggesting would require re-registration of the components so that the DFM loading mechanism created the proper components, and if I'm not mistaken, the component registry doesn't allow duplicates so would generate an exception. What your suggesting works well with classes, but not components used on a form. </p>