Gtkdialog comboboxentry


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Gtkdialog comboboxentry
# 1  
Old 01-16-2014
Gtkdialog comboboxentry

I am new to gtkdialog.

1. In short i need that selection change in one combo box should display different result in another comboboxentry

2. In this current selection from first combobox is being used in second

Code:
 
 
export MAIN_DIALOG=' 
<vbox> 
        <notebook labels="Transfer|Radiobutton|Tree"> 
                <vbox> 
                        <hbox> 
                                <text> 
                                        <label>Project Path :</label> 
                                        <variable>project_path</variable> 
                                </text> 
                        </hbox> 
                        <hbox> 
                                <combobox> 
                                        <label>Select :</label> 
                                        <variable>BGCHFX</variable> 
                                        <item>bg</item> 
                                        <item>ch</item> 
                                        <item>fx</item> 
                                </combobox> 
                                <comboboxentry> 
                                        <label>Select Sequence:</label> 
                                        <default>Sequence</default> 
                                        <variable>SEQUENCE</variable> 
                                        <input>ls /ASE/01prj/AO2/02_shtdev/render/bg/images/</input> 
                                <sensitive>true</sensitive> 
                                </comboboxentry> 
                        </hbox> 
                </vbox> 
        </notebook> 
        <hbox> 
                <button cancel></button> 
                <button ok></button> 
        </hbox> 
</vbox> 
' 
 
gtkdialog --program=MAIN_DIALOG


Hope i am able to get the question through. Let me know if it needs more explanation.

Last edited by Neo; 01-16-2014 at 02:37 PM.. Reason: please use [code] tags
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Solaris

Gtkdialog on Solaris

Is anybody running gtkdialog on solaris system. I have it installed on Ubunutu, but I don-t know is it possible to have it on solaris. If anybody has it, let me kno, I need it ASAP. (5 Replies)
Discussion started by: tiho0505
5 Replies

2. Shell Programming and Scripting

Creating a GUI with GTKDialog

Hello All, I just came across an article, through which we can create GUI menus in unix. Which is far more better than Zenity. Please find the link below: pclosmag.com/html/Issues/200910/page21.html I need help to install this gtkdialog in my ubuntu, so as to use it in shell script,... (1 Reply)
Discussion started by: anand2308
1 Replies
Login or Register to Ask a Question