Files
itgmania212121/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.h
T

30 lines
702 B
C++
Raw Normal View History

2003-07-04 09:27:12 +00:00
#ifndef LOADING_WINDOW_COCOA
#define LOADING_WINDOW_COCOA
/*
* LoadingWindow_Cocoa.h
* stepmania
*
* Created by Steve Checkoway on Thu Jul 03 2003.
* Copyright (c) 2003 Steve Checkoway. All rights reserved.
*
*/
2003-09-05 06:54:48 +00:00
#include "LoadingWindow.h"
2003-07-04 09:27:12 +00:00
extern void MakeNewCocoaWindow();
extern void DisposeOfCocoaWindow();
extern void SetCocoaWindowText(const char *s);
class LoadingWindow_Cocoa : public LoadingWindow {
public:
LoadingWindow_Cocoa() { MakeNewCocoaWindow(); }
~LoadingWindow_Cocoa() { DisposeOfCocoaWindow(); }
void Paint() {} /* Not needed */
void SetText(CString str) { SetCocoaWindowText(str.c_str()); }
};
2003-09-05 06:54:48 +00:00
#define HAVE_LOADING_WINDOW_COCOA
2003-07-04 09:27:12 +00:00
2003-08-10 03:23:17 +00:00
#endif /* LOADING_WINDOW_COCOA */