mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=3245
This commit is contained in:
parent
78da63e17c
commit
c6f88a36fb
|
@ -17,8 +17,11 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#include "stdwx.h"
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "BOINCGUIApp.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "BOINCGUIApp.h"
|
||||
#include "MainFrame.h"
|
||||
#include "MainDocument.h"
|
||||
|
|
|
@ -17,7 +17,13 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _BOINCGUIAPP_H_
|
||||
#define _BOINCGUIAPP_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "BOINCGUIApp.cpp"
|
||||
#endif
|
||||
|
||||
|
||||
#include "MainFrame.h"
|
||||
#include "MainDocument.h"
|
||||
|
@ -30,11 +36,9 @@ class CBOINCGUIApp : public wxApp
|
|||
typedef wxApp Inherited;
|
||||
|
||||
protected:
|
||||
int OnExit();
|
||||
int OnExit();
|
||||
|
||||
/// Called by wxWindows to initialize command line handling.
|
||||
void OnInitCmdLine(wxCmdLineParser &parser);
|
||||
/// Called by wxWindows to allow CboincguiApp to handle the command line.
|
||||
bool OnCmdLineParsed(wxCmdLineParser &parser);
|
||||
|
||||
CMainFrame* m_pFrame;
|
||||
|
@ -51,3 +55,6 @@ public:
|
|||
|
||||
|
||||
DECLARE_APP(CBOINCGUIApp)
|
||||
|
||||
|
||||
#endif
|
|
@ -17,10 +17,9 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
// stdafx.h : include file for standard system include files,
|
||||
// or project specific include files that are used frequently, but
|
||||
// are changed infrequently
|
||||
//
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "BaseListCtrlView.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "BaseListCtrlView.h"
|
||||
|
|
|
@ -17,7 +17,13 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _BASELISTCTRLVIEW_H_
|
||||
#define _BASELISTCTRLVIEW_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "BaseListCtrlView.cpp"
|
||||
#endif
|
||||
|
||||
|
||||
class CBaseListCtrlView : public wxListCtrl
|
||||
{
|
||||
|
@ -31,3 +37,6 @@ public:
|
|||
|
||||
virtual wxString GetViewName(void);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
|
@ -17,10 +17,9 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
// stdafx.h : include file for standard system include files,
|
||||
// or project specific include files that are used frequently, but
|
||||
// are changed infrequently
|
||||
//
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "BaseWindowView.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "BaseWindowView.h"
|
||||
|
|
|
@ -17,7 +17,13 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _BASEWINDOWVIEW_H_
|
||||
#define _BASEWINDOWVIEW_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "BaseWindowView.cpp"
|
||||
#endif
|
||||
|
||||
|
||||
class CBaseWindowView : public wxPanel
|
||||
{
|
||||
|
@ -31,3 +37,6 @@ public:
|
|||
|
||||
virtual wxString GetViewName(void);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
|
@ -17,10 +17,15 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _EVENTS_H_
|
||||
#define _EVENTS_H_
|
||||
|
||||
|
||||
enum {
|
||||
ID_STATUSBAR = wxID_HIGHEST + 1,
|
||||
ID_COMMANDSATTACHPROJECT,
|
||||
ID_TOOLSOPTIONS
|
||||
} enumEvents;
|
||||
|
||||
|
||||
#endif
|
|
@ -17,6 +17,10 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "MainDocument.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "MainDocument.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,13 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _MAINDOCUMENT_H_
|
||||
#define _MAINDOCUMENT_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "MainDocument.cpp"
|
||||
#endif
|
||||
|
||||
|
||||
class CMainDocument : public wxObject
|
||||
{
|
||||
|
@ -27,3 +33,6 @@ public:
|
|||
CMainDocument(void);
|
||||
~CMainDocument(void);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
|
@ -17,6 +17,10 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "MainFrame.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "BOINCGUIApp.h"
|
||||
#include "MainFrame.h"
|
||||
|
|
|
@ -17,7 +17,13 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _MAINFRAME_H_
|
||||
#define _MAINFRAME_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "MainFrame.cpp"
|
||||
#endif
|
||||
|
||||
|
||||
class CMainFrame : public wxFrame
|
||||
{
|
||||
|
@ -63,3 +69,6 @@ private:
|
|||
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
|
||||
#endif
|
|
@ -17,6 +17,10 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "MessagesView.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "MessagesView.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,14 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _MESSAGESVIEW_H_
|
||||
#define _MESSAGESVIEW_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "MessagesView.cpp"
|
||||
#endif
|
||||
|
||||
|
||||
#include "BaseListCtrlView.h"
|
||||
|
||||
class CMessagesView : public CBaseListCtrlView
|
||||
|
@ -32,3 +39,6 @@ public:
|
|||
|
||||
virtual wxString GetViewName(void);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
|
@ -17,6 +17,10 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "ProjectsView.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "ProjectsView.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,14 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _PROJECTSVIEW_H_
|
||||
#define _PROJECTSVIEW_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "ProjectsView.cpp"
|
||||
#endif
|
||||
|
||||
|
||||
#include "BaseListCtrlView.h"
|
||||
|
||||
class CProjectsView : public CBaseListCtrlView
|
||||
|
@ -32,3 +39,6 @@ public:
|
|||
|
||||
virtual wxString GetViewName(void);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
|
@ -17,6 +17,10 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "ResourceUtilizationView.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "ResourceUtilizationView.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,14 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _RESOURCEUTILIZATIONVIEW_H_
|
||||
#define _RESOURCEUTILIZATIONVIEW_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "ResourceUtilizationView.cpp"
|
||||
#endif
|
||||
|
||||
|
||||
#include "BaseWindowView.h"
|
||||
|
||||
class CResourceUtilizationView : public CBaseWindowView
|
||||
|
@ -32,3 +39,6 @@ public:
|
|||
|
||||
virtual wxString GetViewName(void);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
|
@ -17,6 +17,10 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "TransfersView.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "TransfersView.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,14 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _TRANSFERSVIEW_H_
|
||||
#define _TRANSFERSVIEW_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "TransfersView.cpp"
|
||||
#endif
|
||||
|
||||
|
||||
#include "BaseListCtrlView.h"
|
||||
|
||||
class CTransfersView : public CBaseListCtrlView
|
||||
|
@ -32,3 +39,6 @@ public:
|
|||
|
||||
virtual wxString GetViewName(void);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
|
@ -17,6 +17,10 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma implementation "WorkView.h"
|
||||
#endif
|
||||
|
||||
#include "stdwx.h"
|
||||
#include "WorkView.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,14 @@
|
|||
// Contributor(s):
|
||||
//
|
||||
|
||||
#pragma once
|
||||
#ifndef _WORKVIEW_H_
|
||||
#define _WORKVIEW_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(__APPLE__)
|
||||
#pragma interface "WorkView.cpp"
|
||||
#endif
|
||||
|
||||
|
||||
#include "BaseListCtrlView.h"
|
||||
|
||||
class CWorkView : public CBaseListCtrlView
|
||||
|
@ -32,3 +39,6 @@ public:
|
|||
|
||||
virtual wxString GetViewName(void);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue