QWidget* yandexnarodPlugin::options()
{
	if(!enabled) {
		return 0;
	}

	settingswidget = new yandexnarodSettings();
	connect(settingswidget, SIGNAL(testclick()), this,  SLOT(on_btnTest_clicked()));
	connect(settingswidget, SIGNAL(startManager()), this, SLOT(manage_clicked()));

	return settingswidget;
}
	JNIEXPORT void JNICALL Java_com_uah_pmureader_NativeLib_startSampleGathering
	  (JNIEnv *env, jobject obj)
	{
		startManager();
	}