2003-07-15 18:19:29 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2002-11-04 18:57:47 +00:00
|
|
|
// 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
|
2003-07-15 18:19:29 +00:00
|
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
2002-11-04 18:57:47 +00:00
|
|
|
//
|
|
|
|
// 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-05-21 17:59:10 +00:00
|
|
|
void show_message(PROJECT* p, char* msg, int priority) {
|
2003-05-13 18:55:07 +00:00
|
|
|
char* x;
|
2003-05-21 17:59:10 +00:00
|
|
|
char message[1024];
|
2002-10-13 21:51:23 +00:00
|
|
|
|
2003-05-21 17:59:10 +00:00
|
|
|
strcpy(message, msg);
|
|
|
|
if (message[strlen(message)-1] == '\n') {
|
|
|
|
message[strlen(message)-1] = 0;
|
|
|
|
}
|
|
|
|
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);
|
2002-11-23 00:52:21 +00:00
|
|
|
}
|
2003-06-11 22:42:10 +00:00
|
|
|
if (priority == MSG_INFO)
|
2003-06-19 17:47:15 +00:00
|
|
|
fprintf(stdout, "%s: %s\n", x, message);
|
2003-06-11 22:42:10 +00:00
|
|
|
else
|
2003-06-19 17:47:15 +00:00
|
|
|
fprintf(stderr, "%s: %s\n", x, message);
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|