| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //---------------------------------------------------------------------------
- #ifndef RightsExtH
- #define RightsExtH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include "Rights.h"
- #include <ActnList.hpp>
- #include <Buttons.hpp>
- #include <ImgList.hpp>
- #include <Menus.hpp>
- #include "GrayedCheckBox.hpp"
- #include "PngImageList.hpp"
- //---------------------------------------------------------------------------
- class TRightsExtFrame : public TRightsFrame
- {
- __published:
- TLabel *OctalLabel;
- TEdit *OctalEdit;
- TGrayedCheckBox *SetUidCheck;
- TGrayedCheckBox *SetGIDCheck;
- TGrayedCheckBox *StickyBitCheck;
- TButton *CloseButton;
- void __fastcall OctalEditChange(TObject *Sender);
- void __fastcall OctalEditExit(TObject *Sender);
- void __fastcall CloseButtonClick(TObject *Sender);
- public:
- __fastcall TRightsExtFrame(TComponent* Owner);
- protected:
- virtual void __fastcall UpdateControls();
- virtual void __fastcall ForceUpdate();
- virtual void __fastcall SetPopup(bool value);
- private:
- void __fastcall UpdateByOctal();
- };
- //---------------------------------------------------------------------------
- #endif
|