vote up 34 vote down star
17

Soon Delphi 2010 "Weaver" will enter in beta. (See http://www.embarcadero.com/products/beta_programs.php)

Which would be your most wanted features for the next release of Delphi?

Mine (from top of the head):

  • tooling for synchronizing the representations of DB schema (aka. DB metadata) in code and in database
  • language enhancements:
    • CASE on non-ordinal types
    • lazy evaluation
    • mixins
    • AOP (aspect oriented programming)
  • VCL enhancements:
    • DB enhancements (TDataSet, TClientDataSet - faster, more feature rich)
    • OPF/ORM on native side
    • (more) containers, classes (using generics)
  • IDE enhancements:
    • Runtime Object Inspector using the already registered editors to allow WYSWYG debugging of the objects/classes (and generally a better debugger)
    • Code management tools
    • Refactoring assistants
    • Find unused code (ok, here we need support from linker)
  • 64-bit compiler

...and many many more :-)

Yours?

UPDATE: There are some sneak previews at http://wings-of-wind.com See for yourself.

flag
show 10 more comments

117 Answers

vote up 0 vote down

Field overriding. Imagine the following scenario, based on an issue I ran into while building a sprite-based game engine:

type
  TSpriteEngine = class; //generic 3rd party sprite engine

  TSprite = class(TObject) //generic 3rd party sprite
  protected
    FParent: TSpriteEngine;
    ...
  end;

  TSpriteEngine = class(TObject)
  protected
    FList: array of TSprite;
    ...
  end;

  (And now, in another unit:)

  TGameEngine = class;  //my own sprite engine with extra features

  TGameSprite = class(TSprite)
    ...
  end;

  TGameEngine = class(TSpriteEngine)
    ...
  end;

Now, TGameEngine and TGameSprite have special new functionality that only work with each other, and not with the base types. But the parent/child fields are defined as the base types and can't be changed, which means that any type safety has to be implemented at runtime with is/as checks, and any uses of the parent/child references that need the extra functionality have to be typecasted.

Why not make this valid syntax?

  TGameSprite = class(TSprite)
  protected
    FParent: TGameEngine; override;
    ...
  end;

  TGameEngine = class(TSpriteEngine)
  protected
    FList: array of TGameSprite; override;
    ...
  end;

Adding the override directive to a field declaration would allow you to redefine a field inherited from an ancestor class as a derived type of the original. It would have to meet type safety checks at compile-time, (if you override FObject: X as FObject: Y, it would only compile if "Y is X;",) and the compiler would not create a new data member, but be instructed to treat the existing one as the derived type instead of the base type when using the derived class.

Improved type safety and cleaner code (less spurious typecasts) without having to add a new keyword. I think it would be a good idea. Anyone else like it?

link|flag
show 2 more comments
vote up 7 vote down

Better (and less complicated) RTTI

link|flag
show 1 more comment
vote up 2 vote down

My top three feature requests:

  1. ability for Delphi 2010 to use VCL components created by C++ Builder 2010

  2. cross platform server-side binaries (e.g. ISAPI Windows .DLL and Linux .so)

  3. ability to link to C++ Builder .OBJ files, even if it is C++ (not just C), as long as Delphi sticks to using plain C data types in function parameters

link|flag
vote up 4 vote down

A version number that's actually a number, that the preprocessor can treat as a number. Anyone who's ever had the joy of having to dig through and extend include files when the new version of Delphi suddenly won't compile an old 3rd party library will know exactly what I mean and why it's important.

link|flag
show 5 more comments
vote up 4 vote down

Global search and replace in the IDE - there is no way to do Delphi 2006 see link text

link|flag
vote up 8 vote down

New object scopes: private published and protected published. New components added to forms would be declared private published instead of the current standard.

Right now, everything that's published is also automatically public. This is a mixture of two different paradigms (OO scope visibility and RTTI) that address different concerns and different access models, and don't need to be linked. Visibility scope (private/protected/public) only matters at compile time, while RTTI (run-time type info) only matters at runtime. Artifically joining the two at the hip promotes really bad OOP, especially in form design issues. For backwards compatibility reasons, "published" would probably need to still mean "public published", but that should no longer be the default, or the only choice.

