com.alee.extended.language.LanguageEditor Maven / Gradle / Ivy
/*
* This file is part of WebLookAndFeel library.
*
* WebLookAndFeel library is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* WebLookAndFeel library 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WebLookAndFeel library. If not, see .
*/
package com.alee.extended.language;
import com.alee.extended.window.TestFrame;
import com.alee.laf.WebLookAndFeel;
import com.alee.laf.panel.WebPanel;
import com.alee.laf.scroll.WebScrollPane;
import com.alee.managers.language.LanguageManager;
import com.alee.managers.language.data.Dictionary;
import com.alee.managers.style.StyleId;
/**
* @author Mikle Garin
*/
public class LanguageEditor extends WebPanel
{
private final DictionariesTree dictionariesTree;
public LanguageEditor ()
{
super ();
dictionariesTree = new DictionariesTree ();
add ( dictionariesTree );
}
public DictionariesTree getDictionariesTree ()
{
return dictionariesTree;
}
public void loadDictionary ( final Dictionary dictionary )
{
dictionariesTree.loadDictionary ( dictionary );
}
public static void main ( final String[] args )
{
WebLookAndFeel.install ();
final LanguageEditor languageEditor = new LanguageEditor ();
languageEditor.loadDictionary ( LanguageManager.getDictionaries () );
languageEditor.getDictionariesTree ().expandTillRecords ();
languageEditor.getDictionariesTree ().setRootVisible ( false );
final WebScrollPane scroll = new WebScrollPane ( StyleId.scrollpaneUndecorated, languageEditor );
scroll.setPreferredSize ( 400, 600 );
TestFrame.show ( scroll );
}
}