2007-06-13 06:36:18 +04:00
|
|
|
/*
|
2009-08-13 11:30:48 +04:00
|
|
|
* Copyright 2007-2009 Haiku, Inc.
|
2007-06-13 06:36:18 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Ryan Leavengood, leavengood@gmail.com
|
|
|
|
*/
|
|
|
|
#ifndef B_ABOUT_WINDOW_H
|
|
|
|
#define B_ABOUT_WINDOW_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <String.h>
|
|
|
|
|
|
|
|
|
|
|
|
class BAboutWindow {
|
|
|
|
public:
|
2009-08-13 11:30:48 +04:00
|
|
|
BAboutWindow(const char *appName, int32 firstCopyrightYear,
|
|
|
|
const char **authors, const char *extraInfo = NULL);
|
2007-06-13 06:36:18 +04:00
|
|
|
virtual ~BAboutWindow();
|
|
|
|
|
|
|
|
void Show();
|
|
|
|
|
|
|
|
private:
|
|
|
|
BString* fAppName;
|
|
|
|
BString* fText;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // B_ABOUT_WINDOW_H
|