link|flag
1  
I don't think that protected published is necessary. For private published, a modifier on the class of some sort, or a compiler directive to control external visibility of added components would be a welcome feature. – skamradt Mar 20 at 20:18
show 4 more comments
vote up 17 vote down

faster IDE by throwing out .net and stop following the ms vs style!!!

link|flag
1  
Yes, yes, yes! I wish I could upvote this more than once! Delphi made its reputation by being better than Visual Studio. Why did Borland consciously decide to imitate an inferior product? And why is Embarcadero continuing to follow Borland's bad decisions that almost ran Delphi into the ground? – Mason Wheeler Mar 20 at 21:02
show 1 more comment
vote up 2 vote down

A modern shine for the VCL, something like (if not exactly via a purchase/licensing arrangemment) the DevExpress component pack. Including and especially an updated MVC Grid component.

link|flag
vote up 0 vote down

Due to the IDE stability issues I haven't upgraded from D7 yet so I might be after something that's been rendered moot by generics:

I would like to be able to redefine a routine in a descendant without actually using any code. This would in effect be a typecast. Too often I've had to write routines that simply typecast a variable and call the inherited method.

link|flag
vote up 1 vote down

skin support for VCL controls.

this may be not even skin engine itself, but rather ability to create own skin engine and apply it to all controls.

i think this is very important thing for many companies.

so, what i would like to have is and ability to provide skins.

for example, create descendant of certain abstract class (supported by VCL) and apply it or create a class with support for certain interface (supported by VCL) and apply it.

currently to make application good looking we often have to reinvent the wheel by creating those buttons and edits again and again.

link|flag
vote up 2 vote down

What I don't want is a re-interpretation of existing language construct like what happened to string.

link|flag
1  
The new string type already turned code that has been stable for over 15 years into a Russian roulette. 64bit Delphi is going to add another bullet to the gun. But we've all been looking forward to the day where we can use Delphi to fill 1TB of RAM with Mongolian characters. – Wouter van Nifterick Mar 20 at 23:44
show 2 more comments
vote up 0 vote down

a) Multiline strings.

b) Better sintax for closures (a anonymous methods evolution).

c) Mixins.

d) High order functions as methods of arrays and strings:

var
  MyArray: array of Integer;
begin
  MyArray := [1,6,8,10];
  NewArray := MyArray.map (|x| x+3);
end;

e) Garbage collection.

var 
  A: collected TMemoryStream;
begin
  A := TMemoryStream.Create;
  // using A
end; // automatic A.Free;

f) Contracts, like Delphi Prism.

g) Compiler need to be smarter. Every Delphi programmer lives to make this dumb compiler happy.

link|flag
vote up 6 vote down

Subranges in case statements:

Type
   Terrain = (Room, Wall, Corridor, StairUp, StairDown);

   Stairs = StairUp..StairDown;



Case Terrainvar of
      Stairs : DoSomething;
   End;
link|flag
vote up 2 vote down

A full preprocessor with (at least) LINE, FILE and MACROS!!!

link|flag
show 1 more comment
vote up 14 vote down

Improved Syntax highlighting:

Visualise {$IFDEF} ... {$ENDIF} by graying-out/hiding/folding pieces of code that are not going to be used.

link|flag
vote up 16 vote down

Make it easier to create, install and spread components and packages.


  • Let component creators create things in a more graphical way.

    • Why can't I rightclick the component palette and say: "Add new"?
    • Why can't I rightclick an icon and choose "change icon", and be able to choose a standard type of image (gif,png,jpg,bmp)?

      Even the most advanced user is never going to find out how to change the icon of a component (create a .dcr file, blabla) without reading it in the documentation or on a website. It's totally unintuitive.


  • Create a new package format that contains all files and information that is needed to install it, so that end-users (Delphi developers) don't need to bother chosing the right package for their Delphi version, adding paths, compiling in the right order, etc.

Just have required files and folders in a certain structure, zip it and rename it to dpz.

People should be able to just double-click on such a file and have the stuff installed, in the same way that you can just click on a winamp skin to install it. Or it could be a bit like .rpm or .deb files on certain linux distributions.

