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

Here's a thought, don't add anything new, just catch up on all of the Quality Central issues that need to be addressed.

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

Two words: Native LINQ.

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

XML Serialization / Deserialization.

link|flag
vote up 4 vote down

Improved class modeling tool.

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

More examples in the help files

link|flag
vote up 4 vote down

Here's one that REALLY bugs me, but should be a simple one for them to add.

In the editor, you can right-click on a variable and select "Find Declaration". That is really useful and convenient.

But when debugging, it isn't a right-click option. Why not?

Please include that!!!

link|flag
vote up 4 vote down
  1. Faster and non-blocking code insight.
  2. Packages without needing to compile with all the run-time packages. Just the one with the new functionality.I compile application without the run-time packages, but I can use just one, or two additional packages.
  3. Fix IDE bugs.
link|flag
vote up 3 vote down

Better intellisense/auto-complete/(whatever Delphi calls it).

Getting class members is very useful, but autocompletion of local variables / enums / etc. would be very welcome.

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

Should GExperts Functionality be Incorporated into Delphi?

http://stackoverflow.com/questions/303515

link|flag
vote up 3 vote down

Unicode switch. As in Visual Studio. There are a list of build options in VS like:

  1. MyApp (Debug)
  2. MyApp (Release)
  3. MyApp (Debug - Unicode)
  4. MyApp (Release - Unicode)

I would like to have such an option to decide whether the app is Unicode or just plain ANSI build at compile time.

link|flag
vote up 3 vote down
  1. Interfaces for most VCL classes, f.e. IStringList, IDataset, IField, IDbControl.
  2. Support for Windows 7.
  3. More intelligent Refactoring tools(like ModelMaker Code Explorer has).
link|flag
vote up 3 vote down

a MUCH better HELP SYSTEM !!!!! PLEASE !!!

link|flag
vote up 2 vote down

Could be stupid but I really miss a TDBLookupLabel component !

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

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

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

I've been using Delphi since the beta before 1.0 and every Win32 version after that and I still consider it to be the best tool for building native Win32 exe-files.

I would like to see:

  • focus kept on Win32 (with 64-bit as a long term goal) instead of .NET
  • improved code-generation (afaik not much has been done here since Delphi 2.0)
  • improve IDE responsiveness. It feels quite large and sluggish compared to VisualStudio.
  • 100% backwards compatibility. I've not used Delphi2009 as much as I wanted to because of problems of converting older code to Unicode.

But in general I'm still a fan of Delphi so the above list should not be seen as complaints!

link|flag
vote up 2 vote down

beautifull !! except and finally in the same block. why not add the += expression ?

link|flag
vote up 2 vote down

Since Delphi 7, a lot has been changed. But I still miss old clean IDE.

  1. Remove all Visual Studio like elements from IDE and create your own style.

  2. Design your own fast, stable and informative help system. A development environment uses a competing product's help system. Is this logical?

  3. Give us the tools of the future, as in pre-Delphi 7 era.

  4. Leave the .NET in the dust. Yesterday I needed a freeware CD burner, searched the net and found a software. I tried to install it, but it said it requires .NET framework 2.0, which I don't have. It redirected me to a site where I needed to download a huge package to use a 2 mb program. I removed it instantly. No one can explain me why I should install a 300 megabytes of framework to run a 2 megabyte executable.

These are my requirements for a new version of Delphi. Unless these are satisfied, I won't use another version of Delphi again.

link|flag
vote up 2 vote down

SCM integration is a must, tortoise is nice and Embarcadero could officially support it for full integration to the IDE.

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

Encrypted DataSnap!!!

plz, do Datasnap security!

link|flag
vote up 2 vote down

Native PostgreSQL support !!

link|flag
vote up 2 vote down

Three compilers

  • first from Delphi 7 - you can make programs for Windows 98, you can develope old programs
  • second from Delphi 2009 - with Unicode
  • third for 64 bits programs
link|flag
vote up 1 vote down

A rooted type system, to make Generics more powerful.

link|flag
vote up 1 vote down

"Beta". Doesn't that mean that no new feature will be added. Only dropping of features. Or have I misunderstood the word "Beta". (rhetorical question)

link|flag

Your Answer

Get an OpenID
or

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