Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Rich Client Platform (RCP) » PopUp CheckBoxes In A Rcp View
PopUp CheckBoxes In A Rcp View [message #453391] Fri, 28 July 2006 06:05 Go to next message
Eclipse UserFriend
Originally posted by: vindhyalesh.huawei.com

hi,
thanks Tom for ur answer,but i forgot to add that i ned a pop up
checkboxes that can respond to user action. what i want is that within a
view,when user has some action,only then this popup check boxes should
come so that user can select whatever he wants. actually i need this as
per our application need. answer please...
again thanks in advance.
Re: PopUp CheckBoxes In A Rcp View [message #453400 is a reply to message #453391] Fri, 28 July 2006 10:03 Go to previous message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
------------------8<------------------
Shell tip = new Shell(parentShell,SWT.ON_TOP| SWT.TOOL);
tip.setLayout(new FillLayout());
tip.setForeground(tip.getSystemColor(SWT.COLOR_INFO_FOREGROU ND));
tip.setBackground(tip.getSystemColor(SWT.COLOR_INFO_BACKGROU ND));
Button b = new Button(tip,SWT.CHECK);
b.setText("Check 1");

b = new Button(tip,SWT.CHECK);
b.setText("Check 2");

tip.open();
------------------8<------------------

Vindhyalesh schrieb:
> hi,
> thanks Tom for ur answer,but i forgot to add that i ned a pop up
> checkboxes that can respond to user action. what i want is that within a
> view,when user has some action,only then this popup check boxes should
> come so that user can select whatever he wants. actually i need this as
> per our application need. answer please...
> again thanks in advance.
>
Previous Topic:Tool For RCP Development
Next Topic:Internacionalization
Goto Forum:
  


Current Time: Sat Oct 12 09:05:24 GMT 2024

Powered by FUDForum. Page generated in 0.03975 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top