GeneralSettings.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. //---------------------------------------------------------------------------
  2. #ifndef GeneralSettingsH
  3. #define GeneralSettingsH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Graphics.hpp>
  11. #include <XPThemes.hpp>
  12. //---------------------------------------------------------------------------
  13. class TGeneralSettingsFrame : public TFrame
  14. {
  15. __published:
  16. TXPGroupBox *InterfaceGroup;
  17. TLabel *CommanderDescriptionLabel2;
  18. TLabel *ExplorerDescriptionLabel;
  19. TImage *CommanderInterfacePicture;
  20. TImage *ExplorerInterfacePicture;
  21. TRadioButton *CommanderInterfaceButton;
  22. TRadioButton *ExplorerInterfaceButton;
  23. void __fastcall CommanderClick(TObject *Sender);
  24. void __fastcall ExplorerClick(TObject *Sender);
  25. public:
  26. void __fastcall LoadConfiguration();
  27. void __fastcall SaveConfiguration();
  28. __fastcall TGeneralSettingsFrame(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. #endif