orderformu.h
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:2k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef orderformuH
  3. #define orderformuH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "fcButton.hpp"
  10. #include "fcDemoRichEdit.hpp"
  11. #include "fcImage.hpp"
  12. #include "fcImageForm.hpp"
  13. #include "fcImager.hpp"
  14. #include "fcImgBtn.hpp"
  15. #include "ShellApi.hpp"
  16. #include <ComCtrls.hpp>
  17. #include <ExtCtrls.hpp>
  18. #include <Graphics.hpp>
  19. #include "fcButtonGroup.hpp"
  20. #include "fcClearPanel.hpp"
  21. #include "fcOutlookBar.hpp"
  22. #include "fcShapeBtn.hpp"
  23. //---------------------------------------------------------------------------
  24. class TOrderForm : public TForm
  25. {
  26. __published: // IDE-managed Components
  27.         TfcImageForm *fcImageForm1;
  28.         TfcImager *fcImager1;
  29.         TImage *DragControl;
  30.         TfcImageBtn *AboutButton;
  31.         TfcImageBtn *OrderingButton;
  32.         TfcImageBtn *PricesButton;
  33.         TfcImageBtn *CloseBtn;
  34.         TfcOutlookBar *fcOutlookBar1;
  35.         TfcShapeBtn *Prices;
  36.         TfcShapeBtn *Ordering;
  37.         TfcShapeBtn *About;
  38.         TfcDemoRichEdit *RichEditOrdering;
  39.         TfcDemoRichEdit *RichEditAbout;
  40.         TfcDemoRichEdit *RichEditPrices;
  41.         void __fastcall OrderingButtonClick(TObject *Sender);
  42.         void __fastcall AboutButtonClick(TObject *Sender);
  43.         void __fastcall PricesButtonClick(TObject *Sender);
  44.         void __fastcall CloseBtnClick(TObject *Sender);
  45.         void __fastcall OrderingDescriptionMouseMove(TObject *Sender,
  46.           TShiftState Shift, int X, int Y);
  47.         void __fastcall OrderingDescriptionMouseDown(TObject *Sender,
  48.           TMouseButton Button, TShiftState Shift, int X, int Y);
  49. private: // User declarations
  50. public: // User declarations
  51.         __fastcall TOrderForm(TComponent* Owner);
  52. };
  53. //---------------------------------------------------------------------------
  54. extern PACKAGE TOrderForm *OrderForm;
  55. //---------------------------------------------------------------------------
  56. #endif