(Why do I come up with this? A few weeks ago I had to explain to a very experienced but non-Delphi developer who was going to help out on a Delphi project how he had to install certain packages before he could get going. To make things worse there were 2 Delphi versions installed with conflicting .bpl files in paths hidden far away. By the time we were done, I think he already had enough of Delphi)


  • It would be very nice if there'd be a central repository for packages, probably best maintained by Embarcadero. It could partly be for Delphi what AppStore is for the iPhone.

    It would have the following functions:

    • Have dependencies between packages automatically resolved;

    • Enfore a certain namespace for all code and check for conflicts before accepting contributions;

    • Third party component developers can sell or give away their stuff via this place;

    • Delpi developers can easily find stuff;

This could be via a website, but it would also be neat to have it integrated into the IDE.

Where you search for a component in the tool palette, you'll see all registered components. Those that are not installed yet are just grayed out. Clicking such an icon downloads and install the right package.

This would be a giant productivity booster.

link|flag
show 3 more comments
vote up 12 vote down

A built-in profiler.

Why do we have to be held hostage by AutomatedQA with their AQTime program as the only non-invasive profiler that's available. It's not Delphi specific and they still (as of 20 Mar 2009) do not integrate into the Delphi 2009 IDE.

It doesn't feel right paying more for just a profiler than I did for my upgrade to Delphi 2009. I'd sooner pay Embarcadero $300 more for the upgrade with a profiler, than pay AutomatedQA twice as much for just AQTime.

Also see "Profiler and Memory Analysis Tools for Delphi": http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi

and "Delphi Profiling tools": http://stackoverflow.com/questions/368938/369945#369945


A response just posted to: "How Does AQTime Do It?" by Andre Mussche tells of the open source non-invasive profiler called asmprofiler that Andre developed. I commented back that he consider donating it to Embarcadero for their inclusion with Delphi. Or he could market it himself (probably successfully) for $200 a pop.

link|flag
show 2 more comments
vote up 8 vote down

Sort of minor, but it would be nice if Delphi started up faster.

Delphi 4 used to start up in under 2 seconds. But Delphi 2009 takes about 30 seconds to start up.

Now it feels a bit like starting your computer. Press the On button, go away and do something else for 5 minutes, and then come back.

link|flag
vote up 3 vote down

Should GExperts Functionality be Incorporated into Delphi?

http://stackoverflow.com/questions/303515

link|flag
vote up 4 vote down

More examples in the help files

link|flag
vote up 1 vote down

Make the VCL Thread safe

link|flag
show 3 more comments
vote up 0 vote down

Consistant Memory Management for vairous applications: exe application, dll application,service application.....,we don't want to use build with runtime packages any more!!!!!!!!!!!!!!!!!!!!!

link|flag
vote up 5 vote down
  1. Databinding like .NET. No more TDataset hell!

  2. Multiline strings in the code

    s := 'A String';

    multiline := "I'm the first row

    and I'm the second row

    and here there is the third row"; //Note " instead of '

  3. Simpler e stronger RTTI

  4. Simpler sintax for anon method

  5. Mixins like ruby.

  6. Skin for VCL

  7. Some high order functions like ruby, python or PHP

  8. Garbage collector for some specific type (es. if a class implements Interface "IManaged", object created from that class will be managed)

  9. Contracts, like Delphi Prism

  10. Inline variable declaration like Delphi Prism

  11. Workaround for "Circular unit references" error.

  12. Cross-compiler (at least for console/service application)

  13. No limit for constant string size.

  14. Integrated ORM (with or without designer support)

  15. Integrated Profiler

  16. Integrated Serialization system (Every object can be serialized as XML, JSON, Some Native Type. etc)

  17. Still better DataSnap

  18. Revamped TDBGrid

  19. Stronger support for SOAP

  20. Some support for build RESTful application type (something more of webbroker)

  21. Integrated UML tool for Class Diagram (at least) with code generator for REAL Pascal code (not like Together)

  22. Many Thanks For Your Work!

link|flag
show 6 more comments
vote up 2 vote down

One thing that I dislike in Delphi is the the way I have to implement a property when using interfaces, I don't know the limitations and why it was designed this way, but this is too "dirty" IMO.

type
 IMyInterface = interface
   function GetMyProp: Boolean;
   procedure SetMyProp(Value: Boolean);
   property MyProp: Boolean read GetMyProp write SetMyProp; 
 end;

