protected override void Percent(KJob job, ulong percent) { interceptor.Invoke("percent#$", "percent(KJob*, unsigned long)", typeof(void), typeof(KJob), job, typeof(ulong), percent); }
protected virtual void HandleError(KJob job) { interceptor.Invoke("handleError#", "handleError(KJob*)", typeof(void), typeof(KJob), job); }
protected void SlotCopyToTempFileResult(KJob job) { interceptor.Invoke("slotCopyToTempFileResult#", "slotCopyToTempFileResult(KJob*)", typeof(void), typeof(KJob), job); }
protected virtual void SlotStatResult(KJob arg1) { interceptor.Invoke("slotStatResult#", "slotStatResult(KJob*)", typeof(void), typeof(KJob), arg1); }
public virtual void ShowError(KJob job) { interceptor.Invoke("showError#", "showError(KJob*)", typeof(void), typeof(KJob), job); }
/// <remarks> /// Checks whether the dialog should be deleted or cleaned. /// <param> name="job" the job's widget that will be auto-deleted /// </param></remarks> <return> false if the dialog only calls slotClean, true if it will be /// deleted /// </return> /// <short> Checks whether the dialog should be deleted or cleaned.</short> /// <see> setAutoDelete</see> public bool AutoDelete(KJob job) { return (bool) interceptor.Invoke("autoDelete#", "autoDelete(KJob*) const", typeof(bool), typeof(KJob), job); }
protected virtual void SlotInfoMessage(KJob job, string plain, string rich) { interceptor.Invoke("slotInfoMessage#$$", "slotInfoMessage(KJob*, const QString&, const QString&)", typeof(void), typeof(KJob), job, typeof(string), plain, typeof(string), rich); }
public virtual KIO.RenameDialog_Result AskFileRename(KJob job, string caption, string src, string dest, KIO.RenameDialog_Mode mode, StringBuilder newDest, long sizeSrc, long sizeDest, int ctimeSrc, int ctimeDest, int mtimeSrc) { return (KIO.RenameDialog_Result) interceptor.Invoke("askFileRename#$$$$$$$$$$", "askFileRename(KJob*, const QString&, const QString&, const QString&, KIO::RenameDialog_Mode, QString&, KIO::filesize_t, KIO::filesize_t, time_t, time_t, time_t)", typeof(KIO.RenameDialog_Result), typeof(KJob), job, typeof(string), caption, typeof(string), src, typeof(string), dest, typeof(KIO.RenameDialog_Mode), mode, typeof(StringBuilder), newDest, typeof(long), sizeSrc, typeof(long), sizeDest, typeof(int), ctimeSrc, typeof(int), ctimeDest, typeof(int), mtimeSrc); }
public virtual KIO.RenameDialog_Result AskFileRename(KJob job, string caption, string src, string dest, KIO.RenameDialog_Mode mode, StringBuilder newDest) { return (KIO.RenameDialog_Result) interceptor.Invoke("askFileRename#$$$$$", "askFileRename(KJob*, const QString&, const QString&, const QString&, KIO::RenameDialog_Mode, QString&)", typeof(KIO.RenameDialog_Result), typeof(KJob), job, typeof(string), caption, typeof(string), src, typeof(string), dest, typeof(KIO.RenameDialog_Mode), mode, typeof(StringBuilder), newDest); }
protected override void TotalAmount(KJob job, KJob.Unit unit, ulong amount) { interceptor.Invoke("totalAmount#$$", "totalAmount(KJob*, KJob::Unit, qulonglong)", typeof(void), typeof(KJob), job, typeof(KJob.Unit), unit, typeof(ulong), amount); }
protected override void Description(KJob job, string title, QPair<string, string> field1, QPair<string, string> field2) { interceptor.Invoke("description#$??", "description(KJob*, const QString&, const QPair<QString,QString>&, const QPair<QString,QString>&)", typeof(void), typeof(KJob), job, typeof(string), title, typeof(QPair<string, string>), field1, typeof(QPair<string, string>), field2); }
protected override void Suspended(KJob job) { interceptor.Invoke("suspended#", "suspended(KJob*)", typeof(void), typeof(KJob), job); }
protected override void Speed(KJob job, ulong value) { interceptor.Invoke("speed#$", "speed(KJob*, unsigned long)", typeof(void), typeof(KJob), job, typeof(ulong), value); }
protected override void Resumed(KJob job) { interceptor.Invoke("resumed#", "resumed(KJob*)", typeof(void), typeof(KJob), job); }
protected virtual void SlotResume(KJob job) { interceptor.Invoke("slotResume#", "slotResume(KJob*)", typeof(void), typeof(KJob), job); }
public virtual KIO.SkipDialog_Result AskSkip(KJob job, bool multi, string error_text) { return (KIO.SkipDialog_Result) interceptor.Invoke("askSkip#$$", "askSkip(KJob*, bool, const QString&)", typeof(KIO.SkipDialog_Result), typeof(KJob), job, typeof(bool), multi, typeof(string), error_text); }
protected virtual void SlotSuspend(KJob job) { interceptor.Invoke("slotSuspend#", "slotSuspend(KJob*)", typeof(void), typeof(KJob), job); }
/// <remarks> /// This controls whether the dialog should be deleted or only cleaned when /// the KJob is finished (or canceled). /// If your dialog is an embedded widget and not a separate window, you should /// setAutoDelete(false) in the constructor of your custom dialog. /// <param> name="job" the job's widget that is going to be auto-deleted /// </param><param> name="autoDelete" If false the dialog will only call method slotClean. /// If true the dialog will be deleted. /// </param></remarks> <short> This controls whether the dialog should be deleted or only cleaned when the KJob is finished (or canceled).</short> /// <see> autoDelete</see> public void SetAutoDelete(KJob job, bool autoDelete) { interceptor.Invoke("setAutoDelete#$", "setAutoDelete(KJob*, bool)", typeof(void), typeof(KJob), job, typeof(bool), autoDelete); }
protected override void SlotWarning(KJob job, string plain, string rich) { interceptor.Invoke("slotWarning#$$", "slotWarning(KJob*, const QString&, const QString&)", typeof(void), typeof(KJob), job, typeof(string), plain, typeof(string), rich); }
/// <remarks> /// This controls whether the job should be canceled if the dialog is closed. /// <param> name="job" the job's widget that will be stopped when closing /// </param><param> name="stopOnClose" If true the job will be stopped if the dialog is closed, /// otherwise the job will continue even on close. /// </param></remarks> <short> This controls whether the job should be canceled if the dialog is closed.</short> /// <see> stopOnClose</see> public void SetStopOnClose(KJob job, bool stopOnClose) { interceptor.Invoke("setStopOnClose#$", "setStopOnClose(KJob*, bool)", typeof(void), typeof(KJob), job, typeof(bool), stopOnClose); }
protected virtual bool AddSubjob(KJob job) { return (bool) interceptor.Invoke("addSubjob#", "addSubjob(KJob*)", typeof(bool), typeof(KJob), job); }
/// <remarks> /// Checks whether the job will be killed when the dialog is closed. /// <param> name="job" the job's widget that will be stopped when closing /// </param></remarks> <return> true if the job is killed on close event, false otherwise. /// </return> /// <short> Checks whether the job will be killed when the dialog is closed.</short> /// <see> setStopOnClose</see> public bool StopOnClose(KJob job) { return (bool) interceptor.Invoke("stopOnClose#", "stopOnClose(KJob*) const", typeof(bool), typeof(KJob), job); }
protected override bool RemoveSubjob(KJob job) { return (bool) interceptor.Invoke("removeSubjob#", "removeSubjob(KJob*)", typeof(bool), typeof(KJob), job); }
public override void UnregisterJob(KJob job) { interceptor.Invoke("unregisterJob#", "unregisterJob(KJob*)", typeof(void), typeof(KJob), job); }
protected virtual void SlotFinished(KJob arg1) { interceptor.Invoke("slotFinished#", "slotFinished(KJob*)", typeof(void), typeof(KJob), arg1); }
public abstract QWidget Widget(KJob job);
protected void SlotBrowserScanFinished(KJob job) { interceptor.Invoke("slotBrowserScanFinished#", "slotBrowserScanFinished(KJob*)", typeof(void), typeof(KJob), job); }
protected override void Finished(KJob job) { interceptor.Invoke("finished#", "finished(KJob*)", typeof(void), typeof(KJob), job); }
protected override void SlotResult(KJob job) { interceptor.Invoke("slotResult#", "slotResult(KJob*)", typeof(void), typeof(KJob), job); }
protected override void InfoMessage(KJob job, string plain, string rich) { interceptor.Invoke("infoMessage#$$", "infoMessage(KJob*, const QString&, const QString&)", typeof(void), typeof(KJob), job, typeof(string), plain, typeof(string), rich); }