| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | //---------------------------------------------------------------------------#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"#include <System.Actions.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();  void __fastcall UpdateOctalEdit();};//---------------------------------------------------------------------------#endif
 |