AboutWindow.h 527 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright 2010-2011, Pier Luigi Fiorini. All rights reserved.
  3. * Copyright 2007-2009, Haiku, Inc. All rights reserved.
  4. * Distributed under the terms of the MIT License.
  5. */
  6. #ifndef _ABOUT_WINDOW_H
  7. #define _ABOUT_WINDOW_H
  8. #include <String.h>
  9. class AboutWindow {
  10. public:
  11. AboutWindow(const char* appName, const char** holders,
  12. const char** authors, const char* extraInfo = NULL);
  13. virtual ~AboutWindow();
  14. void Show();
  15. private:
  16. BString* fAppName;
  17. BString* fText;
  18. };
  19. #endif // _ABOUT_WINDOW_H