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

1 2 3 4 next
vote up 53 vote down

Stable IDE

I remember working in Delphi 7 when it was still Borland Delphi. It was a great little IDE, very reliable, and still one of the fastest compilers I've ever used (almost scary fast!).

After the IDE was sold the Codegear, the company worked on packing the IDE with bulletpoint features. When me and the other Delphi developers on my dev team started on Delphi 2007, we seriously lost hours of work everyday because the IDE was so buggy, and it took so long to restart. There were days when the IDE would crash every 10 minutes, and it constantly leaked memory (even when it was sitting idle!) Delphi 2007 crashed with enthusiasm, and I'm convinced Delphi 2007 would have put sent Delphi to its death if it weren't for the one killer feature, CodeRush (and even that was buggy).

Delphi 2009 was an improvement, although it wasn't backward compatible with our Delphi 2007 projects. It didn't crash as often (not more than twice a day), but still was substantially less stable than Visual Studio, Eclipse, IntelliJ, or any other IDE I've ever used.

More than anything, I'd give up a few features in this release just to have the IDE fumigated for bugs and shoot for rock solid stability.

link|flag
2  
"Not more than twice a day"? D2009 is rock-solid for me. The only time I've ever managed to crash it was when I placed a badly-written component on a form. It's got its quirks, and some of them are annoying, but I've got no complaints whatsoever on the actual stability of the IDE. – Mason Wheeler Mar 21 at 0:01
show 5 more comments
vote up 45 vote down

64 bit compiler.

link|flag
show 9 more comments
vote up 42 vote down

A working help file.

link|flag
3  
Not just a working help file but a useable help system. See the help plugin done by a German Delphi programmer, that uses Delphi's start page to display the help. Very fast, very convenient. (I just can't remember the name of this plugin.) – dummzeuch Mar 20 at 17:53
4  
The name of the plugin is "Help-Booster". It is sweet. delphipraxis.net/helpbooster.php?lng=en/… – Mick Mar 20 at 18:38
show 2 more comments
vote up 35 vote down

Cross platform compilation.

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

First and foremost, an IDE is a text editor, and a real text editor never blocks. As long as there isn't a dialog box open, there's no reason why you should ever be unable to edit your code. Andreas Hausladen has some tricks that help out a bit in that, but it's still fundamentally the wrong solution. If the IDE needs to do something that's gonna take 30 seconds or so to build CodeInsight data set or do whatever it's doing when I hit F1 for the first time, it ought to do it in a background thread and leave me free to write more code.

link|flag
2  
+1 - this is what I'm getting at with 'more responsive' - sometimes things get bogged down (generating intellisense/tooltips?) - there's nothing more annoying when you're working than suddenly the IDE goes dead on you for a few seconds. I'd rather they improved this than added garbage collection! – robsoft Mar 20 at 18:00
2  
+1 - and I don't even know Delphi or Pascal. – Chris Lutz Apr 15 at 7:23
vote up 32 vote down

Source code formatter, SVN integration

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

Multi-core support.

