Develop and Download Open Source Software

Browse Subversion Repository

Contents of /CopalPro/StdError.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations) (download) (as text)
Thu Jul 28 09:05:52 2011 UTC (12 years, 9 months ago) by kaityo
File MIME type: text/x-chdr
File size: 2379 byte(s)
First Commit
1 //---------------------------------------------------------------------------
2 #ifndef StdErrorH
3 #define StdErrorH
4 //---------------------------------------------------------------------------
5 #include <Classes.hpp>
6 #include <Controls.hpp>
7 #include <StdCtrls.hpp>
8 #include <Forms.hpp>
9 #include "Base.h"
10 #include <Menus.hpp>
11 //---------------------------------------------------------------------------
12 class TFStdError : public TFBase {
13 __published: // IDE 管理のコンポーネント
14 TListBox *LBStdError;
15 TPopupMenu *PMStdError;
16 TMenuItem *PMCopy;
17 void __fastcall FormActivate(TObject *Sender);
18 void __fastcall FormHide(TObject *Sender);
19 void __fastcall LBStdErrorDblClick(TObject *Sender);
20 void __fastcall PMCopyClick(TObject *Sender);
21 void __fastcall LBStdErrorMouseDown(TObject *Sender,
22 TMouseButton Button, TShiftState Shift, int X, int Y);
23 void __fastcall LBStdErrorKeyPress(TObject *Sender, char &Key);
24 void __fastcall LBStdErrorKeyDown(TObject *Sender, WORD &Key,
25 TShiftState Shift);
26 void __fastcall LBStdErrorKeyUp(TObject *Sender, WORD &Key,
27 TShiftState Shift);
28 private: // ユーザー宣言
29
30 public: // ユーザー宣言
31
32 void LoadFromStream(TStream *Stream);//エラーを読み込む
33
34 //検索関連
35 void Find(void);
36
37 //---------------------------------------------------------------------------
38 // クリップボード関連
39 //---------------------------------------------------------------------------
40 void Cut(void);//切り取り
41 void Paste(void);//貼り付け
42 void Copy(void);//コピー
43 //---------------------------------------------------------------------------
44 void Save(void);
45 //---------------------------------------------------------------------------
46 // デバッグ関連
47 //---------------------------------------------------------------------------
48 int GetErrorLineNumber(void);
49 AnsiString GetCaretString(void);
50 AnsiString GetTagJumpText(AnsiString FileName,int line);
51 AnsiString GetMyCurrentDir(void) {
52 return GetCurrentDir();
53 };
54 bool IsEmpty(void);
55 __fastcall TFStdError(TComponent* Owner);
56 };
57 //---------------------------------------------------------------------------
58 extern PACKAGE TFStdError *FStdError;
59 //---------------------------------------------------------------------------
60 #endif

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26