Why can't I just write:

type
 IMyInterface = interface
   property MyProp: Boolean; 
 end;

Who cares how the class implements the getter and setter? Oh, ok, you tell me you want a read only property, then:

type
 IMyInterface = interface
   property MyProp: Boolean readonly; 
 end;

Or something like it, this would make my life much less complicated!

link|flag
show 4 more comments
vote up 1 vote down
  1. Regular Expression
  2. A filtering feature in Code Explorer (a search box as seen in Component List) with sub-string find option to filter Procedures, functions, records and variables etc.
  3. Switch back the help files to WinHelp format. It was much faster to find some help in older Delphi IDEs. At least an option to use older WinHlp files from D7 etc would be nice.
  4. An option to switch off Code Folding (I know the short-cut to do it, but I need an option to switch it off once and for all.)
  5. Improved DB support. (with support for sqllite etc)
  6. STL-like data structure library.
link|flag
show 1 more comment
vote up 0 vote down
  • Annotations (like C# and Java, and Delphi.NET?)

  • RTTI for constructors - this would allow to create constructor-based dependency injection (until now, only property-based DI is possible)

  • namespaces/packages (like C# and Java and Delphi.NET)

  • SOAP 1.2 support

  • JSON based object serialization

Edit:

  • include the XML Databinding Wizard in Professional edition
link|flag
1  
Namespaces are an ugly workaround that C++ invented to compensate for the fact that its compiler doesn't know what a source file is. But then people got used to them, so Java and .NET blindly followed suit. I like my Delphi units as they are, TYVM. (I like your other ideas, though...) – Mason Wheeler Mar 22 at 0:28
vote up 1 vote down

Here is an email I sent to Nick Hodges a couple of weeks ago:

" Hello,

  1. Do you consider having static constructors/destructors in D2010?

I think this is the only thing left to be implemented to have a completely OOP Delphi language. Currently I can not think of a completely OOP oriented implementation of the singleton pattern. I really dislike the initialization, finalization sections. If I have static con(de)structors I would completely remove the need of implementation vars and initialization/finalization sections.

  1. Do you plan to have a OOP style wrappers for the tons of functions already existing. For example I make static classes like TFile, TPath, TString to wrap functions like FileExists as TFile.Exists()
  2. Do you plan to introduce attributes like in C# and Java. I think you already have some partial implementation.
  3. Do you plan having Garbage Collector?I know there are some patterns for reference counted objects but I would prefer having a GC class and a global compiler switch {$GC ON/OFF}
  4. Do you plan to make the binary .cds file format described. I really need to read such files in C# and currently I can’t since the file format is not described anywhere. I know I can export to .xml and than process it but this is not suitable for my purposes.
  5. Do you plan SQLite driver support?
  6. Any plans for native Mac OSX support. You did it for Linux and Mac OSX is just a kinda Unix and its market share is growing. Believe me if there is Delphi 7 for MacOS everybody would love it. XCode simply sucks.

I think if you do those 7 things in the next 5 years I won’t be migrating to .NET 10.0 soon and will continue to use Delphi as primary development environment.

Last word: Great stuff!! Delphi 2009 is finally stable after the a bit “experimental” Delphi 8 and 2006. You know why everybody loves Delphi 7 – simply because it was stable.

I would prefer D2010 to be more stable even compared to D2009 instead of having 64bit support or parallelism or other “fancy” stuff. "

Still haven't received answer though.

link|flag
show 1 more comment
vote up 1 vote down

IDE Intelligence

64bit compiler

Language features e.g. try/except/finally More generics ...

link|flag
vote up 0 vote down
  1. Vastly improved linker error messages.
  2. Support for the Microsoft object file format (yes, I know that's very hard, but that way we wouldn't depend on C++ Builder for static linkage.)
link|flag
show 2 more comments
vote up 7 vote down
  1. A more stable and faster IDE
  2. Support for regular expressions
  3. Source code formater under the IDE
  4. A better help system including a real sample code exemple
  5. Extend VCL to graphic/picture/video/OMR/OCR
  6. A except/finally in same code block like:

``

MyObject := TMyObject.Create;
try
  MyObject.DoSomething;
except
  raise something
finally
  FreeAndNil(...);
end;

`

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.