link|flag
1  
"Older Delphi's threads were known to behave badly"?? Please be more specific. So the "Delphi thread" (which is an OS, thread btw) is what behaves badly or is it what happened in the thread (not Delphi's code) that behaved badly? – Allen Bauer Mar 21 at 18:17
show 2 more comments
vote up 24 vote down

Support for regular expressions.

link|flag
show 1 more comment
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 16 vote down

Stable faster IDE with enhanced refactoring support.

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 14 vote down

Object friendly databinding and desingtime interaction.

Current databinding approach belongs to BDE times! We don't even have properly working DB independent dataset! That old architecture is discouraging programmers to develop modern layered architectures and OPF/ORM stuff. I mean seperation of Gui and bussines objects. Though this is pointless if you are happy to use TDataset descendants as bussiness objects! Some delphi programmers still think they can provide layering with just using remoting facilities (RemObjects, Datasnap) and codegear invests on Datasnap and Dbexpress! Collective delirium!

For Codegear : No layering := No enterprise customers!

For Delphi programmers : No layering := Time for retirement!

link|flag
show 6 more comments
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 12 vote down

Lambda expressions. (nearly there with anonymous methods)

link|flag
show 2 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 11 vote down

A true ternary operator, which (when short-circuit boolean evaluation is active) does only evaluate one of the expressions.

link|flag
vote up 10 vote down

We can post them to user voice: delphi.uservoice.com Might make it easier to track votes long term.

link|flag
vote up 10 vote down

Official support for the firebird database would be nice.

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

Beg/borrow/steal CodeRush from DevExpress and make it part of the standard IDE. Code templates are a huge step, but I am no where as productive as I was using D6+CodeRush.

One more thing, a JSON Databinding Wizard that turn a JSON file/config into a binding class so I can..

Customer := NewCustomer();
Customer.FirstName := 'Bob';
//set other fields/complex collections
StringToSendToJsonWebService := Customer.ToJson();
link|flag
1  
Check out CNWizards. Not the same, but a good step in the right direction. And free and open-source: cnpack.org/index.php?lang=en – Mick Mar 20 at 14:30
show 2 more comments
vote up 8 vote down

Garbage collection.

link|flag
3  
If you just can't handle the oh-so-onerous task of cleaning up your own messes, look at cc.codegear.com/item/21646 , but please, please do not bloat up my programs with such a hideous, fundamentally broken misfeature just because some other programmers aren't competent enough to code without one! – Mason Wheeler Mar 20 at 16:57
2  
IIRC, Nick said that they look to add GC as an option to Delphi native compiler. Imho, this is the right path. Kudos to CodeGear guys! – plainth Mar 20 at 18:02
4  
Garbage collection is not about laziness. While I wouldn't want mandatory gc in delphi, an optional gc would be great. cc.codegear.com/item/21646 (written by Barry Kelly who is now on the delphi compiler team) doesn't work on later versions of delphi. – SeanX Mar 21 at 21:11
show 6 more comments
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 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 7 vote down

Better (and less complicated) RTTI

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

Improved support for properties. Properties are basically an abstraction that allows an object to appear that it's got a bunch of public data members available for the coder to use, (making an object look like a record, back before records got scope and properties too,) instead of ugly get/set methods for everything like you have to use in C++. Problem is, the abstraction leaks in a few places, but they ought to be pretty easy to plug.

For example, there's no good reason why you should ever be unable to pass a read/write property to a var parameter. If it directly accesses the same field for both read and write access, it's trivial. Otherwise, it could be done easily enough with a small dose of compiler magic. (Allocate a temporary variable on the stack, read, copy the value, pass the copy to the function, retrieve the result and send it to the property's write access.)

Also, whoever created the current implementation of array properties oughtta be taken out and shot. They're written as if all "arrays" are really something else, so you need a get and set method to use them. That's actually been true in my own code a grand total of once. If I have a real array inside my object, I ought to be able to declare read and write access to it directly, just like any other data member:

private
  FMyArray: array[1..10] of TMyObject;
public
  property MyArray: array[1..10] of TMyObject read FMyArray write FMyArray;

Also, it would be really nice if this would compile, just to simplify things a little:

property MyNumber: integer read write FMyNumber;
link|flag
show 11 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
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 6 vote down

Automatic deallocation without garbage collection.

Instead of this:

var o:TMyObject;
begin
  o:=TMyObject.Create;
  try
    o.DoSomething;
  finally
    FreeAndNil (o);
  end;
end;

It would be nice to get:

var o:TMyObject;
begin
  o:=local TMyObject.Create;
  o.DoSomething;
end;

Here, the keyword local forces the compiler to deallocate the object before the function finished. It would also enable such constructs:

(local TMyForm.Create(nil)).ShowModal;

This would create the form, show it modally, and deallocate it again in a deterministic/plannable/non-random way.

link|flag
vote up 5 vote down

Managed records, so that I can have constructors and destructors for stack-based variables without fiddling around with try ... finally, and without the overhead that using interfaces for this purpose has.

link|flag
show 5 more comments
vote up 5 vote down
  • A better debugger.
  • A much improved Help file. D7 help file was a nice one. The current one is a pain.
  • A search box at the top of the VCL toolbar so you can type the name of a component and filter the palette.
link|flag
show 4 more comments
vote up 5 vote down

A customizable debugger (http://msdn.microsoft.com/de-de/library/zf0e8s14.aspx).

link|flag
show 2 more comments
1 2 3 4 next

Your Answer

Get an OpenID
or

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