/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.clothocore.widget.fabdash; import org.openide.util.NbBundle; import org.openide.windows.TopComponent; import org.netbeans.api.settings.ConvertAsProperties; import org.openide.awt.ActionID; import org.openide.awt.ActionReference; /** * Top component which displays something. */ @ConvertAsProperties(dtd = "-//org.clothocore.widget.fabdash//Search//EN", autostore = false) @TopComponent.Description(preferredID = "SearchTopComponent", //iconBase="SET/PATH/TO/ICON/HERE", persistenceType = TopComponent.PERSISTENCE_ALWAYS) @TopComponent.Registration(mode = "leftSlidingSide", openAtStartup = true) @ActionID(category = "Window", id = "org.clothocore.widget.fabdash.SearchTopComponent") @ActionReference(path = "Menu/Window" /*, position = 333 */) @TopComponent.OpenActionRegistration(displayName = "#CTL_SearchAction", preferredID = "SearchTopComponent") public final class SearchTopComponent extends TopComponent { public SearchTopComponent() { initComponents(); setName(NbBundle.getMessage(SearchTopComponent.class, "CTL_SearchTopComponent")); setToolTipText(NbBundle.getMessage(SearchTopComponent.class, "HINT_SearchTopComponent")); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { searchBar1 = new org.clothocore.widget.fabdash.browser.SearchBar(); setDisplayName(org.openide.util.NbBundle.getMessage(SearchTopComponent.class, "SearchTopComponent.displayName")); // NOI18N searchBar1.setMinimumSize(new java.awt.Dimension(150, 100)); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this); this.setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(searchBar1, javax.swing.GroupLayout.DEFAULT_SIZE, 285, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(searchBar1, javax.swing.GroupLayout.DEFAULT_SIZE, 300, Short.MAX_VALUE) ); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private org.clothocore.widget.fabdash.browser.SearchBar searchBar1; // End of variables declaration//GEN-END:variables @Override public void componentOpened() { // TODO add custom code on component opening } @Override public void componentClosed() { // TODO add custom code on component closing } void writeProperties(java.util.Properties p) { // better to version settings since initial version as advocated at // http://wiki.apidesign.org/wiki/PropertyFiles p.setProperty("version", "1.0"); // TODO store your settings } void readProperties(java.util.Properties p) { String version = p.getProperty("version"); // TODO read your settings according to their version } }