Wild Idea: A PM clone using the Qt library
Warning: This is only an idea. It is not validated if it can be implemented or not.
Objective
Making an open source clone of the Presentation Manager DLLs by using the Qt resources already ported to OS/2-eCS.
Implementation
The idea will be to create a "fake" PM layer between PM Application and the real PM DLLs, so PM applications will ask for the PM functions to the fake layer first, and if it had not be cloned yet, they will go forward to the original close source PM DLL.
The objective is to have this "fake layer" as a base to clone PM in a progressive way and not doing it in one shot. So one day the "fake layer" will turn to be the "Clonned PM replacement" and the IBM PM DLLs can be phase out.
The idea is that when a PM application asks for a PM function, it will ask the Qt Fake PM layer first. If the function it is available there (already cloned), it will respond to the PM application. If the function it is not yet implemented (cloned), it will send the request to the original source of the PM DLL (provided by IBM OS/2).
The cloned PM functions will be using the Qt library/runtime as a way to do not reinvent the wheel and do not start for scratch.
Benefits
- Using the Qt library may simplify the reuse of components already created instead of creating them by scratch.
- The Qt library is a solid and proved open source library that has good adoption on the development of applications.
Pitfalls
- Qt for OS/2 requires PM. There has to be special attention to which PM functions does the Qt port uses on OS/2-eCS.
- It requires good knowledge of both, PM functions and the Qt functions.