예제 #1
0
 /// <remarks>
 ///  Removes an item from metainfo extraction.
 /// <param> name="item" the item that should be removed from the queue
 ///          </param></remarks>        <short>    Removes an item from metainfo extraction.</short>
 public void RemoveItem(KFileItem item)
 {
     interceptor.Invoke("removeItem#", "removeItem(const KFileItem&)", typeof(void), typeof(KFileItem), item);
 }
예제 #2
0
 /// <remarks>
 ///  Inform the hosting application that the user moved the mouse over an item.
 ///  Used when the mouse is on an URL.
 ///    </remarks>        <short>    Inform the hosting application that the user moved the mouse over an item.</short>
 public void MouseOverInfo(KFileItem item)
 {
     interceptor.Invoke("mouseOverInfo#", "mouseOverInfo(const KFileItem&)", typeof(void), typeof(KFileItem), item);
 }
예제 #3
0
파일: KDirModel.cs 프로젝트: KDE/kimono
 /// <remarks>
 ///  Return the index for a given kfileitem. This can be slow.
 ///      </remarks>        <short>    Return the index for a given kfileitem.</short>
 public QModelIndex IndexForItem(KFileItem arg1)
 {
     return (QModelIndex) interceptor.Invoke("indexForItem#", "indexForItem(const KFileItem&) const", typeof(QModelIndex), typeof(KFileItem), arg1);
 }
예제 #4
0
파일: KDirLister.cs 프로젝트: KDE/kimono
 protected virtual bool MatchesMimeFilter(KFileItem arg1)
 {
     return (bool) interceptor.Invoke("matchesMimeFilter#", "matchesMimeFilter(const KFileItem&) const", typeof(bool), typeof(KFileItem), arg1);
 }