tags:

views:

38

answers:

0

I am trying to extend a Terminal control from The Code Project based on the Poderosa Project. The part I am stuck on is trying to call a method in the control wrapper class from a class in the Poderosa project. The method is going to buffer/queue the char’s and lines of text going to the terminal screen so that they can be processed with code if you wanted. If the method is static then the Poderosa classes can call them but each instance of the control will need its own buffer/Queue. Is there a way to do this keeping my methods in the control wrapper class and calling them from the Poderosa classes, or do I need to add the methods to the Poderosa classes and call them from the control wrapper class? What is the recommend practice to accomplish this?