Delphi-IDE:如何改变类完成的工作方式?

前端之家收集整理的这篇文章主要介绍了Delphi-IDE:如何改变类完成的工作方式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Delphi中的类完成节省了大量时间,但我还没有找到一种方法来定制它.

>我希望将一个属性的getter和setter组合在一起,而不是被整个单元抛出;接口部分是正确生成的,但如果将内容留给IDE,实现部分就会变得一团糟.我希望默认情况下按这样排序方法

function TAaa.getAaa();

procedure TAaa.setAaa();

procedure TAaa.Baa();

function TAaa.getCow();

procedure TAaa.setCow();

procedure TBbb.getAaa()

>我希望实现部分与接口的顺序相同;
>我希望生成方法的主体看起来像这样:

.

procedure TMyClass.MyProc;
 begin
   { TODO -oWouter -cimplement autogenerated stuff : implement Procedure MyProc() }
   raise Exception.create('procedure TMyClass.MyProc() is not yet implemented');
 end;

有没有工具可以做到这一点,还是需要深入到opentools API来完成这样的事情?

相关问题:
In what order does Class Completion put its results?

解决方法

Question 1: I would like a getter and setter for a property to be grouped together.

Modelmaker Code Explorer(MMX)有一个排序工具.该工具在接口和实现中对类成员进行排序.我正在使用的4.05版本不支持您的排序.但是,Modelmaker网站包含一个page that shows the most up to date sorting functionality,看起来他们使用许多新选项扩展了排序功能.也许您可以使用最新的MMX工具对getter / setter方法进行分组.
方便的功能

>在MMX类浏览器中拖放排序:将方法拖动到新位置,模型制作者移动代码
>排序提示:如果方法未根据您的默认排序模板排序,MMX将通知

Question 2: I want the implementation section to be in the same order as the interface.

MMX排序功能可以做到这一点.执行排序后,接口和实现将按相同的顺序排列.

Question 3: I want the body of a generated method to look something like this…

MMX [添加方法]将自动为您方法的正文添加自定义代码存根.代码存根中支持参数,但我没有看到支持的参数列表.这是一个样本

程序TForm1.NewMethod;

开始

// TODO TForm1.NewMethod默认正文插入

结束;

原文链接:https://www.f2er.com/delphi/101980.html

猜你在找的Delphi相关文章