How can I scale an application to fit a specific size (Linux)

0

I have an old gui application that is hard coded to 1280x1024 and I would like to display it full screen on a 1920x1200 monitor. Are there any relatively simple ways of forcing the application to be 'stretched' to fit the screen size? It seems like X11 would have some way of handling this. I am using debian with twm.

JeffCharter

Posted 2012-08-21T22:36:58.393

Reputation: 101

Is tweaking the source an option? Have you tried Alt+middle click and dragging it (you never know)? – terdon – 2012-08-22T01:00:37.547

Yes, modifying the source is an option (c++ w/ motif). The application is run in a kiosk type setting, so I am looking for a way to actually start the application stretched to match the monitor resolution. – JeffCharter – 2012-08-22T15:34:10.860

Sorry I have no C++ fu, sometimes though, the simple approach works. Try searching for 1280 in the code. You never know... – terdon – 2012-08-22T15:36:52.860

No answers