Delphi 2010 Beta: What's on your wishlist? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T23:09:16Zhttp://stackoverflow.com/feeds/question/665143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist34Delphi 2010 Beta: What's on your wishlist?plainth2009-03-20T06:07:11Z2009-11-20T12:56:41Z
<p>Soon Delphi 2010 "Weaver" will enter in beta. (See <a href="http://www.embarcadero.com/products/beta%5Fprograms.php" rel="nofollow">http://www.embarcadero.com/products/beta_programs.php</a>)</p>
<p>Which would be your most wanted features for the next release of Delphi?</p>
<p>Mine (from top of the head):</p>
<ul>
<li>tooling for synchronizing the representations of DB schema (aka. DB metadata) in code and in database </li>
<li>language enhancements:
<ul>
<li>CASE on non-ordinal types</li>
<li>lazy evaluation</li>
<li>mixins</li>
<li>AOP (aspect oriented programming)</li>
</ul></li>
<li>VCL enhancements:
<ul>
<li>DB enhancements (TDataSet, TClientDataSet - faster, more feature rich)</li>
<li>OPF/ORM on native side</li>
<li>(more) containers, classes (using generics)</li>
</ul></li>
<li>IDE enhancements:
<ul>
<li>Runtime Object Inspector using the already registered editors to allow WYSWYG debugging of the objects/classes (and generally a better debugger)</li>
<li>Code management tools</li>
<li>Refactoring assistants</li>
<li>Find unused code (ok, here we need support from linker)</li>
</ul></li>
<li>64-bit compiler</li>
</ul>
<p>...and many many more :-)</p>
<p>Yours?</p>
<p>UPDATE: There are some sneak previews at <a href="http://wings-of-wind.com" rel="nofollow">http://wings-of-wind.com</a> See for yourself.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665167#6651678Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:25:03Z2009-03-20T06:25:03Z<p>Garbage collection.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665169#6651694Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:26:12Z2009-03-20T06:26:12Z<p>Improved class modeling tool.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665171#66517126Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:27:10Z2009-03-20T06:27:10Z<p>Multi-core support.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665172#66517245Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:27:43Z2009-03-20T06:27:43Z<p>64 bit compiler.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665174#66517435Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:28:28Z2009-03-20T06:28:28Z<p>Cross platform compilation.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665175#66517542Answer by Luke CK for Delphi 2010 Beta: What's on your wishlist?Luke CK2009-03-20T06:29:07Z2009-03-20T06:29:07Z<p>A working help file.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665196#66519612Answer by Tim Jarvis for Delphi 2010 Beta: What's on your wishlist?Tim Jarvis2009-03-20T06:46:25Z2009-03-20T06:46:25Z<p>Lambda expressions. (nearly there with anonymous methods)</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665212#66521210Answer by Jim McKeeth for Delphi 2010 Beta: What's on your wishlist?Jim McKeeth2009-03-20T07:03:02Z2009-03-20T07:03:02Z<p>We can post them to user voice: <a href="http://delphi.uservoice.com/" rel="nofollow">delphi.uservoice.com</a> Might make it easier to track votes long term.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665240#6652401Answer by Gamecat for Delphi 2010 Beta: What's on your wishlist?Gamecat2009-03-20T07:27:51Z2009-03-20T11:24:21Z<p>Expressions as property getters and setters:</p>
<pre><code>property SumAB: Integer read FA + FB;
property FooNumber: Integer read Foo.Number write Foo.Number;
</code></pre>
<p>Would be great.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665269#6652695Answer by mghie for Delphi 2010 Beta: What's on your wishlist?mghie2009-03-20T07:44:48Z2009-03-20T07:44:48Z<p>Managed records, so that I can have constructors and destructors for stack-based variables without fiddling around with <em>try</em> ... <em>finally</em>, and without the overhead that using interfaces for this purpose has.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665289#66528911Answer by mghie for Delphi 2010 Beta: What's on your wishlist?mghie2009-03-20T07:56:41Z2009-03-20T07:56:41Z<p>A true ternary operator, which (when short-circuit boolean evaluation is active) does only evaluate one of the expressions.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665581#6655811Answer by Moritz Beutel for Delphi 2010 Beta: What's on your wishlist?Moritz Beutel2009-03-20T10:15:31Z2009-03-20T10:15:31Z<p>A rooted type system, to make Generics more powerful.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665611#6656111Answer by Andreas for Delphi 2010 Beta: What's on your wishlist?Andreas2009-03-20T10:28:36Z2009-03-20T10:28:36Z<p>"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)</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665621#66562124Answer by PetriW for Delphi 2010 Beta: What's on your wishlist?PetriW2009-03-20T10:33:55Z2009-03-20T10:33:55Z<p>Support for regular expressions.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665801#66580114Answer by AhmetC for Delphi 2010 Beta: What's on your wishlist?AhmetC2009-03-20T11:46:23Z2009-03-20T11:46:23Z<p>Object friendly databinding and desingtime interaction. </p>
<p>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!</p>
<p>For Codegear :
No layering := No enterprise customers!</p>
<p>For Delphi programmers :
No layering := Time for retirement!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665844#66584410Answer by Re0sless for Delphi 2010 Beta: What's on your wishlist?Re0sless2009-03-20T12:01:11Z2009-03-20T12:01:11Z<p>Official support for the firebird database would be nice.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665861#66586116Answer by idursun for Delphi 2010 Beta: What's on your wishlist?idursun2009-03-20T12:03:58Z2009-03-20T12:03:58Z<p>Stable faster IDE with enhanced refactoring support.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/666002#6660025Answer by Averroes for Delphi 2010 Beta: What's on your wishlist?Averroes2009-03-20T12:51:04Z2009-03-20T12:51:04Z<ul>
<li>A better debugger.</li>
<li>A much improved Help file. D7 help file was a nice one. The current one is a pain.</li>
<li>A search box at the top of the VCL toolbar so you can type the name of a component and filter the palette.</li>
</ul>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/666209#6662099Answer by KevinRF for Delphi 2010 Beta: What's on your wishlist?KevinRF2009-03-20T13:46:57Z2009-03-29T12:43:38Z<p>Beg/borrow/steal CodeRush from DevExpress and make it part of the standard
IDE. Code templates are a <em>huge</em> step, but I am no where as productive as
I was using D6+CodeRush.</p>
<p>One more thing, a JSON Databinding Wizard that turn a JSON file/config into a binding class so I can..</p>
<pre><code>Customer := NewCustomer();
Customer.FirstName := 'Bob';
//set other fields/complex collections
StringToSendToJsonWebService := Customer.ToJson();
</code></pre>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/666403#6664031Answer by Tool for Delphi 2010 Beta: What's on your wishlist?Tool2009-03-20T14:32:04Z2009-03-20T14:32:04Z<p>much more enhanced IDE enviroment. Mopre autocreating and autoupdating classmember functions and procedures and variables (instead of) moving up and down whne adding new class functions etc. There are a lot more to do on intuitive refactoring.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/666456#66645632Answer by Anders Pedersen for Delphi 2010 Beta: What's on your wishlist?Anders Pedersen2009-03-20T14:49:26Z2009-07-15T14:09:05Z<p>Source code formatter, SVN integration</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/666494#6664943Answer by Mark Pim for Delphi 2010 Beta: What's on your wishlist?Mark Pim2009-03-20T14:55:58Z2009-03-20T14:55:58Z<p>Better intellisense/auto-complete/(whatever Delphi calls it).</p>
<p>Getting class members is very useful, but autocompletion of local variables / enums / etc. would be very welcome.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/666550#66655053Answer by Juliet for Delphi 2010 Beta: What's on your wishlist?Juliet2009-03-20T15:07:23Z2009-03-20T15:07:23Z<p><strong>Stable IDE</strong></p>
<p>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!).</p>
<p>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 <em>hours of work everyday</em> 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 <em>that</em> was buggy).</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/666877#6668775Answer by Moritz Beutel for Delphi 2010 Beta: What's on your wishlist?Moritz Beutel2009-03-20T16:17:59Z2009-03-20T16:17:59Z<p>A customizable debugger (<a href="http://msdn.microsoft.com/de-de/library/zf0e8s14.aspx" rel="nofollow">http://msdn.microsoft.com/de-de/library/zf0e8s14.aspx</a>).</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/666984#6669847Answer by Mason Wheeler for Delphi 2010 Beta: What's on your wishlist?Mason Wheeler2009-03-20T16:46:47Z2009-03-20T21:36:40Z<p>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, <a href="http://www.joelonsoftware.com/articles/LeakyAbstractions.html" rel="nofollow">the abstraction leaks</a> in a few places, but they ought to be pretty easy to plug.</p>
<p>For example, there's no good reason why you should ever be unable to pass a read/write property to a <strong>var</strong> 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.)</p>
<p>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:</p>
<pre><code>private
FMyArray: array[1..10] of TMyObject;
public
property MyArray: array[1..10] of TMyObject read FMyArray write FMyArray;
</code></pre>
<p>Also, it would be really nice if this would compile, just to simplify things a little:</p>
<pre><code>property MyNumber: integer read write FMyNumber;
</code></pre>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667001#66700133Answer by Mason Wheeler for Delphi 2010 Beta: What's on your wishlist?Mason Wheeler2009-03-20T16:51:35Z2009-03-20T20:19:26Z<p>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.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667014#6670145Answer by Ray for Delphi 2010 Beta: What's on your wishlist?Ray2009-03-20T16:54:00Z2009-03-20T16:54:00Z<p>Here's a thought, don't add anything new, just catch up on all of the Quality Central issues that need to be addressed.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667043#6670435Answer by Mason Wheeler for Delphi 2010 Beta: What's on your wishlist?Mason Wheeler2009-03-20T16:59:56Z2009-03-20T16:59:56Z<p>Two words: Native LINQ.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667234#6672342Answer by Stephane Wierzbicki for Delphi 2010 Beta: What's on your wishlist?Stephane Wierzbicki2009-03-20T17:49:51Z2009-03-20T17:49:51Z<p>Could be stupid but I really miss a TDBLookupLabel component !</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667300#6673000Answer by Ron for Delphi 2010 Beta: What's on your wishlist?Ron2009-03-20T18:05:52Z2009-03-20T18:05:52Z<p>Cross platform for server side code. Not interested in another CLX disaster, I just want to be able to run app servers on other platforms. </p>
<p>Optional garbage collection like Objective-C has would also be nice.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667307#6673070Answer by Mason Wheeler for Delphi 2010 Beta: What's on your wishlist?Mason Wheeler2009-03-20T18:08:17Z2009-03-20T18:08:17Z<p>Field overriding. Imagine the following scenario, based on an issue I ran into while building a sprite-based game engine:</p>
<pre><code>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;
</code></pre>
<p>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.</p>
<p>Why not make this valid syntax?</p>
<pre><code> TGameSprite = class(TSprite)
protected
FParent: TGameEngine; override;
...
end;
TGameEngine = class(TSpriteEngine)
protected
FList: array of TGameSprite; override;
...
end;
</code></pre>
<p>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 <strong>is</strong> 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.</p>
<p>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?</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667336#6673367Answer by knight_killer for Delphi 2010 Beta: What's on your wishlist?knight_killer2009-03-20T18:16:29Z2009-03-20T18:16:29Z<p>Better (and less complicated) RTTI</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667379#6673792Answer by for Delphi 2010 Beta: What's on your wishlist?2009-03-20T18:28:45Z2009-03-20T18:28:45Z<p>My top three feature requests:</p>
<ol>
<li><p>ability for Delphi 2010 to use VCL components created by C++ Builder 2010</p></li>
<li><p>cross platform server-side binaries (e.g. ISAPI Windows .DLL and Linux .so)</p></li>
<li><p>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</p></li>
</ol>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667601#6676014Answer by Mason Wheeler for Delphi 2010 Beta: What's on your wishlist?Mason Wheeler2009-03-20T19:24:49Z2009-03-20T19:24:49Z<p>A version number that's actually a <em>number</em>, 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.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667693#6676934Answer by Charles Faiga for Delphi 2010 Beta: What's on your wishlist?Charles Faiga2009-03-20T19:48:05Z2009-03-20T19:48:05Z<p>Global search and replace in the IDE - there is no way to do Delphi 2006 see <a href="http://stackoverflow.com/questions/258626/how-do-you-do-a-global-search-and-replace-in-all-the-files-in-delphi-2006-project">link text</a></p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667735#6677358Answer by Mason Wheeler for Delphi 2010 Beta: What's on your wishlist?Mason Wheeler2009-03-20T19:59:05Z2009-03-20T19:59:05Z<p>New object scopes: <strong>private published</strong> and <strong>protected published</strong>. New components added to forms would be declared <strong>private published</strong> instead of the current standard.</p>
<p>Right now, everything that's <strong>published</strong> is also automatically <strong>public</strong>. 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 (<strong>run-time</strong> 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, "<strong>published</strong>" would probably need to still mean "public published", but that should no longer be the default, or the only choice.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667799#66779917Answer by ahmoy for Delphi 2010 Beta: What's on your wishlist?ahmoy2009-03-20T20:13:12Z2009-03-20T20:13:12Z<p>faster IDE by throwing out .net and stop following the ms vs style!!!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667867#6678672Answer by Zartog for Delphi 2010 Beta: What's on your wishlist?Zartog2009-03-20T20:32:05Z2009-03-20T20:32:05Z<p>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.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/667899#6678990Answer by Loren Pechtel for Delphi 2010 Beta: What's on your wishlist?Loren Pechtel2009-03-20T20:43:00Z2009-03-20T20:43:00Z<p>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:</p>
<p>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.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668065#6680651Answer by Michael Skachkov for Delphi 2010 Beta: What's on your wishlist?Michael Skachkov2009-03-20T21:26:06Z2009-03-20T21:26:06Z<p>skin support for VCL controls.</p>
<p>this may be not even skin engine itself, but rather ability to create own skin engine and apply it to all controls.</p>
<p>i think this is very important thing for many companies.</p>
<p>so, what i would like to have is and ability to provide skins.</p>
<p>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.</p>
<p>currently to make application good looking we often have to reinvent the wheel
by creating those buttons and edits again and again.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668105#6681052Answer by eed3si9n for Delphi 2010 Beta: What's on your wishlist?eed3si9n2009-03-20T21:37:07Z2009-03-20T21:37:07Z<p>What I <em>don't</em> want is a re-interpretation of existing language construct like what happened to <code>string</code>.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668111#6681110Answer by Junior-RO for Delphi 2010 Beta: What's on your wishlist?Junior-RO2009-03-20T21:38:40Z2009-03-20T21:43:51Z<p>a) Multiline strings.</p>
<p>b) Better sintax for closures (a anonymous methods evolution).</p>
<p>c) Mixins.</p>
<p>d) High order functions as methods of arrays and strings:</p>
<pre><code>var
MyArray: array of Integer;
begin
MyArray := [1,6,8,10];
NewArray := MyArray.map (|x| x+3);
end;
</code></pre>
<p>e) Garbage collection.</p>
<pre><code>var
A: collected TMemoryStream;
begin
A := TMemoryStream.Create;
// using A
end; // automatic A.Free;
</code></pre>
<p>f) Contracts, like Delphi Prism.</p>
<p>g) Compiler need to be smarter. Every Delphi programmer lives to make this dumb compiler happy.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668144#6681446Answer by Loren Pechtel for Delphi 2010 Beta: What's on your wishlist?Loren Pechtel2009-03-20T21:50:09Z2009-03-20T21:50:09Z<p>Subranges in case statements:</p>
<pre><code>Type
Terrain = (Room, Wall, Corridor, StairUp, StairDown);
Stairs = StairUp..StairDown;
Case Terrainvar of
Stairs : DoSomething;
End;
</code></pre>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668341#6683412Answer by poyo for Delphi 2010 Beta: What's on your wishlist?poyo2009-03-20T23:22:38Z2009-03-20T23:22:38Z<p>A full preprocessor with (at least) <strong>LINE</strong>, <strong>FILE</strong> and MACROS!!!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668590#66859014Answer by Wouter van Nifterick for Delphi 2010 Beta: What's on your wishlist?Wouter van Nifterick2009-03-21T02:07:23Z2009-03-21T02:07:23Z<p>Improved Syntax highlighting:</p>
<p>Visualise {$IFDEF} ... {$ENDIF} by graying-out/hiding/folding pieces of code that are not going to be used. </p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668646#66864616Answer by Wouter van Nifterick for Delphi 2010 Beta: What's on your wishlist?Wouter van Nifterick2009-03-21T02:51:24Z2009-03-21T02:51:24Z<p>Make it easier to create, install and spread components and packages.</p>
<p><hr /></p>
<ul>
<li><p>Let component creators create things in a more graphical way. </p>
<ul>
<li>Why can't I rightclick the component palette and say: "Add new"?</li>
<li><p>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)? </p>
<p>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.</p></li>
</ul></li>
</ul>
<p><hr /></p>
<ul>
<li>Create a <strong>new package format</strong> 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.</li>
</ul>
<p>Just have required files and folders in a certain structure, zip it and rename it to dpz.</p>
<p>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.</p>
<p><em>(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)</em></p>
<p><hr /></p>
<ul>
<li><p>It would be very nice if there'd be a <strong>central repository for packages</strong>, probably best maintained by Embarcadero. It could partly be for Delphi what AppStore is for the iPhone. </p>
<p>It would have the following functions:</p>
<ul>
<li><p>Have dependencies between packages automatically resolved;</p></li>
<li><p>Enfore a certain namespace for all code and check for conflicts before accepting contributions;</p></li>
<li><p>Third party component developers can sell or give away their stuff via this place;</p></li>
<li><p>Delpi developers can easily find stuff;</p></li>
</ul></li>
</ul>
<p>This could be via a website, but it would also be neat to have it integrated into the IDE. </p>
<p>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.</p>
<p>This would be a giant productivity booster.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668684#66868412Answer by lkessler for Delphi 2010 Beta: What's on your wishlist?lkessler2009-03-21T03:32:49Z2009-03-23T20:03:09Z<p>A built-in profiler. </p>
<p>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. </p>
<p>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.</p>
<p>Also see "Profiler and Memory Analysis Tools for Delphi": <a href="http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi">http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi</a></p>
<p>and "Delphi Profiling tools":
<a href="http://stackoverflow.com/questions/368938/369945#369945">http://stackoverflow.com/questions/368938/369945#369945</a></p>
<p><hr /></p>
<p><a href="http://stackoverflow.com/questions/322315/how-does-aqtime-do-it/672564#672564">A response just posted to: "How Does AQTime Do It?" by Andre Mussche</a> tells of the open source non-invasive profiler called <strong>asmprofiler</strong> 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.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668696#6686968Answer by lkessler for Delphi 2010 Beta: What's on your wishlist?lkessler2009-03-21T03:41:15Z2009-03-21T03:41:15Z<p>Sort of minor, but it would be nice if Delphi started up faster.</p>
<p>Delphi 4 used to start up in under 2 seconds. But Delphi 2009 takes about 30 seconds to start up.</p>
<p>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.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668704#6687043Answer by lkessler for Delphi 2010 Beta: What's on your wishlist?lkessler2009-03-21T03:47:43Z2009-03-21T03:47:43Z<p>Should GExperts Functionality be Incorporated into Delphi?</p>
<p><a href="http://stackoverflow.com/questions/303515">http://stackoverflow.com/questions/303515</a></p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668873#6688734Answer by Charles Faiga for Delphi 2010 Beta: What's on your wishlist?Charles Faiga2009-03-21T06:44:52Z2009-03-21T06:44:52Z<p>More examples in the help files</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/668876#6688761Answer by Charles Faiga for Delphi 2010 Beta: What's on your wishlist?Charles Faiga2009-03-21T06:48:12Z2009-03-21T06:48:12Z<p>Make the VCL Thread safe </p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/669053#6690530Answer by softboy99 for Delphi 2010 Beta: What's on your wishlist?softboy992009-03-21T09:50:01Z2009-03-21T09:50:01Z<p>Consistant Memory Management for vairous applications: exe application, dll application,service application.....,we don't want to use build with runtime packages any more!!!!!!!!!!!!!!!!!!!!!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/669414#6694145Answer by Daniele Teti for Delphi 2010 Beta: What's on your wishlist?Daniele Teti2009-03-21T14:55:06Z2009-03-21T14:55:06Z<ol>
<li><p>Databinding like .NET. No more TDataset hell!</p></li>
<li><p>Multiline strings in the code </p>
<p>s := 'A String';</p>
<p>multiline := "I'm the first row</p>
<p>and I'm the second row</p>
<p>and here there is the third row"; //Note " instead of '</p></li>
<li><p>Simpler e stronger RTTI</p></li>
<li><p>Simpler sintax for anon method</p></li>
<li><p>Mixins like ruby.</p></li>
<li><p>Skin for VCL</p></li>
<li><p>Some high order functions like ruby, python or PHP</p></li>
<li><p>Garbage collector for some specific type (es. if a class implements Interface "IManaged", object created from that class will be managed)</p></li>
<li><p>Contracts, like Delphi Prism</p></li>
<li><p>Inline variable declaration like Delphi Prism</p></li>
<li><p>Workaround for "Circular unit references" error.</p></li>
<li><p>Cross-compiler (at least for console/service application)</p></li>
<li><p>No limit for constant string size. </p></li>
<li><p>Integrated ORM (with or without designer support)</p></li>
<li><p>Integrated Profiler</p></li>
<li><p>Integrated Serialization system (Every object can be serialized as XML, JSON, Some Native Type. etc)</p></li>
<li><p>Still better DataSnap</p></li>
<li><p>Revamped TDBGrid</p></li>
<li><p>Stronger support for SOAP</p></li>
<li><p>Some support for build RESTful application type (something more of webbroker)</p></li>
<li><p>Integrated UML tool for Class Diagram (at least) with code generator for REAL Pascal code (not like Together)</p></li>
<li><p>Many Thanks For Your Work!</p></li>
</ol>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/669450#6694502Answer by Fabio Gomes for Delphi 2010 Beta: What's on your wishlist?Fabio Gomes2009-03-21T15:24:07Z2009-03-21T15:24:07Z<p>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.</p>
<pre><code>type
IMyInterface = interface
function GetMyProp: Boolean;
procedure SetMyProp(Value: Boolean);
property MyProp: Boolean read GetMyProp write SetMyProp;
end;
</code></pre>
<p>Why can't I just write:</p>
<pre><code>type
IMyInterface = interface
property MyProp: Boolean;
end;
</code></pre>
<p>Who cares how the class implements the getter and setter? Oh, ok, you tell me you want a read only property, then:</p>
<pre><code>type
IMyInterface = interface
property MyProp: Boolean readonly;
end;
</code></pre>
<p>Or something like it, this would make my life much less complicated!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/669636#6696361Answer by Olaf for Delphi 2010 Beta: What's on your wishlist?Olaf2009-03-21T17:44:25Z2009-03-21T17:44:25Z<ol>
<li>Regular Expression</li>
<li>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.</li>
<li>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.</li>
<li>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.)</li>
<li>Improved DB support. (with support for sqllite etc)</li>
<li>STL-like data structure library.</li>
</ol>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/669822#6698220Answer by mjustin for Delphi 2010 Beta: What's on your wishlist?mjustin2009-03-21T19:30:05Z2009-04-11T08:46:59Z<ul>
<li><p>Annotations (like C# and Java, and Delphi.NET?)</p></li>
<li><p>RTTI for constructors - this would allow to create constructor-based
dependency injection (until now, only property-based DI is possible)</p></li>
<li><p>namespaces/packages (like C# and Java and Delphi.NET)</p></li>
<li><p>SOAP 1.2 support</p></li>
<li><p>JSON based object serialization</p></li>
</ul>
<p>Edit:</p>
<ul>
<li>include the XML Databinding Wizard in Professional edition</li>
</ul>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/670175#6701751Answer by Gad D Lord for Delphi 2010 Beta: What's on your wishlist?Gad D Lord2009-03-21T23:05:13Z2009-03-21T23:05:13Z<p>Here is an email I sent to Nick Hodges a couple of weeks ago:</p>
<p>"
Hello,</p>
<ol>
<li>Do you consider having static constructors/destructors in D2010?</li>
</ol>
<p>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.</p>
<ol>
<li>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()</li>
<li>Do you plan to introduce attributes like in C# and Java. I think you already have some partial implementation.</li>
<li>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}</li>
<li>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.</li>
<li>Do you plan SQLite driver support?</li>
<li>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.</li>
</ol>
<p>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.</p>
<p>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.</p>
<p>I would prefer D2010 to be more stable even compared to D2009 instead of having 64bit support or parallelism or other “fancy” stuff.
"</p>
<p>Still haven't received answer though.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/670594#6705941Answer by Salar for Delphi 2010 Beta: What's on your wishlist?Salar2009-03-22T05:49:00Z2009-03-22T05:49:00Z<p>IDE Intelligence</p>
<p>64bit compiler</p>
<p>Language features e.g.
try/except/finally
More generics
...</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/670938#6709380Answer by Mihai Limbasan for Delphi 2010 Beta: What's on your wishlist?Mihai Limbasan2009-03-22T12:36:14Z2009-03-22T12:36:14Z<ol>
<li>Vastly improved linker error messages.</li>
<li>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.)</li>
</ol>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/671217#6712177Answer by laurent for Delphi 2010 Beta: What's on your wishlist?laurent2009-03-22T16:12:39Z2009-03-22T16:20:27Z<ol>
<li>A more stable and faster IDE</li>
<li>Support for regular expressions</li>
<li>Source code formater under the IDE</li>
<li>A better help system including a real sample code exemple</li>
<li>Extend VCL to graphic/picture/video/OMR/OCR</li>
<li>A except/finally in same code block like:</li>
</ol>
<p>``</p>
<pre><code>MyObject := TMyObject.Create;
try
MyObject.DoSomething;
except
raise something
finally
FreeAndNil(...);
end;
</code></pre>
<p>`</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/672378#6723780Answer by Marco for Delphi 2010 Beta: What's on your wishlist?Marco2009-03-23T06:21:48Z2009-03-23T06:21:48Z<p>Let them bring back the VCL.NET personality in a modernized version and ditch Prism.
That'd make me really happy :)</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/673093#6730933Answer by Olaf for Delphi 2010 Beta: What's on your wishlist?Olaf2009-03-23T11:48:07Z2009-03-23T11:48:07Z<p>Unicode switch. As in Visual Studio. There are a list of build options in VS like:</p>
<ol>
<li>MyApp (Debug)</li>
<li>MyApp (Release)</li>
<li>MyApp (Debug - Unicode)</li>
<li>MyApp (Release - Unicode)</li>
</ol>
<p>I would like to have such an option to decide whether the app is Unicode or just plain ANSI build at compile time.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/674415#6744151Answer by Ivan Revelli for Delphi 2010 Beta: What's on your wishlist?Ivan Revelli2009-03-23T17:33:01Z2009-03-23T17:33:01Z<p>to make Delphi the first language : </p>
<ul>
<li>cross compiler (only with header for linux and macosx 32/64bit)</li>
<li>vcl -> gtk or qt to build (form) application without lose past compatibility</li>
<li>full integration with SOAP and possibility to create a stand alone app/service as WebServices</li>
</ul>
<p>is possible? </p>
<p>... and why not, do you know <a href="http://www.zkoss.org" rel="nofollow">zkoss</a> , a framework like that to build WebApplications with indy.. was fabuluos </p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/676130#6761300Answer by hok for Delphi 2010 Beta: What's on your wishlist?hok2009-03-24T04:09:51Z2009-03-24T04:09:51Z<p>Compability With Windows 7 64 bit (<a href="http://social.technet.microsoft.com/Forums/en-US/thread/e56df407-bd0b-4ecc-b8a5-0a35bcd571cc/" rel="nofollow">http://social.technet.microsoft.com/Forums/en-US/thread/e56df407-bd0b-4ecc-b8a5-0a35bcd571cc/</a>)</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/676562#6765620Answer by Charles Faiga for Delphi 2010 Beta: What's on your wishlist?Charles Faiga2009-03-24T08:47:09Z2009-03-24T08:47:09Z<p>some cryptography support </p>
<p>SHA,DES,AES, etc They are very useful </p>
<p>plus a way to digitally sign files</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/677429#6774290Answer by Muetze1 for Delphi 2010 Beta: What's on your wishlist?Muetze12009-03-24T13:36:34Z2009-03-24T13:36:34Z<p>A just in all aspects working Delphi -> C++Builder system. The HPP generator of RAD Studio 2007 is so crappy in basics - it is still nearly unusable. Using any new language feature of Delphi upsets the HPP generator completly. There are so many QC entries, but none resolved. If you add new features, than support it in the whole product - you are advertising with the C++Builder usage of Delphi code - but up to now, it is not. </p>
<p>So get this clear and working!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/677495#6774951Answer by JosephStyons for Delphi 2010 Beta: What's on your wishlist?JosephStyons2009-03-24T13:52:57Z2009-03-24T13:52:57Z<p>A small thing... but it sure would be nice if they implemented <a href="http://www.twodesk.com/castalia/structural%5Fhighlighting.html" rel="nofollow">structural highlighting, ala Castalia</a>. That is a real lifesaver when you are working on nightmare 1000-line functions. In fact, they should just buy Castalia and include most of it's functionality natively (including the relevant options to turn it off).</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/678214#6782140Answer by TheArtTrooper for Delphi 2010 Beta: What's on your wishlist?TheArtTrooper2009-03-24T16:36:33Z2009-03-24T16:36:33Z<p>My top two items would be:</p>
<p>(1) 64-bit Compiler</p>
<p>(2) STL-equivalent</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/680542#6805421Answer by Arthur Hoornweg for Delphi 2010 Beta: What's on your wishlist?Arthur Hoornweg2009-03-25T07:26:30Z2009-03-25T07:26:30Z<p>Better compatibility with legacy (ansi) sourcecode: </p>
<p>The ability to define on a per-unit basis if the default string/char types should be Ansistring or Unicodestring. The lack of this is my #1 problem.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/681548#6815481Answer by murphy for Delphi 2010 Beta: What's on your wishlist?murphy2009-03-25T13:19:22Z2009-03-25T13:19:22Z<p>hmmm i'd like to see:</p>
<ul>
<li>64bit Compiler</li>
<li>Crosscompiling to other OS... Maybe OSX.</li>
<li>Windows 7 features in VCL</li>
<li>a Standard Version without any database stuff or a smaller version which is more affortable and not so pricy, but with third party components support</li>
</ul>
<p>Cheers, murphy</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/685478#6854781Answer by Jk for Delphi 2010 Beta: What's on your wishlist?Jk2009-03-26T12:05:50Z2009-03-26T12:05:50Z<ul>
<li>CASE on non-ordinal types</li>
<li>64 bit compiler</li>
<li>profiler</li>
<li>Inline variable declaration</li>
</ul>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/711642#7116423Answer by Aleksey Timohin for Delphi 2010 Beta: What's on your wishlist?Aleksey Timohin2009-04-02T21:09:13Z2009-04-02T21:09:13Z<ol>
<li>Interfaces for most VCL classes, f.e. IStringList, IDataset, IField, IDbControl.</li>
<li>Support for Windows 7.</li>
<li>More intelligent Refactoring tools(like ModelMaker Code Explorer has).</li>
</ol>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/712484#7124840Answer by Jon Samson for Delphi 2010 Beta: What's on your wishlist?Jon Samson2009-04-03T03:43:09Z2009-04-03T03:43:09Z<p>Bold support.... We are stuck on Delphi 2006 until Bold is updated...</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/716663#7166630Answer by Charles Faiga for Delphi 2010 Beta: What's on your wishlist?Charles Faiga2009-04-04T06:49:49Z2009-04-05T16:16:00Z<p>Some built in framework's - like MVC or MVP </p>
<p>With a lot of supporting libraries</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/716981#7169810Answer by avar for Delphi 2010 Beta: What's on your wishlist?avar2009-04-04T12:20:15Z2009-04-04T12:20:15Z<p>what about delphi compiler for embedded devices?</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/719833#7198330Answer by Brett Graffin for Delphi 2010 Beta: What's on your wishlist?Brett Graffin2009-04-05T22:47:05Z2009-04-05T22:47:05Z<p>A built in switch to generate compiled obsfucation into the executable, like what is done with ExeCryptor.</p>
<pre><code>procedure TForm1.ExampleMethod;
var
sBuffer: string;
begin
sBuffer := '';
{$StartObfucation}
MyPassword := Edit1.Text + GenerateGUID();
{$EndObsfucation}
sBuffer := 'Method Done';
end;
</code></pre>
<p>Code obsfucation would get added during Delphi compile.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/736714#7367140Answer by cigur for Delphi 2010 Beta: What's on your wishlist?cigur2009-04-10T04:37:20Z2009-04-10T04:37:20Z<p>class explorer for c++</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/737649#7376490Answer by nick dirov for Delphi 2010 Beta: What's on your wishlist?nick dirov2009-04-10T13:42:09Z2009-04-10T13:42:09Z<p>We need implementation in Delphi functionality like in C with frendly classes - OOP is good but object is not enought for object model with big object quantity. You need to find way to implement entity of LAYER in around world in delphi code. It mean that classes are more integrated inside the layer and add some rules to interoperation between layers of objects(classes) (extend C frendship);</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/739216#7392164Answer by lkessler for Delphi 2010 Beta: What's on your wishlist?lkessler2009-04-11T00:09:46Z2009-04-11T00:09:46Z<p>Here's one that REALLY bugs me, but should be a simple one for them to add.</p>
<p>In the editor, you can right-click on a variable and select "Find Declaration". That is really useful and convenient.</p>
<p>But when debugging, it isn't a right-click option. Why not?</p>
<p>Please include that!!!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/739806#7398062Answer by VilleK for Delphi 2010 Beta: What's on your wishlist?VilleK2009-04-11T09:39:34Z2009-04-11T09:39:34Z<p>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.</p>
<p>I would like to see:</p>
<ul>
<li>focus kept on Win32 (with 64-bit as a
long term goal) instead of .NET</li>
<li>improved code-generation (afaik not much has been done here since Delphi
2.0)</li>
<li>improve IDE responsiveness. It feels quite large and sluggish
compared to VisualStudio.</li>
<li>100% backwards compatibility. I've not used Delphi2009 as much as I
wanted to because of problems of
converting older code to Unicode.</li>
</ul>
<p>But in general I'm still a fan of Delphi so the above list should not be seen as complaints!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/747950#7479502Answer by Ivan Revelli for Delphi 2010 Beta: What's on your wishlist?Ivan Revelli2009-04-14T14:45:16Z2009-04-14T14:45:16Z<p>beautifull !! except and finally in the same block. why not add the += expression ?</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/750628#7506281Answer by LeGEC for Delphi 2010 Beta: What's on your wishlist?LeGEC2009-04-15T07:17:59Z2009-04-15T07:17:59Z<p>a CONST keyword which serves some purpose (namely : tagging as "const" an object or a pointer would prevent changing the object/pointee's <em>content</em>)</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/765024#7650242Answer by Excessive for Delphi 2010 Beta: What's on your wishlist?Excessive2009-04-19T07:45:04Z2009-04-19T07:45:04Z<p>Since Delphi 7, a lot has been changed. But I still miss old clean IDE. </p>
<ol>
<li><p>Remove all Visual Studio like elements from IDE and create your own style.</p></li>
<li><p>Design your own fast, stable and informative help system. A development environment uses a competing product's help system. Is this logical? </p></li>
<li><p>Give us the tools of the future, as in pre-Delphi 7 era.</p></li>
<li><p>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. </p></li>
</ol>
<p>These are my requirements for a new version of Delphi. Unless these are satisfied, I won't use another version of Delphi again.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/777769#7777690Answer by RRUZ for Delphi 2010 Beta: What's on your wishlist?RRUZ2009-04-22T15:18:10Z2009-04-22T15:18:10Z<ol>
<li>Document the DCU format.</li>
<li>Make DCU Format compatible with old versions of delphi.</li>
</ol>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/780542#7805421Answer by Frank for Delphi 2010 Beta: What's on your wishlist?Frank2009-04-23T06:48:59Z2009-04-23T06:48:59Z<p>Integrated support in the IDE for information in the xx_MemoryManager_EventLog.txt file that the debug version of FastMM generates. It would be nice to be able to jump to the lines in the source code where memory leaks are occurring.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/788680#7886800Answer by Yogi Yang 007 for Delphi 2010 Beta: What's on your wishlist?Yogi Yang 0072009-04-25T10:48:44Z2009-04-25T10:48:44Z<p>I have used many RAD based IDE but after trying Delphi4PHP I really liked the way in which forms (HTML web pages) are implemented.</p>
<p>I wish that in Delphi we get a form which have a surface similar to a HTML page (as implemented in Delphi4PHP). </p>
<p>This would make designing forms with dynamic contents truly dynamic and easy. Imagine being able to show problems and text description of that problem in a controls content in data entry form right next to the control without having to put hidden labels next to each control and then making them visible and again hiding them.</p>
<p>Again Imagine the easy with which we can change the look and feel along with locations of controls (on a form) of the form just by making changes to an external CSS like file without having to recompiling the software!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/790511#7905112Answer by George Pantazis for Delphi 2010 Beta: What's on your wishlist?George Pantazis2009-04-26T08:55:07Z2009-04-26T08:55:07Z<p>SCM integration is a must, tortoise is nice and Embarcadero could officially support it for full integration to the IDE.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/824398#8243985Answer by justin for Delphi 2010 Beta: What's on your wishlist?justin2009-05-05T11:07:58Z2009-05-05T11:07:58Z<p>XML Serialization / Deserialization.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/828524#8285240Answer by Gad D Lord for Delphi 2010 Beta: What's on your wishlist?Gad D Lord2009-05-06T08:02:40Z2009-05-06T08:02:40Z<p>Nilable types like the Nullable types in C# 2.0.
I don't like the Variant since it allows a lot more than int/null values t be written in a int?</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/856054#8560544Answer by Mihaela for Delphi 2010 Beta: What's on your wishlist?Mihaela2009-05-13T04:24:10Z2009-05-24T00:08:02Z<ol>
<li>Faster and non-blocking code
insight. </li>
<li>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.</li>
<li>Fix IDE bugs.</li>
</ol>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/856113#856113-1Answer by Electrons_Ahoy for Delphi 2010 Beta: What's on your wishlist?Electrons_Ahoy2009-05-13T04:49:38Z2009-05-13T04:49:38Z<p>A working version of Kylix.</p>
<p>In this day and age, I guess that means a baked-in version of Mono with full support.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/900058#9000581Answer by for Delphi 2010 Beta: What's on your wishlist?2009-05-22T21:22:24Z2009-05-22T21:22:24Z<p>cross compilation to other platforms (osx, linux)</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/919621#9196216Answer by Lars D for Delphi 2010 Beta: What's on your wishlist?Lars D2009-05-28T07:32:26Z2009-05-28T07:32:26Z<p>Automatic deallocation without garbage collection.</p>
<p>Instead of this:</p>
<pre><code>var o:TMyObject;
begin
o:=TMyObject.Create;
try
o.DoSomething;
finally
FreeAndNil (o);
end;
end;
</code></pre>
<p>It would be nice to get:</p>
<pre><code>var o:TMyObject;
begin
o:=local TMyObject.Create;
o.DoSomething;
end;
</code></pre>
<p>Here, the keyword local forces the compiler to deallocate the object before the function finished. It would also enable such constructs:</p>
<pre><code>(local TMyForm.Create(nil)).ShowModal;
</code></pre>
<p>This would create the form, show it modally, and deallocate it again in a deterministic/plannable/non-random way.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/929355#9293551Answer by Henry for Delphi 2010 Beta: What's on your wishlist?Henry2009-05-30T08:39:57Z2009-05-30T09:17:50Z<ul>
<li>Linux</li>
<li>Firebird Support</li>
<li>Windows7 64 bit support</li>
<li>Easy IDE (Like Delphi7 )</li>
<li>Faster (Like Delphi 7 )</li>
<li>Unicode support for CDS Filter ( Midas )</li>
<li>Improvements on Database Controls ( for example improved DBGrid )</li>
</ul>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/956294#9562943Answer by ALwa for Delphi 2010 Beta: What's on your wishlist?ALwa2009-06-05T14:49:43Z2009-06-05T14:49:43Z<p>a MUCH better HELP SYSTEM !!!!! PLEASE !!!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1008894#10088940Answer by TommyA for Delphi 2010 Beta: What's on your wishlist?TommyA2009-06-17T18:48:21Z2009-06-17T18:48:21Z<p>My wish list would be (prioritized):</p>
<ul>
<li><strong>More stable IDE</strong>, I've experienced several exception windows from the compiler at seemingly random moments. I've seen this in both 2006, 2007 and 2009 releases.</li>
<li><strong>More modern compiler</strong>, honestly still in the 2009 version the most advanced CPU the compiler can optimize for is the Pentium Pro.</li>
<li><strong>64 Bit support</strong>, this is something I've waited for, and really looking forward to. As a side note, it may even force them to add some improvements to the compiler.</li>
<li><strong>Cross platform version of VCL</strong>.... Now that would rock.</li>
<li>One thing that is very unlikely to get through. (and only for the C++ compiler really) <strong>standardize the VCL more</strong>, since my confidence in Codegear surviving for much longer (at least the C++ Builder product) is at a historical low. It would be fantastic using i.e. the Intel C++ Compiler with my C++ Builder Project.</li>
<li><strong>Add a Webkit (or Gecko) component</strong> directly just like the TWebbrowser/TCPPWebbrowser, much like what you get in Qt.</li>
</ul>
<p>Though I doubt we will see any of the points, except for the 64 bit support. Which by the way, would be a much welcomed addition.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1023585#10235851Answer by stephane for Delphi 2010 Beta: What's on your wishlist?stephane2009-06-21T10:11:07Z2009-06-21T10:11:07Z<p>64 bit compiler !</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1056466#10564661Answer by Doe for Delphi 2010 Beta: What's on your wishlist?Doe2009-06-29T03:38:11Z2009-06-29T03:38:11Z<p>64 bit compiler and cross platform compiling</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1068124#10681240Answer by Peter for Delphi 2010 Beta: What's on your wishlist?Peter2009-07-01T09:13:14Z2009-07-01T09:13:14Z<p>Move dfm into pas file like in c#.
Stable IDE </p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1118127#11181270Answer by Azarien for Delphi 2010 Beta: What's on your wishlist?Azarien2009-07-13T07:37:35Z2009-07-13T07:37:35Z<p>Some Delphi Prism features:</p>
<ul>
<li>LINQ</li>
<li>contracts</li>
<li>futures</li>
<li>parallel loops</li>
<li>"implies" operator</li>
</ul>
<p>Reasonable pricing, Turbo edition that costs like a bicycle and not like a car.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1155261#11552610Answer by Felipe for Delphi 2010 Beta: What's on your wishlist?Felipe2009-07-20T18:54:26Z2009-07-20T18:54:26Z<p>Cross platform compiler</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1181478#1181478-1Answer by gald for Delphi 2010 Beta: What's on your wishlist?gald2009-07-25T07:26:08Z2009-07-25T07:26:08Z<ul>
<li>About Task Manager</li>
</ul>
<p>Destroy will be Destroy
Free will be Free</p>
<p>we wanna start the app whti a simple form using just the memory witch have in her unit.</p>
<p>on create the second form with a lot of 3d components, the memory(in task manager) grow in ths time, and not when start the entire application.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1203553#12035530Answer by Gerard for Delphi 2010 Beta: What's on your wishlist?Gerard2009-07-29T22:56:31Z2009-07-29T22:56:31Z<p><strong>Fix the Object Inspector</strong> - Please! It's been broken for so long now. When you elect to Arrange by Name it is very buggy!</p>
<p>It s a small thing but honestly, why has it remained broken for so long. I always opt for Arrange by Name and it is just a pain when scrolling. Seems like a refresh problem.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1206472#12064720Answer by Brian Frost for Delphi 2010 Beta: What's on your wishlist?Brian Frost2009-07-30T13:04:21Z2009-07-30T13:04:21Z<p>A really - really - effective means of moving backward and forward through a chain of declarations. The existing solution works well if the code compiles, and I've evidence that under D2009 it is worse than D7. I'd like a parser / text search mechanism to do the lookup even on code under construction.
Bri</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1209271#12092710Answer by Bernd Ott for Delphi 2010 Beta: What's on your wishlist?Bernd Ott2009-07-30T20:44:44Z2009-07-30T20:44:44Z<p>i like to have aliases in "with"-statements.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1217030#12170300Answer by Blitzki for Delphi 2010 Beta: What's on your wishlist?Blitzki2009-08-01T17:12:26Z2009-08-02T01:28:34Z<p>I would like that Properties like <code>.Caption</code> and <code>.Hint</code> etc. can be replaced by a resource-String variable for better translation.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1232849#12328492Answer by gald for Delphi 2010 Beta: What's on your wishlist?gald2009-08-05T12:10:27Z2009-08-05T12:10:27Z<p><strong>Encrypted DataSnap</strong>!!!</p>
<p>plz, do Datasnap security!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1233348#12333480Answer by fugu5 for Delphi 2010 Beta: What's on your wishlist?fugu52009-08-05T13:43:45Z2009-08-05T13:43:45Z<p>1: Native Decimal type, decimal arithmetic, see QC report #68381 - this could replace FmtBCD.</p>
<p>2: Multiple main/foreground threads: each with it's own message loop and form handling; the application would exit when all foreground threads are finished - extremely useful when you want to develop a multitask application like Firefox or Office (the latter doesn't support this functionality either).</p>
<p>3: Complete documentation</p>
<p>4: Better interface RTTI, as in QC report #46581</p>
<p>5: Access to the syntax tree in IDE experts, for custom code formatters and stuff.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1237684#12376840Answer by Mattias Andersson for Delphi 2010 Beta: What's on your wishlist?Mattias Andersson2009-08-06T08:45:17Z2009-08-06T08:45:17Z<p>My wishlist:</p>
<ul>
<li>Stable IDE;</li>
<li>A thorough review of QC reports;</li>
<li>Cross-platform compilation support;</li>
<li>Compiler optimizations for modern CPUs;</li>
<li>64-bit compiler;</li>
<li>BASM function inlining;</li>
<li>Revised RTTI that supports additional property data;</li>
<li>SVN integration.</li>
</ul>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1237755#12377550Answer by Jens Nordenbro for Delphi 2010 Beta: What's on your wishlist?Jens Nordenbro2009-08-06T09:02:30Z2009-08-06T09:02:30Z<ul>
<li>Stability </li>
<li>Stability</li>
<li>Stability</li>
<li>x64-compiler</li>
<li>Official x64-support for the environment (not wow64)</li>
</ul>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1240240#12402401Answer by Charles Faiga for Delphi 2010 Beta: What's on your wishlist?Charles Faiga2009-08-06T17:13:04Z2009-08-06T17:13:04Z<p>Support in the delphi framework for Microsoft Management console(MMC) snap-ins.</p>
<p>It is an important standard and been around for over 10 years</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1250713#12507130Answer by AndreFM for Delphi 2010 Beta: What's on your wishlist?AndreFM2009-08-09T05:13:16Z2009-08-09T05:13:16Z<p>It would be great to have a code beautifier.
There exists some from 3rd party even for free, but I would expect this feature in each good development tool.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1253296#12532961Answer by PHP4PRO for Delphi 2010 Beta: What's on your wishlist?PHP4PRO2009-08-10T06:01:44Z2009-08-10T06:01:44Z<p>undo / redo in design time and stable IDE only </p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1279455#12794551Answer by Bill for Delphi 2010 Beta: What's on your wishlist?Bill2009-08-14T18:36:14Z2009-08-14T18:36:14Z<ul>
<li><p>When I am in a block of code (in a begin/end pair or try finally or repeat until or case structure or ..?) I would like that whole block to be highlighted.</p></li>
<li><p>Dock non-visual components in some kind of tray rather than in the Form because they get in the way.</p></li>
<li><p>I would like to make "application level" components which only show up for certain projects and are targeted to a set of projects. There are parts of large applications that can be made into components - but those components are only relavant to that project or set of projects. I do not make components because it is too time consuming. I would like an easy way to create them for a given project. Maybe like a component bucket for a project where I can create new components but I do not have to install them - they become available to the current project.</p></li>
</ul>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1332909#13329092Answer by Jacky for Delphi 2010 Beta: What's on your wishlist?Jacky2009-08-26T07:21:30Z2009-08-26T07:21:30Z<p>Native PostgreSQL support !!</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1497209#14972092Answer by BorysBe for Delphi 2010 Beta: What's on your wishlist?BorysBe2009-09-30T10:16:02Z2009-09-30T10:16:02Z<p>Three compilers</p>
<ul>
<li><strong>first</strong> from Delphi 7 - you can make programs for Windows 98, you can develope old programs</li>
<li><strong>second</strong> from Delphi 2009 - with Unicode</li>
<li><strong>third</strong> for 64 bits programs</li>
</ul>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1770276#17702760Answer by Jk for Delphi 2010 Beta: What's on your wishlist?Jk2009-11-20T12:56:41Z2009-11-20T12:56:41Z<p>Get sources of BDE... </p>