class ui.LoginDlg

class LoginDlg {
    // properties

    string_t autoget property m_title;
    string_t autoget property m_message;
    string_t autoget property m_userName;
    ui.AuthenticationMethod autoget property m_authenticationMethod;
    string_t autoget property m_password;
    string_t autoget property m_privateKeyFileName;
    string_t autoget property m_privateKeyPassphrase;

    // events

    event m_onCompleted(ui.StdDlgButton button);

    // construction

    construct();
    destruct();

    // methods

    void show();
};