Sponsored Content
Top Forums Shell Programming and Scripting gui based appliocation using shell script Post 302374951 by vij_krr on Thursday 26th of November 2009 03:36:10 AM
Old 11-26-2009
gui based appliocation using shell script

hi,
i've to write a shript based application which should gives a look and feel like a GUI. can any one give me a base idea on how to design a GUI based application using shell script.

Regards,
vijaySmilie
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

If a is windows gui ( client), b is a unix gui ( Server for a) and c is a shell scrip

Hello all, 1) I want to have a GUI application that will call Unix shell scripts, 2) that GUI application should be able to reside on windows ( if possible) and then call Unix shell script either directly or through a server residing on unix. That is for example. If a is windows gui (... (1 Reply)
Discussion started by: hchivukula
1 Replies

2. UNIX for Advanced & Expert Users

GUI Based RPM

Hi, How to create GUI based RPM. I am using Red Hat.. Please explain in detail. Thanks Kammy. (1 Reply)
Discussion started by: kjannu
1 Replies

3. Shell Programming and Scripting

Controlling GUI from Shell Script

Hi Everybody, I previously posted this under Unix for dummies and got no answers, so here goes again: I'm trying to create a script that will launch firefox from a bash shell in ubuntu and perform certain tasks. Why does it have to be a script? Because this firefox must eventually run in a... (0 Replies)
Discussion started by: rummage_bin
0 Replies

4. UNIX for Dummies Questions & Answers

Controlling GUI from Shell Script

Hi Everybody, I'm trying to create a script that will launch firefox from a bash shell in ubuntu and perform certain tasks. Why does it have to be a script? Because this firefox must eventually run in a server with xvfb (no gnome, no kde), so I will not have access to it through the GUI. At... (2 Replies)
Discussion started by: rummage_bin
2 Replies

5. Shell Programming and Scripting

GUI shell script for Linux

Hi, I want to write shell script file that have a GUI with multiple input box for user entry , i mean multiple input box in one dialog ( window) not one window for each entry , i tried kdialog , and zenity , i didnt find a way to have multiple input box in one window with zenity and kdialog.... (0 Replies)
Discussion started by: mr_aliagha
0 Replies

6. Shell Programming and Scripting

GUI possible in shell script..?

Hi All, Currently my requirement is to parse through the log scripts and show the errors to the user.The only twist I got is it needs some GUI ,which is considered user friendly. Does anyone has any idea , if GUI can be implemented through shell scripts, please let me know. Thanks! nua7 (5 Replies)
Discussion started by: nua7
5 Replies

7. Shell Programming and Scripting

Interfacing a shell script with Perl Tk GUI

I want to make a GUI in perl tk where I can give some user input. This user input is the command line argument for a shell script. After giving the input parameters I want the user to press a button and the shell script should start executing. How should i interface the shell script with the GUI? (0 Replies)
Discussion started by: lassimanji
0 Replies

8. Shell Programming and Scripting

Create A Simple GUI For Shell Script

Hi all! Im wondering if its possible to create a GUI for a shell script I just got done writing as the people that will be using it dont like the command line all to well. Just something simple with radio buttons to select options, maybe a text field to enter a location to save the file generated... (1 Reply)
Discussion started by: Grizzly
1 Replies

9. Shell Programming and Scripting

GUI Shell Script Mac OS X - Working Directory

Hi. I'm pretty new to shell scripting. All I want to do is have a simple shell script that opens a python script from the GUI i.e. when I double click the shell script it will launch the python file. However when I try to do this it looks for the python file in my home directory, I have tried... (1 Reply)
Discussion started by: whatg
1 Replies

10. Shell Programming and Scripting

Shell Script and Progress Bar or GUI Wrapper

Hi, I have shell script that I am running under Ubuntu as root. Is it possible to hide the command window and show the user some sort of progress /random progress bar / or other form of GUI interaction? On MAC, I have been using Platypus but on Ubuntu I am not sure what to do. (4 Replies)
Discussion started by: naveedanwar4u
4 Replies
EMBOSS::GUI::XHTML(3pm) 				User Contributed Perl Documentation				   EMBOSS::GUI::XHTML(3pm)

NAME
EMBOSS::GUI::XHTML - generate HTML for EMBOSS::GUI AUTHOR
Luke McCarthy <lukem@gene.pbi.nrc.ca> SYNOPSIS
Not for public consumption. Use EMBOSS::GUI instead. DESCRIPTION
EMBOSS::GUI::XHTML generates the HTML required by EMBOSS::GUI. The appearance of EMBOSS::GUI can be customized by editing or replacing the default style sheet. There is very little that cannot be accomplished in this way. If new HTML is absolutely required, simply create a new module that provides the methods described below and specify the new module in the EMBOSS::GUI constructor. Public methods are described below: new(%args) Returns a new EMBOSS::GUI::XHTML object. %args is a hash of optional named arguments. The following arguments are %recognized: static => $boolean If $boolean is true, the generated HTML will assume that, where possible, the pages of the interface have been generated statically and will be linked appropriately. See also the mkstatic script in the EMBOSS::GUI distribution. frames => $boolean If $boolean is true, the generated HTML will assume that the main menu is in its own frame and doesn't have to be added to each page. script_url => $url Specifies the URL of the main EMBOSS::GUI CGI script. This parameter is required if static pages are generated, otherwise the URL will be determined from the CGI environment. style_url => $url Specifies the URL of the style sheet to use. image_url => $url Specifies a URL prefix to place before image links. manual_url => $url Specifies a URL prefix to place before manual links. This prefix is only used if static pages are generated. intro_page() Generates an introductory page describing EMBOSS and the GUI. menu_page(@entries) Generates the main menu page. @entries is either a list of applications as returned by EMBOSS::GUI::apps(), or a list of groups as returned by EMBOSS::GUI::groups(). input_page($acd, $hide_optional) Generates the application-specific input page. $acd is an EMBOSS::ACD object that describes the application. $hide_optional is a boolean value that determines whether optional parameters (also called additional parameters in the EMBOSS documenation) will appear in the input page. input_page($output_dir) Generates an output page based on the contents of the specified directory. $output_dir is a directory containing the output of an EMBOSS application. manual_page($app, $manual) Generates the application-specific manual page. $app is the name of the application. $manual_html is the full text of the HTML application manual. default_output_page($refresh_delay) Generates the default output page to be used as a placeholder until the application has finished running and the actual output is available. $refresh_delay is the number of seconds to wait between page reloads. error_page(@error) Generates an error page. @error is the text of the error message. All elements of the list are joined into a single string, so this method has the same syntax as print, warn, die, etc. frameset_page() Generates a page that sets up the menu and main content frames. BUGS
If the user has asked to see only required fields, sections containing only optional fields will still be visible, even though the fields they contain are hidden. Fixing this requires better section handling in EMBOSS::ACD. COPYRIGHT
Copyright (c) 2004 Luke McCarthy. All rights reserved. This program is free software. You may copy or redistribute it under the same terms as Perl itself. perl v5.14.2 2013-09-16 EMBOSS::GUI::XHTML(3pm)
All times are GMT -4. The time now is 11:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy