mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10700
This commit is contained in:
parent
2497a198e5
commit
1669169937
|
@ -24,25 +24,26 @@
|
|||
|
||||
#include "stdwx.h"
|
||||
#include "BOINCGUIApp.h"
|
||||
#include "BOINCBaseFrame.h"
|
||||
#include "Events.h"
|
||||
#include "common/wxAnimate.h"
|
||||
#include "common/wxFlatNotebook.h"
|
||||
#include "sg_ImageLoader.h"
|
||||
#include "sg_DlgPreferences.h"
|
||||
#include "BOINCBaseFrame.h"
|
||||
|
||||
#include "sg_BoincSimpleGUI.h"
|
||||
#include "sg_SkinClass.h"
|
||||
#include "sg_ImageLoader.h"
|
||||
#include "sg_StatImageLoader.h"
|
||||
#include "sg_ProjectsComponent.h"
|
||||
#include "sg_ViewTabPage.h"
|
||||
#include "error_numbers.h"
|
||||
#include "parse.h"
|
||||
#include <string>
|
||||
#include "sg_DlgPreferences.h"
|
||||
|
||||
#include "wizardex.h"
|
||||
#include "BOINCWizards.h"
|
||||
#include "BOINCBaseWizard.h"
|
||||
#include "WizardAttachProject.h"
|
||||
#include "WizardAccountManager.h"
|
||||
#include "sg_StatImageLoader.h"
|
||||
#include "sg_BoincSimpleGUI.h"
|
||||
#include "app_ipc.h"
|
||||
#include "error_numbers.h"
|
||||
#include "parse.h"
|
||||
#include <string>
|
||||
|
||||
#include "res/boinc.xpm"
|
||||
|
||||
|
|
|
@ -21,9 +21,16 @@
|
|||
#ifndef _SIMPLEFRAME_H_
|
||||
#define _SIMPLEFRAME_H_
|
||||
|
||||
class CViewTabPage;
|
||||
class ImageLoader;
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "sg_BoincSimpleGUI.cpp"
|
||||
#endif
|
||||
|
||||
class CViewTabPage;
|
||||
class StatImageLoader;
|
||||
class SkinClass;
|
||||
class ImageLoader;
|
||||
#include "common/wxAnimate.h"
|
||||
#include "common/wxFlatNotebook.h"
|
||||
|
||||
// Define a new frame
|
||||
class CSimpleFrame : public CBOINCBaseFrame
|
||||
|
|
|
@ -1,11 +1,30 @@
|
|||
#include "stdwx.h"
|
||||
// Berkeley Open Infrastructure for Network Computing
|
||||
// http://boinc.berkeley.edu
|
||||
// Copyright (C) 2005 University of California
|
||||
//
|
||||
// This is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Lesser General Public
|
||||
// License as published by the Free Software Foundation;
|
||||
// either version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This software is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
// See the GNU Lesser General Public License for more details.
|
||||
//
|
||||
// To view the GNU Lesser General Public License visit
|
||||
// http://www.gnu.org/copyleft/lesser.html
|
||||
// or write to the Free Software Foundation, Inc.,
|
||||
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
// Don't modify comment
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "sg_DlgPreferences.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "sg_DlgPreferences.h"
|
||||
#include "sg_SkinClass.h"
|
||||
//[inc]add your include files here
|
||||
|
||||
//[inc]end your include
|
||||
enum
|
||||
{
|
||||
ID_OPENBUTTON = 10001,
|
||||
|
|
|
@ -1,7 +1,31 @@
|
|||
// Berkeley Open Infrastructure for Network Computing
|
||||
// http://boinc.berkeley.edu
|
||||
// Copyright (C) 2005 University of California
|
||||
//
|
||||
// This is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Lesser General Public
|
||||
// License as published by the Free Software Foundation;
|
||||
// either version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This software is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
// See the GNU Lesser General Public License for more details.
|
||||
//
|
||||
// To view the GNU Lesser General Public License visit
|
||||
// http://www.gnu.org/copyleft/lesser.html
|
||||
// or write to the Free Software Foundation, Inc.,
|
||||
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
|
||||
#ifndef _DLG_PREFERENCES_H_
|
||||
#define _DLG_PREFERENCES_H_
|
||||
|
||||
#include "sg_SkinClass.h"
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "sg_DlgPreferences.cpp"
|
||||
#endif
|
||||
|
||||
class SkinClass;
|
||||
|
||||
class CDlgPreferences:public wxDialog
|
||||
{
|
||||
|
|
|
@ -1,5 +1,27 @@
|
|||
#include "stdwx.h"
|
||||
// Berkeley Open Infrastructure for Network Computing
|
||||
// http://boinc.berkeley.edu
|
||||
// Copyright (C) 2005 University of California
|
||||
//
|
||||
// This is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Lesser General Public
|
||||
// License as published by the Free Software Foundation;
|
||||
// either version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This software is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
// See the GNU Lesser General Public License for more details.
|
||||
//
|
||||
// To view the GNU Lesser General Public License visit
|
||||
// http://www.gnu.org/copyleft/lesser.html
|
||||
// or write to the Free Software Foundation, Inc.,
|
||||
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "sg_ImageLoader.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "sg_ImageLoader.h"
|
||||
|
||||
BEGIN_EVENT_TABLE(ImageLoader, wxWindow)
|
||||
|
|
|
@ -1,6 +1,29 @@
|
|||
// Berkeley Open Infrastructure for Network Computing
|
||||
// http://boinc.berkeley.edu
|
||||
// Copyright (C) 2005 University of California
|
||||
//
|
||||
// This is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Lesser General Public
|
||||
// License as published by the Free Software Foundation;
|
||||
// either version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This software is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
// See the GNU Lesser General Public License for more details.
|
||||
//
|
||||
// To view the GNU Lesser General Public License visit
|
||||
// http://www.gnu.org/copyleft/lesser.html
|
||||
// or write to the Free Software Foundation, Inc.,
|
||||
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
#ifndef _IMAGELOADER_H_
|
||||
#define _IMAGELOADER_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "sg_ImageLoader.cpp"
|
||||
#endif
|
||||
|
||||
class ImageLoader : public wxWindow
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -1,7 +1,29 @@
|
|||
// Berkeley Open Infrastructure for Network Computing
|
||||
// http://boinc.berkeley.edu
|
||||
// Copyright (C) 2005 University of California
|
||||
//
|
||||
// This is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Lesser General Public
|
||||
// License as published by the Free Software Foundation;
|
||||
// either version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This software is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
// See the GNU Lesser General Public License for more details.
|
||||
//
|
||||
// To view the GNU Lesser General Public License visit
|
||||
// http://www.gnu.org/copyleft/lesser.html
|
||||
// or write to the Free Software Foundation, Inc.,
|
||||
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "sg_SkinClass.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
|
||||
#include "sg_SkinClass.h"
|
||||
|
||||
#include <string>
|
||||
|
||||
SkinClass::SkinClass()
|
||||
{
|
||||
|
|
|
@ -1,7 +1,28 @@
|
|||
// Berkeley Open Infrastructure for Network Computing
|
||||
// http://boinc.berkeley.edu
|
||||
// Copyright (C) 2005 University of California
|
||||
//
|
||||
// This is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Lesser General Public
|
||||
// License as published by the Free Software Foundation;
|
||||
// either version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This software is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
// See the GNU Lesser General Public License for more details.
|
||||
//
|
||||
// To view the GNU Lesser General Public License visit
|
||||
// http://www.gnu.org/copyleft/lesser.html
|
||||
// or write to the Free Software Foundation, Inc.,
|
||||
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
#ifndef _SKIN_CLASS
|
||||
#define _SKIN_CLASS
|
||||
|
||||
#include <string>
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "sg_SkinClass.cpp"
|
||||
#endif
|
||||
|
||||
class SkinClass
|
||||
{
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
|
||||
#include "stdwx.h"
|
||||
#include "BOINCGUIApp.h"
|
||||
#include "MainDocument.h"
|
||||
#include "app_ipc.h"
|
||||
#include "common/wxAnimate.h"
|
||||
#include "common/wxFlatNotebook.h"
|
||||
|
|
Loading…
Reference in New Issue