---------------------------------------------------------------------------
| 14 | #include <ComCtrls.hpp> |
| 15 | //--------------------------------------------------------------------------- |
| 16 | class TFileFr : public TFrame |
| 17 | { |
| 18 | __published: // IDE-managed Components |
| 19 | TGroupBox *GroupBox; |
| 20 | TLabel *Label11; |
| 21 | TOpenDialog *OpenDialog; |
| 22 | TEdit *FileEdit; |
| 23 | TSpeedButton *SpeedButton2; |
| 24 | TRadioButton *RotationRB1; |
| 25 | TRadioButton *RotationRB2; |
| 26 | TRadioButton *RotationRB3; |
| 27 | TEdit *SizeEdit; |
| 28 | TComboBox *MultCB; |
| 29 | TComboBox *MomentCB; |
| 30 | TEdit *HourEdit; |
| 31 | TLabel *Label1; |
| 32 | TPanel *Panel1; |
| 33 | TRadioButton *RenamingRB0; |
| 34 | TRadioButton *RenamingRB1; |
| 35 | TLabel *Label4; |
| 36 | TEdit *CountEdit; |
| 37 | TEdit *NewNameEdit; |
| 38 | TLabel *HelpLabel; |
| 39 | TUpDown *CountEditUD; |
| 40 | TUpDown *HourEditUD; |
| 41 | TUpDown *SizeEditUD; |
| 42 | TLabel *Label2; |
| 43 | void __fastcall SpeedButton2Click(TObject *Sender); |
| 44 | void __fastcall Change(TObject *Sender); |
| 45 | void __fastcall HelpLabelClick(TObject *Sender); |
| 46 | private: // User declarations |
| 47 | TForm * GetForm(void); |
| 48 | bool bEnableValuesChange; |
| 49 | String DefaultRecipient; |
| 50 | public: |
| 51 | TNotifyEvent OnValuesChange; |
| 52 | public: // User declarations |
| 53 | __fastcall TFileFr(TComponent* Owner); |
| 54 | void ToDialog(TStorageFile * p); |
| 55 | void FromDialog(TStorageFile * p); |
| 56 | void SetDefaultFile(bool b); |
| 57 | void RotationEnable(void); |
| 58 | }; |
| 59 | //--------------------------------------------------------------------------- |
| 60 | extern PACKAGE TFileFr *FileFr; |
| 61 | //--------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected