Package org.onesocialweb.gwt.client.ui.widget

Examples of org.onesocialweb.gwt.client.ui.widget.TooltipPushButton


  private void composeProfile() {

    // compose profile tab
    sectionGeneral = new StyledFlowPanel("section");
    buttonEditG = new TooltipPushButton(new Image(OswClient.getInstance()
        .getPreference("theme_folder")
        + "assets/i-edit.png"), uiText.EditProfile());
    buttonEditG.addStyleName("sectionedit");
    StyledLabel titleG = new StyledLabel("grouplabel", uiText.General());
    sectionGeneral.add(buttonEditG);
View Full Code Here


    }
  }

  private void composeWindow() {

    TooltipPushButton message = new TooltipPushButton(new Image(OswClient
        .getInstance().getPreference("theme_folder")
        + "assets/i-msg.png"), uiText.SendPrivateMessage());
    TooltipPushButton chat = new TooltipPushButton(new Image(OswClient
        .getInstance().getPreference("theme_folder")
        + "assets/i-chat.png"), uiText.ChatWithPerson());
    FlowPanel activities = new FlowPanel();
    FeedPanel activityPanel = new FeedPanel();
    Stream<ActivityEntry> userActivities = OswServiceFactory.getService().getActivities(jid);
View Full Code Here

TOP

Related Classes of org.onesocialweb.gwt.client.ui.widget.TooltipPushButton

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.