Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a GTK terminal component that can be used under Windows?

Tags:

windows

gtk

I need to build a terminal-like application that needs to be used under my usual Ubuntu install but also under Windows. I've been looking for a terminal component that accepts commands and is able to show some kind of command history together with output.

There is a component called VTE that is used in gnome-terminal, but I have not been able to compile it under Windows because it depends on some Unix-specific functions (as it seems). Do you know of any other terminal-like GTK components that can be built under Windows or some way to build VTE?

like image 967
Thiago Arrais Avatar asked Nov 14 '22 16:11

Thiago Arrais


2 Answers

Maybe you want to look at the old GNOME widget called zvt, it might have been ported to Win32.

like image 170
Johan Dahlin Avatar answered Dec 09 '22 17:12

Johan Dahlin


Gnuplot wxt provides a terminal which is compiled with GTK on X and uses the win32 API on windows. It uses the WxWindows interface to compile into both environments.

like image 38
Chris Avatar answered Dec 09 '22 16:12

Chris