There are a few command line applications for which I would like to have a GUI, or for which I've found a GUI I'm just not happy with. I use mencoder and transcode a bit but I'm not happy with the GUI frontends I've found for those applications. I also have a friend who is interested in the Astrolog astrology application but who is very unhappy with the command line interface, a potential Linux convert if a GUI can be discovered. KAstrolog has been out of development for so long I can't seem to compile the thing.
I haven't written any code in ten years so I'm looking for something to create GUI Frontends without too much programming experience.
____________________________________________________________________________________ Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs
On Jan 18, 2008 12:32 PM, Leo Mauler webgiant@yahoo.com wrote:
There are a few command line applications for which I would like to have a GUI, or for which I've found a GUI I'm just not happy with. I use mencoder and transcode a bit but I'm not happy with the GUI frontends I've found for those applications. I also have a friend who is interested in the Astrolog astrology application but who is very unhappy with the command line interface, a potential Linux convert if a GUI can be discovered. KAstrolog has been out of development for so long I can't seem to compile the thing.
I haven't written any code in ten years so I'm looking for something to create GUI Frontends without too much programming experience.
Python + PyGtk + Glade can be pretty quick
On Fri, 2008-01-18 at 12:46 -0600, Arthur Pemberton wrote:
On Jan 18, 2008 12:32 PM, Leo Mauler webgiant@yahoo.com wrote:
There are a few command line applications for which I would like to have a GUI, or for which I've found a GUI I'm just not happy with. I use mencoder and transcode a bit but I'm not happy with the GUI frontends I've found for those applications. I also have a friend who is interested in the Astrolog astrology application but who is very unhappy with the command line interface, a potential Linux convert if a GUI can be discovered. KAstrolog has been out of development for so long I can't seem to compile the thing.
I haven't written any code in ten years so I'm looking for something to create GUI Frontends without too much programming experience.
Python + PyGtk + Glade can be pretty quick
I'm a fan of MonoDevelop, if you want to go the managed code route. It's incredibly easy to use, and I'm sure there are ways of running a command and capturing output, although I admit that I don't know what they are.
Of course, Glade is a wonderful application that will fit your needs. If you want to have an IDE that does most of the project work for you, I recommend Anjuta. It has Glade built right in, and works great for simple applications, especially if you plan to write code in C.
Hope that helps.
--Jestin
Are wanting to create like a single page GUI with checkboxes for individual features and maybe a browse box to point to the files to act on?
I've often wondered what would be a good tool to create something like this. I think I would also have the command that you are building display on the window as you add options and then you could copy and paste into a script or to a console window.
-----Original Message----- From: Leo Mauler
There are a few command line applications for which I would like to have a GUI, or for which I've found a GUI I'm just not happy with. I use mencoder and transcode a bit but I'm not happy with the GUI frontends I've found for those applications. I also have a friend who is interested in the Astrolog astrology application but who is very unhappy with the command line interface, a potential Linux convert if a GUI can be discovered. KAstrolog has been out of development for so long I can't seem to compile the thing.
I haven't written any code in ten years so I'm looking for something to create GUI Frontends without too much programming experience.
--- "Kelsay, Brian - Kansas City, MO" brian.kelsay@kcc.usda.gov wrote:
Are wanting to create like a single page GUI with checkboxes for individual features and maybe a browse box to point to the files to act on?
That would be good enough for some of the things I had in mind. For example, Astrolog has built-in graphics support, so all a user needs is something to make selecting the right command line options a lot easier. Astrolog wouldn't even need a browse box.
A GUI for mencoder and transcode would make it a little easier to play around with conversion options, such as tweaking the home movies to fit on a single DVD when normal DVD settings would require two DVDs.
I've often wondered what would be a good tool to create something like this. I think I would also have the command that you are building display on the window as you add options and then you could copy and paste into a script or to a console window.
Interesting, I hadn't thought of a tool which created the command line text for you to cut-and-paste into a window, but it is a good idea. I suppose it is roughly what I had in mind in the first place, as all I envisioned was a GUI which stepped in, made selecting command line program options easier, and then ran the complete command line command as the GUI exited itself.
-----Original Message----- From: Leo Mauler
There are a few command line applications for which I would like to have a GUI, or for which I've found a GUI I'm just not happy with. I use mencoder and transcode a bit but I'm not happy with the GUI frontends I've found for those applications. I also have a friend who is interested in the Astrolog astrology application but who is very unhappy with the command line interface, a potential Linux convert if a GUI can be discovered. KAstrolog has been out of development for so long I can't seem to compile the thing.
I haven't written any code in ten years so I'm looking for something to create GUI Frontends without too much programming experience.
____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
Depending on how simple you want, you could go with bash + dialog or kdialog. It's an easy way to make all of those command line options mouse-clickable, doesn't require any compiling, and will be easy to move from machine to machine. But... you obviously can't do anything fancy with this combo.
~Bradley
Leo Mauler wrote:
There are a few command line applications for which I would like to have a GUI, or for which I've found a GUI I'm just not happy with. I use mencoder and transcode a bit but I'm not happy with the GUI frontends I've found for those applications. I also have a friend who is interested in the Astrolog astrology application but who is very unhappy with the command line interface, a potential Linux convert if a GUI can be discovered. KAstrolog has been out of development for so long I can't seem to compile the thing.
I haven't written any code in ten years so I'm looking for something to create GUI Frontends without too much programming experience.
____________________________________________________________________________________
Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs _______________________________________________ Kclug mailing list Kclug@kclug.org http://kclug.org/mailman/listinfo/kclug
It sounds like you were reading my mind. "Quick and dirty and works" is perfect for now.
--- Bradley Hook bhook@kssb.net wrote:
Depending on how simple you want, you could go with bash + dialog or kdialog. It's an easy way to make all of those command line options mouse-clickable, doesn't require any compiling, and will be easy to move from machine to machine. But... you obviously can't do anything fancy with this combo.
~Bradley
Leo Mauler wrote:
There are a few command line applications for which I would like to have a GUI, or for which I've found a GUI I'm just not happy with. I use mencoder and transcode a bit but I'm not happy with the GUI frontends I've found for those applications. I also have a friend who is interested in the Astrolog astrology application but who is very unhappy with the command line interface, a potential Linux convert if a GUI can be discovered. KAstrolog has been out of development for so long I can't seem to compile the thing.
I haven't written any code in ten years so I'm looking for something to create GUI Frontends without too much programming experience.
____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
On 1/18/08, Leo Mauler webgiant@yahoo.com wrote:
I haven't written any code in ten years so I'm looking for something to create GUI Frontends without too much programming experience.
Zenity is designed exactly for this purpose and comes as a part of Gnome. It is rather old but its limited functionality is almost certainly exactly what you're looking for. The other solutions proposed would be using a cannonball to kill a fly. You could use Monodevelop or Glade if you want to learn C#, Python/Ruby or C, but why bother if you don't have to?