GeneralSettings.h 1.1 KB

123456789101112131415161718192021222324252627282930
  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. //---------------------------------------------------------------------------
  12. class TGeneralSettingsFrame : public TFrame
  13. {
  14. __published:
  15. TGroupBox *InterfaceGroup;
  16. TLabel *CommanderDescriptionLabel2;
  17. TLabel *ExplorerDescriptionLabel;
  18. TImage *CommanderInterfacePicture;
  19. TImage *ExplorerInterfacePicture;
  20. TRadioButton *CommanderInterfaceButton;
  21. TRadioButton *ExplorerInterfaceButton;
  22. void __fastcall CommanderClick(TObject *Sender);
  23. void __fastcall ExplorerClick(TObject *Sender);
  24. public:
  25. void __fastcall LoadConfiguration();
  26. void __fastcall SaveConfiguration();
  27. __fastcall TGeneralSettingsFrame(TComponent* Owner);
  28. };
  29. //---------------------------------------------------------------------------
  30. #endif