Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a large application written in Delphi. I want to renew it, starting with the user interface. I thought about using the new Qt. During the process of renewing it, I want to change to C++ as the programming language. Is there a way to gradually rewrite the application (starting with the UI) to change to C++?

Thank you for your help.

share|improve this question
3  
I'm adding this as a comment, because my Delphi/Borland experience ended years ago. However, I THINK Borlands C++ compiler will sucessfully build Delphi files too. You might be able to just mix languages in the same project. You should try it out. – Binary Worrier May 18 '09 at 11:27
3  
If change is necessary, why wouldn't you switch to delphi 2009 and stay with native UI, the VCL instead of QT? – Ertugrul Kara May 18 '09 at 12:13
Why the need of switching from Delphi to C++ ? You want cross platform ? – Hugues Van Landeghem May 18 '09 at 20:30
Perhaps this is interesting, too: stackoverflow.com/questions/619272/qt-for-delphi-developers – Daniel Rikowski May 19 '09 at 6:09
+1 for switching :) – Piotr Dobrogost May 20 '09 at 22:54

6 Answers

up vote 9 down vote accepted

The best course of action highly depends on the C++ development environment.

If it is C++ Builder you have two possibilities:

  • Use runtime packages instead of normal DLLs. This will spare you much headaches when it comes to string marshalling and mapping class hierarchies to flat DLL functions.

  • Use mixed code. You can mix Delphi/Pascal code with C++ code in the same project. (Only one language in a single module/unit though)

If it is any other C++ compiler:

  • Go the way you proposed with DLLs. You have to create some kind of layer/facade to map your classes' functionality to flat DLL functions.

  • If you want to go the plain DLL way even though you are using C++ Builder you can try using a shared memory manager like ShareMem (comes with Delphi) or FastMM (SourceForge) to allow passing of strings instead of PChars.

  • Create .objs instead of .dcus so both compilers work with the same output format. Then link them directly into you C++ program. This is essentially the same as with creating a DLL, but it's static. You will spot certain kinds of errors at compile time rather than runtime.

share|improve this answer
I'm not happy with it, but I guess that's just the way it is. Thank you everybody for your insights. – Tobias Langner May 20 '09 at 9:25

It's probably easier to go the other way - rewrite the business logic in C++ and call it from Delphi via C interfaces. This is particularly so as one of Delphi's key strengths is working with GUIs.

share|improve this answer

Convert your Delphi application to dll-s. You should figure out some reasonable API and expose it in dll. Then use that dll-s from C++ application.

There is also possibility to create COM+ objects, but they are windows specific technology (because of QT, I presume you intend to create multi platform application).

share|improve this answer

In general, while there are hetero-language options, I always found that freezing the older version, and rewriting a next major version in the new language was more time-efficient in the end.

But I went the other way around. (increasing C++ percentage that I ultimately backported to Delphi)

share|improve this answer

I understand you, because I'm a delphi developer too and I want to migrate too my code to QT framework, that is in c++. I want to reach the cross platform goal: so I discarded the dll solution to keep the original source code, because it force me to hold delphi IDE in standby. I don't wanna go back to write/fix/improve the delphi code again.. I wanna evolve! The only choice I see is to rewrite delphi code in c++ and recompile it with QT creator (in detail, it will be recompiled with g++ mingw compiler invoked by QT creator.)

Rewriting your code will offer you the chance of refactor your classes to going "QTed" compliant. The gui will be totally rewritten too, because VCL is event driven, QT instead is signal driven, but I think that you already know this.

Remember: keeping your delphi code intact and building it into a dll library or compiling it into objs, will force you to keep up delphi source maintenance.

share|improve this answer
Cross platform can be easier achieved with CodeTyphon. It is a powerful one click installation package for cross platform native pascal development. It already supports 4 CPU/OS hosts (Win32, Win64, Linux32, Linux64), and 16 CPU/OS targets (arm-Wince, arm-Linux, arm-Embedded, arm-gba, arm-nds, i386-Win32, i386-Linux, i386-FreeBSD, i386-Haiku, x86_64-Win64, x86_64-Linux, x86_64-FreeBSD, powerpc-Linux, powerpc64-Linux, sparc-Linux, sparc-Solaris). More are supported in Lazarus/FreePascal. pilotlogic.com/sitejoom/… – avra Nov 11 '10 at 11:28

I have the very same need - migrate 9 years old project with about 300K+ lines of code from D2010 to QT 4.6. I decided to do the following:

  1. Port the ADO dependencies to SQLite driver in Delphi using DISql3.
  2. Migrate my MS database to SQLite
  3. Remove the data modules by putting db controls in wrapper data access classes and the other UI-dependent controls like ImageLists in the forms.
  4. Separate clearly the Models (Db access), Views (Forms) and controllers. Begin this way I can start porting the Models and Controllers and gradually perform unit tests
  5. Finally migrate the Views (Forms) to QT dialogs. This is the hardest part since an average app depends on at least 3-4 third party controls. For example I heavily use DevExpress for VCL and I am planning to replace it with QTitan (http://www.devmachines.com/qtitan_grid_overview.php)

Currently I am at stage 2 but pretty confident that the incremental approach will work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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