Examples of addStyleName()


Examples of org.drools.workbench.screens.guided.rule.client.widget.RuleModellerWidget.addStyleName()

        if ( action instanceof DSLSentence) {
            RuleModellerWidget w = new DSLSentenceWidget( ruleModeller,
                                                          eventBus,
                                                          (DSLSentence) action,
                                                          readOnly );
            w.addStyleName( "model-builderInner-Background" ); //NON-NLS
            return w;
        }
        if ( action instanceof FreeFormLine) {
            return new FreeFormLineWidget( ruleModeller,
                                           eventBus,
View Full Code Here

Examples of org.eurekastreams.web.client.ui.common.PersonPanel.addStyleName()

            {
                // short-circuit as this Person is non-removable
                return panel;
            }

            panel.addStyleName(StaticResourceBundle.INSTANCE.coreCss().removablePerson());

            Label deleteLink = new Label("Remove");
            deleteLink.addStyleName(StaticResourceBundle.INSTANCE.coreCss().linkedLabel());
            deleteLink.addStyleName(StaticResourceBundle.INSTANCE.coreCss().delete());
            panel.add(deleteLink);
View Full Code Here

Examples of org.eurekastreams.web.client.ui.common.SpinnerLabelButton.addStyleName()

                                              new ShowNotificationEvent(new Notification(
                                                      "Your request for access has been sent")));
                          }
                      });
 
              button.addStyleName(StaticResourceBundle.INSTANCE.coreCss().requestAccessButton());
              errorPanel.add(button);
 
              streamPanel.clear();
              unseenActivityNotificationPanel.setActive(true);
          }
View Full Code Here

Examples of org.eurekastreams.web.client.ui.common.avatar.AvatarWidget.addStyleName()

    {
        clear();
        this.setVisible(true);
        Widget avatar = new AvatarWidget(Session.getInstance().getCurrentPerson().getAvatarId(), EntityType.PERSON,
                Size.VerySmall);
        avatar.addStyleName(StaticResourceBundle.INSTANCE.coreCss().avatar());
        this.add(avatar);

        FlowPanel body = new FlowPanel();
        body.addStyleName(StaticResourceBundle.INSTANCE.coreCss().body());
View Full Code Here

Examples of org.eurekastreams.web.client.ui.common.dialog.Dialog.addStyleName()

        {
            public void onClick(final ClickEvent arg0)
            {
                DialogContent dialogContent = new LikersDialogContent(currentActivityId);
                Dialog dialog = new Dialog(dialogContent);
                dialog.addStyleName(StaticResourceBundle.INSTANCE.coreCss().likerModal());
                dialog.showCentered();
            }

        });
View Full Code Here

Examples of org.eurekastreams.web.client.ui.common.form.elements.BasicCheckBoxFormElement.addStyleName()

        BasicCheckBoxFormElement sendEmails = new BasicCheckBoxFormElement("", "sendWelcomeEmails",
                "Send email invitations to new users as their accounts are created.", false,
                systemSettingValues.getSendWelcomeEmails());

        sendEmails.addStyleName(StaticResourceBundle.INSTANCE.coreCss().welcomeEmailCheckbox());

        membershipRefreshButton = initializeRefreshButton();

        FlowPanel clearPanel = new FlowPanel();
View Full Code Here

Examples of org.eurekastreams.web.client.ui.common.form.elements.ShortnameFormElement.addStyleName()

        ShortnameFormElement shortName = new ShortnameFormElement("Group Web Address",
                DomainGroupModelView.SHORT_NAME_KEY, "", "http://" + Window.Location.getHost() + "/groups/",
                "Please restrict your group's name in the web address "
                        + "to 20 lower case alpha numeric characters without spaces.", true);
        shortName.addStyleName(StaticResourceBundle.INSTANCE.coreCss().groupShortName());
        form.addFormElement(shortName);

        form.addFormDivider();

        form.addFormElement(new BasicTextAreaFormElement(DomainGroup.MAX_DESCRIPTION_LENGTH, "Description",
View Full Code Here

Examples of org.eurekastreams.web.client.ui.common.pagedlist.PagedListPanel.addStyleName()

        final String pendingGroupsFilterName = "Group Requests";

        // set up the tab itself
        final PagedListPanel adminTabContent = new PagedListPanel("pending", new SingleColumnPagedListRenderer(),
                "tab", "Pending");
        adminTabContent.addStyleName(StaticResourceBundle.INSTANCE.coreCss().pendingTabContent());

        // wire up the data retrieval events
        eventBus.addObserver(GotFlaggedActivitiesResponseEvent.class, new Observer<GotFlaggedActivitiesResponseEvent>()
        {
            public void update(final GotFlaggedActivitiesResponseEvent event)
View Full Code Here

Examples of org.eurekastreams.web.client.ui.connect.support.StreamPanel.addStyleName()

        {
            {
                setCreatePermalink(false);
            }
        });
        streamPanel.addStyleName(StaticResourceBundle.INSTANCE.coreCss().embeddedWidget());
        streamPanel.addStyleName(StaticResourceBundle.INSTANCE.coreCss().eurekaConnectReadStreamWidget());

        CreateUrlRequest linkInfo = determineStreamLink(jsonRequest);
        if (linkInfo != null)
        {
View Full Code Here

Examples of org.eurekastreams.web.client.ui.pages.profile.settings.stream.StreamPluginsSettingsTabContent.addStyleName()

        GroupProfileSettingsTabContent profileTabContent = new GroupProfileSettingsTabContent(groupName);
        profileTabContent.addStyleName(StaticResourceBundle.INSTANCE.coreCss().profileSettingsTabContent());

        StreamPluginsSettingsTabContent streamSettingsTabContent = new StreamPluginsSettingsTabContent(
                GroupStreamPluginSubscriptionModel.getInstance());
        streamSettingsTabContent.addStyleName(StaticResourceBundle.INSTANCE.coreCss().profileSettingsTabContent());

        portalPage.addTab(new SimpleTab("Basic Info", profileTabContent));
        portalPage.addTab(new SimpleTab("Stream Plugins", streamSettingsTabContent));
        portalPage.init();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.