Examples of ButtonList


Examples of com.googlecode.jumpnevolve.graphics.gui.container.ButtonList

    this.parent = parent;
    this.gui = new MainGUI(this);
    this.gui.maximizeSize();

    // Liste mit Spielfiguren erstellen
    ButtonList selectList = new ButtonList(2, 10);
    selectList.addButton(new InterfaceButton(
        InterfaceFunctions.FIGURE_ROLLING_BALL, Input.KEY_1,
        "object-pictures/figure-rolling-ball.png"));
    selectList.addButton(new InterfaceButton(
        InterfaceFunctions.FIGURE_JUMPING_CROSS, Input.KEY_2,
        "object-pictures/figure-cross.png"));

    // Finish-Dialog erstellen
    this.finishDialog = new Dialog();
View Full Code Here

Examples of com.googlecode.jumpnevolve.graphics.gui.container.ButtonList

    // Löschen-Button erstellen
    InterfaceButton deleteButton = new InterfaceButton(
        InterfaceFunctions.EDITOR_DELETE, "interface-icons/delete.png");

    // Auswahlliste für die GameObjects erstellen
    ButtonList selectList = new ButtonList(6, 10);
    for (GameObjects obj : GameObjects.values()) {
      selectList.addButton(new InterfaceButton(obj,
          obj.editorSkinFileName));
    }

    // BorderContainer für die Oberfläche erstellen und befüllen
    BorderContainer border = new BorderContainer();
View Full Code Here

Examples of com.sun.star.wizards.ui.ButtonList

                        new Short(curtabindex++),
                        new Integer(207)
                    });

            int nypos = SOBASEIMAGEYPOSITION + 12 - 5 + _formindex * SOIMAGELISTHEIGHT;
            m_aButtonList = new ButtonList();
            m_aButtonList.setPos(new Size(107, nypos));
            m_aButtonList.setButtonSize(new Size(26 + 6, 26 + 5));
            m_aButtonList.setCols(4);
            m_aButtonList.setRows(1);
            m_aButtonList.setName( "ButtonList_" + formindex );
View Full Code Here

Examples of com.sun.star.wizards.ui.ButtonList

                        new Short(curtabindex++),
                        207
                    });

            int nypos = SOBASEIMAGEYPOSITION + 12 - 5 + _formindex * SOIMAGELISTHEIGHT;
            m_aButtonList = new ButtonList();
            m_aButtonList.setPos(new Size(107, nypos));
            m_aButtonList.setButtonSize(new Size(26 + 6, 26 + 5));
            m_aButtonList.setCols(4);
            m_aButtonList.setRows(1);
            m_aButtonList.setName( "ButtonList_" + formindex );
View Full Code Here

Examples of com.sun.star.wizards.ui.ButtonList

                        new Short(curtabindex++),
                        new Integer(207)
                    });

            int nypos = SOBASEIMAGEYPOSITION + 12 - 5 + _formindex * SOIMAGELISTHEIGHT;
            m_aButtonList = new ButtonList();
            m_aButtonList.setPos(new Size(107, nypos));
            m_aButtonList.setButtonSize(new Size(26 + 6, 26 + 5));
            m_aButtonList.setCols(4);
            m_aButtonList.setRows(1);
            m_aButtonList.setName( "ButtonList_" + formindex );
View Full Code Here

Examples of com.sun.star.wizards.ui.ButtonList

                        new Short(curtabindex++),
                        new Integer(207)
                    });

            int nypos = SOBASEIMAGEYPOSITION + 12 - 5 + _formindex * SOIMAGELISTHEIGHT;
            m_aButtonList = new ButtonList();
            m_aButtonList.setPos(new Size(107, nypos));
            m_aButtonList.setButtonSize(new Size(26 + 6, 26 + 5));
            m_aButtonList.setCols(4);
            m_aButtonList.setRows(1);
            m_aButtonList.setName( "ButtonList_" + formindex );
View Full Code Here

Examples of de.agilecoders.wicket.core.markup.html.bootstrap.button.ButtonList

        add(new CssClassNameAppender("dropdown"));
    }

    @Override
    protected Component createContent(String markupId) {
        return new ButtonList(markupId, getModel());
    }
View Full Code Here

Examples of de.agilecoders.wicket.core.markup.html.bootstrap.button.ButtonList

     *
     * @param markupId The component id
     * @return new button list instance
     */
    protected ButtonList newButtonList(final String markupId) {
        return new ButtonList(markupId, newPaginationButtons(ButtonList.getButtonMarkupId()));
    }
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.