Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Visual Editor (VE) » Visualize a custom composite in VE
Visualize a custom composite in VE [message #610319] Wed, 17 August 2005 14:22
hung is currently offline hungFriend
Messages: 117
Registered: July 2009
Senior Member
Hello,

I have a custom composite that has some private setting data, getters/setters for those settings,
and a render method that basically creates the content of this composite based on the settings.

In VE, when you DND this custom composite from the palette, we generate the following code :

private void createMyCustomComposite()
{
myComposite = new MyCustomComposite(this, SWT.NONE);
myComposite.setComponentClassName("input");
myComposite.setWidgetClassName("text");
myComposite.render();
myComposite.setBounds(new org.eclipse.swt.graphics.Rectangle(51,22,179,78));
}

In VE, the render() method doesn't seem to get called, so the custom composite is displayed as blank.

If I call the render() method inside the setComponentClassName() or setWidgetClassName() methods,
then this render() method gets called, and I was able to see my custom composite gets rendered.

Can anyone help? thanks.
Previous Topic:Opening the jave class in ve programmatically
Next Topic:Visualize a custom composite in VE
Goto Forum:
  


Current Time: Mon Sep 23 04:50:04 GMT 2024

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

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

Back to the top