2002-11-04 18:57:47 +00:00
|
|
|
// The contents of this file are subject to the Mozilla Public License
|
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
|
|
|
// http://www.mozilla.org/MPL/
|
|
|
|
//
|
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
|
|
|
// include header
|
2002-08-12 23:57:49 +00:00
|
|
|
|
2002-08-12 00:51:42 +00:00
|
|
|
#include "wingui.h"
|
2002-12-18 20:24:56 +00:00
|
|
|
#include "wingui_mainwindow.h"
|
2002-11-04 18:57:47 +00:00
|
|
|
|
2002-10-13 21:51:23 +00:00
|
|
|
void show_message(char* message, char* priority) {
|
2002-11-23 00:52:21 +00:00
|
|
|
if(g_myWnd) {
|
2002-12-10 06:03:05 +00:00
|
|
|
g_myWnd->MessageUser("BOINC", message, priority);
|
2002-11-04 18:57:47 +00:00
|
|
|
}
|
2002-10-13 21:51:23 +00:00
|
|
|
}
|
|
|
|
|
2002-12-06 19:45:38 +00:00
|
|
|
void show_project_message(PROJECT* project, char* message, char* priority) {
|
2002-11-23 00:52:21 +00:00
|
|
|
if(g_myWnd) {
|
2002-12-06 19:45:38 +00:00
|
|
|
if(strcmp(project->project_name, "")) {
|
|
|
|
g_myWnd->MessageUser(project->project_name, message, priority);
|
|
|
|
} else {
|
|
|
|
g_myWnd->MessageUser(project->master_url, message, priority);
|
|
|
|
}
|
2002-11-23 00:52:21 +00:00
|
|
|
}
|
2002-12-06 19:45:38 +00:00
|
|
|
}
|
|
|
|
|
2002-12-19 22:43:38 +00:00
|
|
|
int add_new_project() {
|
2002-12-06 19:45:38 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetByteString(double nbytes, CString* str) {
|
2002-12-11 23:10:51 +00:00
|
|
|
double xTera = (1024.0*1024*1024*1024);
|
|
|
|
double xGiga = (1024.0*1024*1024);
|
|
|
|
double xMega = (1024.0*1024);
|
|
|
|
double xKilo = (1024.0);
|
|
|
|
if (nbytes >= xTera) {
|
|
|
|
str->Format("%0.2f TB", nbytes/xTera);
|
|
|
|
} else if (nbytes >= xGiga) {
|
|
|
|
str->Format("%0.2f GB", nbytes/xGiga);
|
|
|
|
} else if (nbytes >= xMega) {
|
|
|
|
str->Format("%0.2f MB", nbytes/xMega);
|
|
|
|
} else if (nbytes >= xKilo) {
|
|
|
|
str->Format("%0.2f KB", nbytes/xKilo);
|
2002-12-06 19:45:38 +00:00
|
|
|
} else {
|
2002-12-09 23:53:37 +00:00
|
|
|
str->Format("%0.0f bytes", nbytes);
|
2002-12-06 19:45:38 +00:00
|
|
|
}
|
2002-10-13 21:51:23 +00:00
|
|
|
}
|
|
|
|
|
2002-12-18 20:24:56 +00:00
|
|
|
BOOL RequestNetConnect()
|
2002-11-04 18:57:47 +00:00
|
|
|
{
|
2002-12-18 20:24:56 +00:00
|
|
|
if(g_myWnd) {
|
|
|
|
return g_myWnd->RequestNetConnect();
|
2002-12-09 23:53:37 +00:00
|
|
|
}
|
2002-12-18 20:24:56 +00:00
|
|
|
return FALSE;
|
2002-12-09 23:53:37 +00:00
|
|
|
}
|