removed deconstructor, pointless functions, and new lines before braces
This commit is contained in:
parent
9b857044fb
commit
0b2251460c
1 changed files with 3 additions and 17 deletions
|
@ -18,19 +18,14 @@ namespace Saviour_Backup_System
|
||||||
public System.ComponentModel.ISynchronizeInvoke SynchronizationObject { get; set; }
|
public System.ComponentModel.ISynchronizeInvoke SynchronizationObject { get; set; }
|
||||||
int arrayIndex;
|
int arrayIndex;
|
||||||
DriveInfo copyingDrive;
|
DriveInfo copyingDrive;
|
||||||
Int64 startDate = tools.getUnixTimeStamp();
|
|
||||||
public transferWindow(int backups, DriveInfo drive)
|
public transferWindow(int backups, DriveInfo drive) {
|
||||||
{
|
|
||||||
copyingDrive = drive;
|
copyingDrive = drive;
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
arrayIndex = backups;
|
arrayIndex = backups;
|
||||||
currentFileProgress.Maximum = 1000;
|
currentFileProgress.Maximum = 1000;
|
||||||
|
|
||||||
}
|
}
|
||||||
~transferWindow() //deconstructor (hopefully ran when it closes)
|
|
||||||
{
|
|
||||||
MessageBox.Show("Hi there.");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void update(Int32 totalFiles, Int32 copiedFiles, Int64 totalBytes, Int64 copiedBytes, string currentFilename)
|
public void update(Int32 totalFiles, Int32 copiedFiles, Int64 totalBytes, Int64 copiedBytes, string currentFilename)
|
||||||
{
|
{
|
||||||
|
@ -40,7 +35,7 @@ namespace Saviour_Backup_System
|
||||||
if (totalBytes != 0) {
|
if (totalBytes != 0) {
|
||||||
currentFileProgress.Value = Convert.ToInt32((1000f / (totalBytes / 1024f)) * (copiedBytes / 1024f));
|
currentFileProgress.Value = Convert.ToInt32((1000f / (totalBytes / 1024f)) * (copiedBytes / 1024f));
|
||||||
}
|
}
|
||||||
totalFilesProgress.Text = "Copying File " + copiedFiles + " of " + totalFiles + ".";
|
totalFilesProgress.Text = "Copying Bytes " + copiedFiles + " of " + totalFiles + ".";
|
||||||
currentFile.Text = currentFilename;
|
currentFile.Text = currentFilename;
|
||||||
setup.CT.progressBars[arrayIndex].Value = totalFilesProgress.Value;
|
setup.CT.progressBars[arrayIndex].Value = totalFilesProgress.Value;
|
||||||
setup.CT.progressBars[arrayIndex].Maximum = totalFiles;
|
setup.CT.progressBars[arrayIndex].Maximum = totalFiles;
|
||||||
|
@ -68,14 +63,5 @@ namespace Saviour_Backup_System
|
||||||
{
|
{
|
||||||
this.WindowState = FormWindowState.Minimized;
|
this.WindowState = FormWindowState.Minimized;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void transferWindow_FormClosing(object sender, FormClosingEventArgs e)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private void transferWindow_FormClosed(object sender, FormClosedEventArgs e)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue