Exemplo n.º 1
0
 protected override void Percent(KJob job, ulong percent)
 {
     interceptor.Invoke("percent#$", "percent(KJob*, unsigned long)", typeof(void), typeof(KJob), job, typeof(ulong), percent);
 }
Exemplo n.º 2
0
 protected virtual void HandleError(KJob job)
 {
     interceptor.Invoke("handleError#", "handleError(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 3
0
 protected void SlotCopyToTempFileResult(KJob job)
 {
     interceptor.Invoke("slotCopyToTempFileResult#", "slotCopyToTempFileResult(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 4
0
Arquivo: KRun.cs Projeto: KDE/kimono
 protected virtual void SlotStatResult(KJob arg1)
 {
     interceptor.Invoke("slotStatResult#", "slotStatResult(KJob*)", typeof(void), typeof(KJob), arg1);
 }
Exemplo n.º 5
0
 public virtual void ShowError(KJob job)
 {
     interceptor.Invoke("showError#", "showError(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 6
0
 /// <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);
 }
Exemplo n.º 7
0
 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);
 }
Exemplo n.º 8
0
 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);
 }
Exemplo n.º 9
0
 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);
 }
Exemplo n.º 10
0
 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);
 }
Exemplo n.º 11
0
 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);
 }
Exemplo n.º 12
0
 protected override void Suspended(KJob job)
 {
     interceptor.Invoke("suspended#", "suspended(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 13
0
 protected override void Speed(KJob job, ulong value)
 {
     interceptor.Invoke("speed#$", "speed(KJob*, unsigned long)", typeof(void), typeof(KJob), job, typeof(ulong), value);
 }
Exemplo n.º 14
0
 protected override void Resumed(KJob job)
 {
     interceptor.Invoke("resumed#", "resumed(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 15
0
 protected virtual void SlotResume(KJob job)
 {
     interceptor.Invoke("slotResume#", "slotResume(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 16
0
 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);
 }
Exemplo n.º 17
0
 protected virtual void SlotSuspend(KJob job)
 {
     interceptor.Invoke("slotSuspend#", "slotSuspend(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 18
0
 /// <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);
 }
Exemplo n.º 19
0
 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);
 }
Exemplo n.º 20
0
 /// <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);
 }
Exemplo n.º 21
0
 protected virtual bool AddSubjob(KJob job)
 {
     return (bool) interceptor.Invoke("addSubjob#", "addSubjob(KJob*)", typeof(bool), typeof(KJob), job);
 }
Exemplo n.º 22
0
 /// <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);
 }
Exemplo n.º 23
0
 protected override bool RemoveSubjob(KJob job)
 {
     return (bool) interceptor.Invoke("removeSubjob#", "removeSubjob(KJob*)", typeof(bool), typeof(KJob), job);
 }
Exemplo n.º 24
0
 public override void UnregisterJob(KJob job)
 {
     interceptor.Invoke("unregisterJob#", "unregisterJob(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 25
0
 protected virtual void SlotFinished(KJob arg1)
 {
     interceptor.Invoke("slotFinished#", "slotFinished(KJob*)", typeof(void), typeof(KJob), arg1);
 }
Exemplo n.º 26
0
 public abstract QWidget Widget(KJob job);
Exemplo n.º 27
0
 protected void SlotBrowserScanFinished(KJob job)
 {
     interceptor.Invoke("slotBrowserScanFinished#", "slotBrowserScanFinished(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 28
0
 protected override void Finished(KJob job)
 {
     interceptor.Invoke("finished#", "finished(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 29
0
 protected override void SlotResult(KJob job)
 {
     interceptor.Invoke("slotResult#", "slotResult(KJob*)", typeof(void), typeof(KJob), job);
 }
Exemplo n.º 30
0
 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);
 }