Есть ли способ добавить Java Swing JPanel к Uno-Awt of Libreoffice?JAVA

Программисты JAVA общаются здесь
Anonymous
Есть ли способ добавить Java Swing JPanel к Uno-Awt of Libreoffice?

Сообщение Anonymous »

Теперь я узнал, что можно поместить качание JPanel в панель AWT. Старый вопрос
Теперь следующий шаг. Насколько я понимаю, Java расширения LibreOffice использует Uno-AWT. Есть ли способ добавить основную jpanel моего тренера по лексике в Uno-Awt of LibreOffice? Как это сделать?

Код: Выделить всё

    package org.libreoffice.example.comp;

import com.sun.star.uno.XComponentContext;
import com.sun.star.lib.uno.helper.Factory;

import org.libreoffice.example.dialog.ActionOneDialog;
import org.libreoffice.example.helper.DialogHelper;

import com.sun.star.lang.XSingleComponentFactory;
import com.sun.star.registry.XRegistryKey;
import com.sun.star.lib.uno.helper.WeakBase;

public final class StarterProjectImpl extends WeakBase
implements com.sun.star.lang.XServiceInfo,
com.sun.star.task.XJobExecutor
{
private final XComponentContext m_xContext;
private static final String m_implementationName = StarterProjectImpl.class.getName();
private static final String[] m_serviceNames = {
"org.libreoffice.example.StarterProject" };

public StarterProjectImpl( XComponentContext context )
{
m_xContext = context;
};

public static XSingleComponentFactory __getComponentFactory( String sImplementationName ) {
XSingleComponentFactory xFactory = null;

if ( sImplementationName.equals( m_implementationName ) )
xFactory = Factory.createComponentFactory(StarterProjectImpl.class, m_serviceNames);
return xFactory;
}

public static boolean __writeRegistryServiceInfo( XRegistryKey xRegistryKey ) {
return Factory.writeRegistryServiceInfo(m_implementationName,
m_serviceNames,
xRegistryKey);
}

// com.sun.star.lang.XServiceInfo:
public String getImplementationName() {
return m_implementationName;
}

public boolean supportsService( String sService ) {
int len = m_serviceNames.length;

for( int i=0; i < len; i++) {
if (sService.equals(m_serviceNames[i]))
return true;
}
return false;
}

public String[] getSupportedServiceNames() {
return m_serviceNames;
}

// com.sun.star.task.XJobExecutor:
public void trigger(String action)
{
switch (action) {
case "actionOne":
ActionOneDialog actionOneDialog = new ActionOneDialog(m_xContext);
actionOneDialog.show();
break;
default:
DialogHelper.showErrorMessage(m_xContext, null, "Unknown action: " + action);
}

}

}
Что я не понимаю, как начать мое приложение Swing в этом классе?>

Подробнее здесь: https://stackoverflow.com/questions/795 ... ibreoffice

Вернуться в «JAVA»