Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
How to create a pop up window for a app
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  5 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
girishanem  
View profile  
 More options Sep 13 2012, 6:08 am
From: girishanem <girisha...@gmail.com>
Date: Thu, 13 Sep 2012 03:08:31 -0700 (PDT)
Local: Thurs, Sep 13 2012 6:08 am
Subject: How to create a pop up window for a app

Hi,

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.

Regards,
Girish Anem


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jason Montojo  
View profile  
 More options Sep 13 2012, 11:35 am
From: Jason Montojo <jrr...@gmail.com>
Date: Thu, 13 Sep 2012 11:35:25 -0400
Local: Thurs, Sep 13 2012 11:35 am
Subject: Re: [Cytoscape-discuss] How to create a pop up window for a app

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:

public void actionPerformed(ActionEvent event) {
    JDialog dialog = new JDialog();
    dialog.add(new JLabel("Hello!"));
    dialog.pack();
    dialog.setVisible(true);

}

Hope this helps,
Jason

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
girishanem  
View profile  
 More options Sep 13 2012, 3:01 pm
From: girishanem <girisha...@gmail.com>
Date: Thu, 13 Sep 2012 12:01:00 -0700 (PDT)
Subject: Re: [Cytoscape-discuss] How to create a pop up window for a app

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


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jason Montojo  
View profile  
 More options Sep 13 2012, 3:11 pm
From: Jason Montojo <jrr...@gmail.com>
Date: Thu, 13 Sep 2012 15:11:22 -0400
Local: Thurs, Sep 13 2012 3:11 pm
Subject: Re: [Cytoscape-discuss] How to create a pop up window for a app

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:

http://chianti.ucsd.edu/svn/core3/samples/trunk/

All the samples whose name ends with "a" (for example, sample02a) are
simple apps.

Hope this helps,
Jason


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
girishanem  
View profile  
 More options Sep 13 2012, 3:38 pm
From: girishanem <girisha...@gmail.com>
Date: Thu, 13 Sep 2012 12:38:21 -0700 (PDT)
Local: Thurs, Sep 13 2012 3:38 pm
Subject: Re: [Cytoscape-discuss] How to create a pop up window for a app

Hi Jason,

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.

Thanks,
Regards
Girish Anem


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »