#include <puttyappui.h>
Inheritance diagram for CPuttyAppUi:
Public Methods | |
virtual void | DialCompleted (TInt anError) |
Notifies the observer that a connection setup has completed. | |
virtual void | RecordCompleted (TInt anError) |
Notifies the observer that recording has completed. | |
virtual void | DrawText (TInt aX, TInt aY, const TDesC &aText, TBool aBold, TBool aUnderline, TRgb aForeground, TRgb aBackground) |
Draws text on the terminal window. | |
virtual void | ConnectionError (const TDesC &aMessage) |
Reports a connection error to the user. | |
virtual void | FatalError (const TDesC &aMessage) |
Reports a fatal error to the user. | |
virtual void | ConnectionClosed () |
Reports that the connection has been closed normally. | |
virtual THostKeyResponse | UnknownHostKey (const TDesC &aFingerprint) |
Prompts the user to accept or reject an unknown host key. | |
virtual THostKeyResponse | DifferentHostKey (const TDesC &aFingerprint) |
Prompts the user to accept or reject a changed host key. | |
virtual TBool | AcceptCipher (const TDesC &aCipherName, TCipherDirection aDirection) |
Prompts the user to accept or reject a cipher below the warning threshold. |
Contains most of the UI logic, including engine and terminal callbacks.
|
Prompts the user to accept or reject a cipher below the warning threshold.
Implements MPuttyClient. |
|
Reports a connection error to the user. After displaying the message, the engine must be re-initialized
Implements MPuttyClient. |
|
Notifies the observer that a connection setup has completed.
Implements MDialObserver. |
|
Prompts the user to accept or reject a changed host key. The method must display the key fingerprint to the user, and ask whether it should be accepted once, accepted permanently or rejected completely.
Implements MPuttyClient. |
|
Draws text on the terminal window. The coordinates are zero-based character coordinates inside the terminal. Cursor is drawn as text with specific colors.
Implements MPuttyClient. |
|
Reports a fatal error to the user. After showing the message, the implementation must exit the program.
Implements MPuttyClient. |
|
Notifies the observer that recording has completed.
Implements MRecorderObserver. |
|
Prompts the user to accept or reject an unknown host key. The method must display the key fingerprint to the user, and ask whether it should be accepted once, accepted permanently or rejected completely.
Implements MPuttyClient. |