Alain--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.
--
package com.ibal.cervello.client;import com.ibal.cervello.client.views.AddInvoice;import com.ibal.cervello.client.views.MenuBar;import com.eemi.gwt.tour.client.GwtTour;import com.eemi.gwt.tour.client.Placement;import com.eemi.gwt.tour.client.Tour;import com.eemi.gwt.tour.client.TourStep;import com.github.gwtbootstrap.client.ui.Button;import com.github.gwtbootstrap.client.ui.constants.IconType;import com.google.gwt.core.client.EntryPoint;import com.google.gwt.event.dom.client.ClickEvent;import com.google.gwt.event.dom.client.ClickHandler;import com.google.gwt.user.client.ui.RootPanel;/*** Entry point classes define <code>onModuleLoad()</code>.*/public class Cervello implements EntryPoint {/*** This is the entry point method.*/public void onModuleLoad() {RootPanel.get().add(new MenuBar());RootPanel.get().add(new AddInvoice());Button btnTour = new Button("Test Tour");btnTour.setBaseIcon(IconType.ENVELOPE);RootPanel.get().add(btnTour);// Define the tour!final Tour tour = new Tour("myTour");TourStep step = new TourStep(Placement.LEFT, btnTour);step.setContent("Test button");step.setTitle("Comment");tour.addStep(step);// Start the tour!btnTour.addClickHandler(new ClickHandler() {@Overridepublic void onClick(ClickEvent event) {GwtTour.startTour(tour);}});}}
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsub...@googlegroups.com.
/**
* This is the entry point method.
*/
public void onModuleLoad() {
final Button sendButton = new Button("Send");
RootPanel.get().add(sendButton);
final Tour tour = new Tour("my-Tour");
TourStep step = new TourStep(Placement.RIGHT, sendButton);
step.setTitle("Test");
step.setContent("Hello");
tour.addStep(step);
sendButton.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
GwtTour.startTour(tour);
}
});
}
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
--
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsub...@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsub...@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsub...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.
TourStep step1 = new TourStep("header", Placement.BOTTOM);
TourStep step = new TourStep(Placement.BOTTOM, "gwt-tour-title");
thanks!To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "Google Web Toolkit" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-web-toolkit/FXzc-mvNDMQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-web-tool...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.