psparamproposal.h

来自「用于开发Atmel的AVR系列单片机的GCC集成开发环境」· C头文件 代码 · 共 31 行

H
31
字号
//---------------------------------------------------------------------------

#ifndef PSParameterProposalH
#define PSParameterProposalH
//---------------------------------------------------------------------------
#include <SysUtils.hpp>
#include <Controls.hpp>
#include <Classes.hpp>
#include <Forms.hpp>
#include "SynCompletionProposal.hpp"
#include "SynEdit.hpp"
//---------------------------------------------------------------------------
class PACKAGE TPSParameterProposal : public TComponent
{
private:
  TSynCompletionProposal *ComplProp;
  TStringList *LocList;
  Set <char, 0, 255> ValidChars;
  void __fastcall PropExecute(SynCompletionType Kind, TObject *Sender,
                        AnsiString &AString, int &x, int &y, bool &CanExecute);
  AnsiString __fastcall FormatParameters (AnsiString parm, int idx);
protected:
public:
        __fastcall TPSParameterProposal(TComponent* Owner);
        __fastcall ~TPSParameterProposal(void);
        void __fastcall SetEditor (TSynEdit *editor);
__published:
};
//---------------------------------------------------------------------------
#endif
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?