Package com.salas.bb.views.feeds.html

Examples of com.salas.bb.views.feeds.html.ArticlesGroup


        {
            articleGroupPopupAdapter = new PopupAdapter()
            {
                protected JPopupMenu buildPopupMenu(MouseEvent anevent)
                {
                    ArticlesGroup ag = (ArticlesGroup)anevent.getSource();
                    MarkArticlesGroupAction.setGroup(ag);

                    JPopupMenu menu = new NonlockingPopupMenu(Strings.message("ui.popup.article.groups"));

                    menu.add(ActionManager.get(ActionsTable.CMD_ARTICLEGROUP_MARK_READ));
View Full Code Here


            // Init groups
            groups = new ArticlesGroup[model.getGroupsCount()];
            for (int i = 0; i < model.getGroupsCount(); i++)
            {
                groups[i] = new ArticlesGroup(model.getGroupName(i), config.getGroupPopupAdapter());
                groups[i].setFont(config.getGroupDividerFont());
            }

            updateGroupsSettings();
            updateSortingOrder();
View Full Code Here

TOP

Related Classes of com.salas.bb.views.feeds.html.ArticlesGroup

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.