Package com.gadglet.gadgets.docsFolder.client

Source Code of com.gadglet.gadgets.docsFolder.client.DocsFolderGadget

/**
* Copyright (C)  Gadglet .
*
* This file is part of Gadglet
*
* Gadglet is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Gadglet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Gadglet. If not, see <http://www.gnu.org/licenses/>.
*/

package com.gadglet.gadgets.docsFolder.client;


import com.gadglet.client.gwt.GadgetConfig;
import com.gadglet.client.gwt.ui.HomeViewMainPanel;
import com.google.gwt.gadgets.client.Gadget;
import com.google.gwt.gadgets.client.Gadget.AllowHtmlQuirksMode;
import com.google.gwt.gadgets.client.Gadget.InjectModulePrefs;
import com.google.gwt.gadgets.client.Gadget.UseLongManifestName;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.gadgets.client.Gadget.InjectContent;


@InjectModulePrefs(files = "prefInject.txt")
@InjectContent(files="content.html")

// Create a short manifest name (instead of prepending the package prefix)
@UseLongManifestName(false)
@AllowHtmlQuirksMode(false)

public class DocsFolderGadget extends Gadget<DocsFolderPreferences>{
 
 
  public static final HomeViewMainPanel mainPanel = new HomeViewMainPanel();
  public static final FoldersTree DF = new FoldersTree(mainPanel);
  public static final DocsList DL = new DocsList(mainPanel);
 
  @Override
protected void init(final DocsFolderPreferences prefs) {
  
    GadgetConfig gc = GadgetConfig.getGadgetConfig();
       
    String selectedFolder =  prefs.selectedFolder().getValue();
 
    RootPanel.get().add(mainPanel.getGadgetPanel());
   
    if(selectedFolder !=null && !selectedFolder.isEmpty())
    {
     
      DL.init();
    }
    else
    {
     
        DF.init();
    }
   
   
   }

 
}
TOP

Related Classes of com.gadglet.gadgets.docsFolder.client.DocsFolderGadget

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.