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
|
|
|
|
2003-03-06 22:16:42 +00:00
|
|
|
void show_message(PROJECT* p, char* message, int priority) {
|
2003-05-13 18:55:07 +00:00
|
|
|
char* x;
|
2002-10-13 21:51:23 +00:00
|
|
|
|
2003-02-21 01:05:43 +00:00
|
|
|
if (p) {
|
2003-05-13 18:55:07 +00:00
|
|
|
x = p->get_project_name();
|
2003-02-21 01:05:43 +00:00
|
|
|
} else {
|
2003-05-13 18:55:07 +00:00
|
|
|
x = "BOINC";
|
2003-02-21 01:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(g_myWnd) {
|
2003-05-13 18:55:07 +00:00
|
|
|
g_myWnd->MessageUser(x, message, priority);
|
2003-02-21 01:05:43 +00:00
|
|
|
} else {
|
2003-05-13 18:55:07 +00:00
|
|
|
fprintf(stderr, "%s: %s (priority: %s)\n", x, 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
|
|
|
}
|
2003-02-25 00:25:07 +00:00
|
|
|
|
|
|
|
BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam)
|
|
|
|
{
|
|
|
|
DWORD* dwInfo = (DWORD*)lParam;
|
|
|
|
DWORD dwFoundId;
|
|
|
|
GetWindowThreadProcessId(hwnd, &dwFoundId);
|
|
|
|
if(dwFoundId == dwInfo[0]) {
|
|
|
|
dwInfo[1] = (DWORD)CWnd::FromHandle(hwnd);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
dwInfo[1] = NULL;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
CWnd* GetWndFromProcId(DWORD dwId)
|
|
|
|
{
|
|
|
|
DWORD dwInfo[2] = {dwId, NULL};
|
|
|
|
EnumWindows(EnumWindowsProc, (LPARAM)dwInfo);
|
|
|
|
return (CWnd*)dwInfo[1];
|
|
|
|
}
|