KDirSize is fully implemented except as noted:
long long totalSize64 () static long long dirSize64 (const KURL& a0) |
NOT implemented
KDiskFreeSp is fully implemented except as noted:
void foundMountPoint (const ulong& a0, const ulong& a1, const ulong& a2, const QString& a3) |
NOT implemented
KFile is fully implemented except as noted:
isSortByName (sort)
TAKES sort (QDir.SortSpec) and RETURNS result (int). isSortByName is a static member function.
C++: static bool isSortByName (const QDir::SortSpec& sort) |
isSortBySize (sort)
TAKES sort (QDir.SortSpec) and RETURNS result (int). isSortBySize is a static member function.
C++: static bool isSortBySize (const QDir::SortSpec& sort) |
isSortByDate (sort)
TAKES sort (QDir.SortSpec) and RETURNS result (int). isSortByDate is a static member function.
C++: static bool isSortByDate (const QDir::SortSpec& sort) |
isSortDirsFirst (sort)
TAKES sort (QDir.SortSpec) and RETURNS result (int). isSortDirsFirst is a static member function.
C++: static bool isSortDirsFirst (const QDir::SortSpec& sort) |
isSortCaseInsensitive (sort)
TAKES sort (QDir.SortSpec) and RETURNS result (int). isSortCaseInsensitive is a static member function.
C++: static bool isSortCaseInsensitive (const QDir::SortSpec& sort) |
isDefaultView (view)
TAKES view (KFile.FileView) and RETURNS result (int). isDefaultView is a static member function.
C++: static bool isDefaultView (const KFile::FileView& view) |
isSimpleView (view)
TAKES view (KFile.FileView) and RETURNS result (int). isSimpleView is a static member function.
C++: static bool isSimpleView (const KFile::FileView& view) |
isDetailView (view)
TAKES view (KFile.FileView) and RETURNS result (int). isDetailView is a static member function.
C++: static bool isDetailView (const KFile::FileView& view) |
isSeparateDirs (view)
TAKES view (KFile.FileView) and RETURNS result (int). isSeparateDirs is a static member function.
C++: static bool isSeparateDirs (const KFile::FileView& view) |
isPreviewContents (view)
TAKES view (KFile.FileView) and RETURNS result (int). isPreviewContents is a static member function.
C++: static bool isPreviewContents (const KFile::FileView& view) |
isPreviewInfo (view) [KDE 3.1.0 - ]
TAKES view (KFile.FileView) and RETURNS result (int). isPreviewInfo is a static member function.
C++: static bool isPreviewInfo (const KFile::FileView& view) |
KFileDialog is fully implemented except as noted:
currentFilterMimeType ()
TAKES nothing and RETURNS result (KMimeType).
C++: KMimeType::Ptr currentFilterMimeType () |
void addDirEntry (KFileItem* entry, bool disableUpdating) |
NOT implemented
KFileSharePropsPlugin is fully implemented except as noted:
KFileView is fully implemented except as noted:
This class is abstract ; all pure virtual methods must be overloaded before using
widget ()
TAKES nothing and RETURNS result (QWidget). Pure virtual - must be overloaded in subclass.
C++: virtual QWidget* widget () = 0 |
setCurrentItem (item)
TAKES item (KFileItem) and RETURNS nothing . Pure virtual - must be overloaded in subclass.
C++: virtual void setCurrentItem (const KFileItem* item) = 0 |
currentFileItem ()
TAKES nothing and RETURNS result (KFileItem). Pure virtual - must be overloaded in subclass.
C++: virtual KFileItem* currentFileItem () const = 0 |
clearView ()
TAKES nothing and RETURNS nothing . Pure virtual - must be overloaded in subclass.
C++: virtual void clearView () = 0 |
ensureItemVisible (i)
TAKES i (KFileItem) and RETURNS nothing . Pure virtual - must be overloaded in subclass.
C++: virtual void ensureItemVisible (const KFileItem* i) = 0 |
clearSelection ()
TAKES nothing and RETURNS nothing . Pure virtual - must be overloaded in subclass.
C++: virtual void clearSelection () = 0 |
setSelected (a0, enable)
TAKES a0 (KFileItem), enable (int) and RETURNS nothing . Pure virtual - must be overloaded in subclass.
C++: virtual void setSelected (const KFileItem* a0, bool enable) = 0 |
isSelected (a0)
TAKES a0 (KFileItem) and RETURNS result (int). Pure virtual - must be overloaded in subclass.
C++: virtual bool isSelected (const KFileItem* a0) const = 0 |
firstFileItem ()
TAKES nothing and RETURNS result (KFileItem). Pure virtual - must be overloaded in subclass.
C++: virtual KFileItem* firstFileItem () const = 0 |
nextItem (a0)
TAKES a0 (KFileItem) and RETURNS result (KFileItem). Pure virtual - must be overloaded in subclass.
C++: virtual KFileItem* nextItem (const KFileItem* a0) const = 0 |
prevItem (a0)
TAKES a0 (KFileItem) and RETURNS result (KFileItem). Pure virtual - must be overloaded in subclass.
C++: virtual KFileItem* prevItem (const KFileItem* a0) const = 0 |
QWidget* widget () const |
NOT implemented
KIconCanvas is fully implemented except as noted:
void nameChanged (QString a0) |
NOT implemented
KIconButton is fully implemented except as noted:
void iconChanged (QString icon) |
NOT implemented
KNotifyDialog is fully implemented except as noted:
KNotifyDialog (parent, name, modal, aboutData) [KDE 3.1.0 - ]
TAKES parent (QWidget - default = 0), name (char - default = 0), modal (bool - default = 1), aboutData (KAboutData - default = see below) and RETURNS a KNotifyDialog instance.
C++: KNotifyDialog (QWidget* parent = 0, const char* name = 0, bool modal = 1, const KAboutData* aboutData = 0) |
The default value for aboutData in C++ is KGlobal::instance()->aboutData() which sip is unable to parse. Since it's the last arg in the list, it has to have a default value, and since the C++ code will fail if the default value really is zero, the sip code silently substitutes the real default value for a default value of 0 supplied from Python.
configure (parent, name, aboutData) [KDE 3.1.0 - ]
TAKES parent (QWidget - default = 0), name (char - default = 0), aboutData (KAboutData - default = see below) and RETURNS nothing . configure is a static member function.
C++: static int configure (QWidget* parent = 0, const char* name = 0, const KAboutData* aboutData = 0) |
The default value for aboutData in C++ is KGlobal::instance()->aboutData() which sip is unable to parse. Since it's the last arg in the list, it has to have a default value, and since the C++ code will fail if the default value really is zero, the sip code silently substitutes the real default value for a default value of 0 supplied from Python.
KNotify.Application is fully implemented except as noted:
typedef QPtrListIterator<Application> ApplicationListIterator typedef QPtrListIterator<Event> EventListIterator |
NOT implemented
KNotify.KNotifyWidget is fully implemented except as noted:
visibleApps () [KDE 3.1.0 - ]
TAKES nothing and RETURNS result (a Python list of KNotify.Application).
C++: KNotify::ApplicationList& visibleApps () |
allApps () [KDE 3.1.0 - ]
TAKES nothing and RETURNS result (a Python list of KNotify.Application).
C++: KNotify::ApplicationList& allApps () |
KNotify.ListViewItem is fully implemented except as noted:
KNotify.ApplicationList is fully implemented except as noted:
KOpenWithDlg is fully implemented except as noted:
service ()
TAKES nothing and RETURNS result (KService).
C++: KService::Ptr service () |
KPreviewWidgetBase is fully implemented except as noted:
This class is abstract ; all pure virtual methods must be overloaded before using
showPreview (url)
TAKES url (KURL) and RETURNS nothing . Pure virtual - must be overloaded in subclass.
C++: virtual void showPreview (const KURL& url) = 0 |
clearPreview ()
TAKES nothing and RETURNS nothing . Pure virtual - must be overloaded in subclass.
C++: virtual void clearPreview () = 0 |
KPropertiesDialog is fully implemented except as noted:
canDisplay (_items)
TAKES _items (a Python list of KFileItem) and RETURNS result (int). canDisplay is a static member function.
C++: static bool canDisplay (KFileItemList _items) |
KPropertiesDialog (_items, parent, name, modal, autoShow)
TAKES _items (a Python list of KFileItem), parent (QWidget - default = 0), name (char - default = 0), modal (bool - default = 0), autoShow (bool - default = 1) and RETURNS a KPropertiesDialog instance.
C++: KPropertiesDialog (KFileItemList _items, QWidget* parent = 0, const char* name = 0, bool modal = 0, bool autoShow = 1) |
items ()
TAKES nothing and RETURNS result (a Python list of KFileItem).
C++: KFileItemList items () const |
KFilePropsPlugin is fully implemented except as noted:
supports (_items)
TAKES _items (a Python list of KFileItem) and RETURNS result (int). supports is a static member function.
C++: static bool supports (KFileItemList _items) |
KFilePermissionsPropsPlugin is fully implemented except as noted:
supports (_items)
TAKES _items (a Python list of KFileItem) and RETURNS result (int). supports is a static member function.
C++: static bool supports (KFileItemList _items) |
KExecPropsPlugin is fully implemented except as noted:
supports (_items)
TAKES _items (a Python list of KFileItem) and RETURNS result (int). supports is a static member function.
C++: static bool supports (KFileItemList _items) |
KURLPropsPlugin is fully implemented except as noted:
supports (_items)
TAKES _items (a Python list of KFileItem) and RETURNS result (int). supports is a static member function.
C++: static bool supports (KFileItemList _items) |
KApplicationPropsPlugin is fully implemented except as noted:
supports (_items)
TAKES _items (a Python list of KFileItem) and RETURNS result (int). supports is a static member function.
C++: static bool supports (KFileItemList _items) |
KBindingPropsPlugin is fully implemented except as noted:
supports (_items)
TAKES _items (a Python list of KFileItem) and RETURNS result (int). supports is a static member function.
C++: static bool supports (KFileItemList _items) |
KDevicePropsPlugin is fully implemented except as noted:
supports (_items)
TAKES _items (a Python list of KFileItem) and RETURNS result (int). supports is a static member function.
C++: static bool supports (KFileItemList _items) |
KURLBarItemDialog is fully implemented except as noted:
getInformation (allowGlobal, url, description, icon, iconSize, parent)
TAKES allowGlobal (int), url (KURL), description (QString), icon (QString), iconSize (int), parent (QWidget - default = 0) and RETURNS a tuple - ( result (int), appLocal (int)). getInformation is a static member function.
C++: static bool getInformation (bool allowGlobal, KURL& url, QString& description, QString& icon, bool& appLocal, int iconSize, QWidget* parent = 0) |
typedef KURLComboBox::_KURLComboItem KURLComboItem void insertURLItem (const KURLComboBox::KURLComboItem* a0) void updateItem (const KURLComboBox::KURLComboItem* item, int index, const QPixmap& pix) |
NOT implemented