PreferencesReplicant.h 589 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright 2010, Oliver Ruiz Dorantes. All rights reserved.
  3. * Copyright 2012, Dario Casalinuovo. All rights reserved.
  4. * Distributed under the terms of the MIT License.
  5. */
  6. #ifndef _PREFERENCES_REPLICANT_H
  7. #define _PREFERENCES_REPLICANT_H
  8. #include <View.h>
  9. class BCheckBox;
  10. class PreferencesReplicant : public BView {
  11. public:
  12. PreferencesReplicant();
  13. virtual void AttachedToWindow();
  14. virtual void MessageReceived(BMessage* msg);
  15. private:
  16. BCheckBox* fDisableReplicant;
  17. BCheckBox* fPermanentReplicant;
  18. BCheckBox* fHideDeskbar;
  19. };
  20. #endif // _PREFERENCES_REPLICANT_H