You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pytde/sip/tdeui/kpassdlg.sip

139 lines
3.9 KiB

//
// Copyright 2006 Jim Bublitz <jbublitz@nwinternet.com>
// Earlier copyrights 1998 - 2005 Jim Bublitz and/or Phil Thompson
// may also apply
// Generated by preSip
// module tdeui version KDE 3.5.3
// This software is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of
// the License, or (at your option) any later version.
//
// This software is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this library; see the file COPYING.
// If not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
class KPasswordEdit : TQLineEdit
{
%TypeHeaderCode
#include <kpassdlg.h>
%End
public:
enum EchoModes
{
OneStar,
ThreeStars,
NoEcho
};
KPasswordEdit (TQWidget* /TransferThis/ = 0, const char* = 0);
KPasswordEdit (EchoMode, TQWidget* /TransferThis/, const char*);
%If ( KDE_3_2_0 - )
KPasswordEdit (KPasswordEdit::EchoModes, TQWidget* /TransferThis/, const char*);
%End
KPasswordEdit (TQWidget* /TransferThis/, const char*, int);
TQString password ();
void erase ();
//ig const int PassLen;
%If ( KDE_3_4_0 - )
void setMaxPasswordLength (int);
int maxPasswordLength () const;
%End
public slots:
%If ( KDE_3_1_2 - )
virtual void insert (const TQString&);
%End
protected:
virtual void keyPressEvent (TQKeyEvent*);
virtual void focusInEvent (TQFocusEvent*);
virtual bool event (TQEvent*);
}; // class KPasswordEdit
class KPasswordDialog : KDialogBase
{
%TypeHeaderCode
#include <kpassdlg.h>
%End
public:
enum Types
{
Password,
NewPassword
};
KPasswordDialog (KPasswordDialog::Types, bool, int, TQWidget* /TransferThis/ = 0, const char* = 0);
KPasswordDialog (int, TQString, bool = 0, int = 0);
%If ( KDE_3_3_0 - )
KPasswordDialog (KPasswordDialog::Types, bool, int, const TQString&, TQWidget* /TransferThis/ = 0, const char* = 0);
%End
void setPrompt (TQString);
TQString prompt () const;
void addLine (TQString, TQString);
%If ( KDE_3_4_0 - )
void setAllowEmptyPasswords (bool);
bool allowEmptyPasswords () const;
void setMinimumPasswordLength (int);
int minimumPasswordLength () const;
void setMaximumPasswordLength (int);
int maximumPasswordLength () const;
void setReasonablePasswordLength (int);
int reasonablePasswordLength () const;
void setPasswordStrengthWarningLevel (int);
int passwordStrengthWarningLevel () const;
%End
TQString password () const;
%If ( KDE_3_3_0 - )
void clearPassword ();
%End
bool keep () const;
static int getPassword (TQString&, TQString, int* = 0);
static int getNewPassword (TQString&, TQString);
static void disableCoreDumps ();
protected slots:
void slotOk ();
void slotCancel ();
void slotKeep (bool);
protected:
virtual bool checkPassword (const TQString&);
protected:
//igx virtual void virtual_hook (int, void*);
}; // class KPasswordDialog