Changeset 29932 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jun 1, 2010 1:40:07 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62200
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ProgressProxyImpl.h
r29862 r29932 59 59 CBSTR bstrDescription, 60 60 BOOL fCancelable, 61 ULONG cOtherProgressObjects,62 61 ULONG uTotalOperationsWeight, 63 62 CBSTR bstrFirstOperationDescription, 64 63 ULONG uFirstOperationWeight, 65 OUT_GUID pId = NULL);64 ULONG cOtherProgressObjectOperations); 66 65 void uninit(); 67 66 68 67 // IProgress properties 68 STDMETHOD(COMGETTER(Cancelable))(BOOL *aCancelable); 69 69 STDMETHOD(COMGETTER(Percent))(ULONG *aPercent); 70 STDMETHOD(COMGETTER(TimeRemaining))(LONG *aTimeRemaining); 70 71 STDMETHOD(COMGETTER(Completed))(BOOL *aCompleted); 71 72 STDMETHOD(COMGETTER(Canceled))(BOOL *aCanceled); 72 73 STDMETHOD(COMGETTER(ResultCode))(LONG *aResultCode); 73 74 STDMETHOD(COMGETTER(ErrorInfo))(IVirtualBoxErrorInfo **aErrorInfo); 75 //STDMETHOD(COMGETTER(OperationCount))(ULONG *aOperationCount); - not necessary 76 STDMETHOD(COMGETTER(Operation))(ULONG *aOperation); 77 STDMETHOD(COMGETTER(OperationDescription))(BSTR *aOperationDescription); 74 78 STDMETHOD(COMGETTER(OperationPercent))(ULONG *aOperationPercent); 75 79 STDMETHOD(COMSETTER(Timeout))(ULONG aTimeout); … … 92 96 const char *aText, ...); 93 97 bool notifyPointOfNoReturn(void); 94 bool setOtherProgressObject(IProgress *pOtherProgress, ULONG uOperationWeight); 95 bool clearOtherProgressObject(const char *pszLastOperationDescription, ULONG uLastOperationWeight); 98 bool setOtherProgressObject(IProgress *pOtherProgress); 96 99 97 100 /** For com::SupportErrorInfoImpl. */ … … 105 108 /** The other progress object. This can be NULL. */ 106 109 ComPtr<IProgress> mptrOtherProgress; 107 /** The number of other progress objects expected. */ 108 ULONG mcOtherProgressObjects; 109 /** The current other progress object. */ 110 ULONG miCurOtherProgressObject; 110 /** Set if the other progress object has multiple operations. */ 111 bool mfMultiOperation; 112 /** The weight the other progress object started at. */ 113 ULONG muOtherProgressStartWeight; 114 /** The weight of other progress object. */ 115 ULONG muOtherProgressWeight; 116 /** The operation number the other progress object started at. */ 117 ULONG muOtherProgressStartOperation; 111 118 112 119 };
Note:
See TracChangeset
for help on using the changeset viewer.