I want to pop a window once user clicks on the menu item. Similar to the event: when a user clicks on Apps->App Manager we are getting a popup window. Similar popup window is required.
How to build the code using Simple App procedure. I have added a action to the App->SimpleClickapp. On selecting the menu, how to write the code in actionPerformed(ActionEvent e) so that i can get a JFrame or JDialog Popup window. I can design the POP-up window, but i am not able to understand how to get that window.
I want to pop a window once user clicks on the menu item. Similar to the
> event: when a user clicks on Apps->App Manager we are getting a popup
> window. Similar popup window is required.
> How to build the code using Simple App procedure. I have added a action to
> the App->SimpleClickapp. On selecting the menu, how to write the code in
> actionPerformed(ActionEvent e) so that i can get a JFrame or JDialog Popup
> window. I can design the POP-up window, but i am not able to understand how
> to get that window.
The process is the same as with any other Swing application. For example:
public void actionPerformed(ActionEvent event) {
JDialog dialog = new JDialog();
dialog.add(new JLabel("Hello!"));
dialog.pack();
dialog.setVisible(true);
Thanks for the information. Can you tell me some List of Cytoscape 3 application's which are developed in Simple App Procedure, so that i can use them as reference.
On Thursday, 13 September 2012 21:05:27 UTC+5:30, Jason Montojo wrote:
> Hi Girish,
> I want to pop a window once user clicks on the menu item. Similar to the >> event: when a user clicks on Apps->App Manager we are getting a popup >> window. Similar popup window is required.
>> How to build the code using Simple App procedure. I have added a action >> to the App->SimpleClickapp. On selecting the menu, how to write the code in >> actionPerformed(ActionEvent e) so that i can get a JFrame or JDialog Popup >> window. I can design the POP-up window, but i am not able to understand how >> to get that window.
> The process is the same as with any other Swing application. For example:
I'm not aware of any full-fledged Cytoscape 3 apps that have been developed
as simple apps. The ones I know of are all bundle apps. However, we do
have some toy examples here:
On Thu, Sep 13, 2012 at 3:01 PM, girishanem <girisha...@gmail.com> wrote:
> Hi Jason,
> Thanks for the information. Can you tell me some List of Cytoscape 3
> application's which are developed in Simple App Procedure, so that i can
> use them as reference.
> Thanks,
> Regards
> Girish Anem
> On Thursday, 13 September 2012 21:05:27 UTC+5:30, Jason Montojo wrote:
>> Hi Girish,
>> I want to pop a window once user clicks on the menu item. Similar to the
>>> event: when a user clicks on Apps->App Manager we are getting a popup
>>> window. Similar popup window is required.
>>> How to build the code using Simple App procedure. I have added a action
>>> to the App->SimpleClickapp. On selecting the menu, how to write the code in
>>> actionPerformed(ActionEvent e) so that i can get a JFrame or JDialog Popup
>>> window. I can design the POP-up window, but i am not able to understand how
>>> to get that window.
>> The process is the same as with any other Swing application. For example:
> To post to this group, send email to cytoscape-discuss@googlegroups.com.
> To unsubscribe from this group, send email to
> cytoscape-discuss+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/cytoscape-discuss?hl=en.
I went through these examples, but these are very limited examples. Any way, i will post in the form for help, if i face any problem in Simple App development procedure.
On Friday, 14 September 2012 00:41:25 UTC+5:30, Jason Montojo wrote:
> Hi Girish,
> I'm not aware of any full-fledged Cytoscape 3 apps that have been > developed as simple apps. The ones I know of are all bundle apps. > However, we do have some toy examples here:
> All the samples whose name ends with "a" (for example, sample02a) are > simple apps.
> Hope this helps, > Jason
> On Thu, Sep 13, 2012 at 3:01 PM, girishanem <giris...@gmail.com<javascript:> > > wrote:
>> Hi Jason,
>> Thanks for the information. Can you tell me some List of Cytoscape 3 >> application's which are developed in Simple App Procedure, so that i can >> use them as reference.
>> Thanks, >> Regards >> Girish Anem
>> On Thursday, 13 September 2012 21:05:27 UTC+5:30, Jason Montojo wrote:
>>> Hi Girish,
>>> I want to pop a window once user clicks on the menu item. Similar to the >>>> event: when a user clicks on Apps->App Manager we are getting a popup >>>> window. Similar popup window is required.
>>>> How to build the code using Simple App procedure. I have added a action >>>> to the App->SimpleClickapp. On selecting the menu, how to write the code in >>>> actionPerformed(ActionEvent e) so that i can get a JFrame or JDialog Popup >>>> window. I can design the POP-up window, but i am not able to understand how >>>> to get that window.
>>> The process is the same as with any other Swing application. For >>> example:
>> To post to this group, send email to cytoscap...@googlegroups.com<javascript:> >> . >> To unsubscribe from this group, send email to >> cytoscape-disc...@googlegroups.com <javascript:>. >> For more options, visit this group at >> http://groups.google.com/group/cytoscape-discuss?hl=en.