diff --git a/Projects/CodeBlocks/SleepyHead.depend b/Projects/CodeBlocks/SleepyHead.depend index fc7c2ee7..4cbd4bdb 100644 --- a/Projects/CodeBlocks/SleepyHead.depend +++ b/Projects/CodeBlocks/SleepyHead.depend @@ -8306,7 +8306,7 @@ -1307848442 /home/mark/projects/git/sleepyhead/src/version.h +1307850405 /home/mark/projects/git/sleepyhead/src/version.h 1307627540 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h "machine.h" diff --git a/src/graphs/graph.cpp b/src/graphs/graph.cpp index 6c79dc82..fed4c2e0 100644 --- a/src/graphs/graph.cpp +++ b/src/graphs/graph.cpp @@ -12,6 +12,14 @@ License: LGPL #include #include #include + + +#ifdef __DARWIN__ +#include +#include +#endif + + #include "graph.h" #include "sleeplib/profiles.h" #include "freesans.c" @@ -46,6 +54,7 @@ wxFont *smallfont=NULL,*bigfont=NULL,*boldfont=NULL; bool gfont_init=false; FTGLPixmapFont *normalfont=NULL; +FTGLPixmapFont *largefont=NULL; FTGLTextureFont *rotfont=NULL; list font_paths; @@ -65,17 +74,24 @@ void GraphInit() } f.Close(); } + normalfont=new FTGLPixmapFont(fontfile.mb_str()); + largefont=new FTGLPixmapFont(fontfile.mb_str()); rotfont=new FTGLTextureFont(fontfile.mb_str()); if (normalfont->Error()) { delete normalfont; normalfont=NULL; } + if (largefont->Error()) { + delete largefont; + largefont=NULL; + } if (rotfont->Error()) { delete rotfont; rotfont=NULL; } rotfont->FaceSize(14); + largefont->FaceSize(30); normalfont->FaceSize(14); bigfont=new wxFont(32,wxFONTFAMILY_ROMAN,wxFONTSTYLE_NORMAL,wxFONTWEIGHT_NORMAL); boldfont=new wxFont(12,wxFONTFAMILY_ROMAN,wxFONTSTYLE_NORMAL,wxFONTWEIGHT_BOLD); @@ -275,7 +291,13 @@ gGraphWindow::gGraphWindow(wxWindow *parent, wxWindowID id,const wxString & titl m_foobar_moved=0; gtitle=foobar=xaxis=yaxis=NULL; +#if defined(__DARWIN__) + // Screw you apple.. + AGLPixelFormat aglpf=ChoosePixelFormat(NULL); + gl_context=new wxGLContext(aglpf,this,wxNullPalette,NULL); +#else gl_context=new wxGLContext(this,NULL); +#endif rotfont->FaceSize(14); AddLayer(new gGraphTitle(title,wxVERTICAL,boldfont)); @@ -806,7 +828,7 @@ void gGraphWindow::OnPaint(wxPaintEvent& event) //#endif GetClientSize(&m_scrX, &m_scrY); -#if !defined(__WXMAC__) +#if !defined(__DARWIN__) gl_context->SetCurrent(*this); // A generic Context needs to be used.. Not one per graph window #else gl_context->SetCurrent(); diff --git a/src/version.h b/src/version.h index 89ab3cb9..5d827bec 100644 --- a/src/version.h +++ b/src/version.h @@ -16,14 +16,14 @@ namespace AutoVersion{ //Standard Version Type static const long MAJOR = 0; static const long MINOR = 7; - static const long BUILD = 5012; - static const long REVISION = 10657; + static const long BUILD = 5015; + static const long REVISION = 10677; //Miscellaneous Version Types - static const long BUILDS_COUNT = 4422; - #define RC_FILEVERSION 0,7,5012,10657 - #define RC_FILEVERSION_STRING "0, 7, 5012, 10657\0" - static const char FULLVERSION_STRING[] = "0.7.5012.10657"; + static const long BUILDS_COUNT = 4428; + #define RC_FILEVERSION 0,7,5015,10677 + #define RC_FILEVERSION_STRING "0, 7, 5015, 10677\0" + static const char FULLVERSION_STRING[] = "0.7.5015.10677"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 0;