2f6e49a929
Renamed many constants and fields according to Open BeOS coding style guide. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6433 a95241bf-73f2-0310-859d-f6bbb57e9c96
30 lines
531 B
C++
30 lines
531 B
C++
/*
|
|
* Preview.h
|
|
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
|
*/
|
|
|
|
//#define USE_PREVIEW_FOR_DEBUG
|
|
|
|
#ifdef USE_PREVIEW_FOR_DEBUG
|
|
#ifndef __PREVIEW_H
|
|
#define __PREVIEW_H
|
|
|
|
#include <Window.h>
|
|
|
|
class PreviewWindow : public BWindow {
|
|
public:
|
|
PreviewWindow(BRect, const char *, BBitmap *);
|
|
virtual bool QuitRequested();
|
|
int Go();
|
|
|
|
protected:
|
|
PreviewWindow(const PreviewWindow &);
|
|
PreviewWindow &operator = (const PreviewWindow &);
|
|
|
|
private:
|
|
long fSemaphore;
|
|
};
|
|
|
|
#endif /* __PREVIEW_H */
|
|
#endif /* USE_PREVIEW_FOR_DEBUG */
|