Search in sources :

Example 11 with QuestionItemsSource

use of org.olat.modules.qpool.ui.QuestionItemsSource in project openolat by klemens.

the class MyTaxonomyLevelTreeNode method getController.

@Override
public Controller getController(UserRequest ureq, WindowControl wControl) {
    if (questionsCtrl == null) {
        QuestionItemsSource source = new MyTaxonomyLevelItemsSource(ureq.getIdentity(), ureq.getUserSession().getRoles(), taxonomyLevel);
        OLATResourceable ores = OresHelper.createOLATResourceableInstanceWithoutCheck(MY_TAX_LEVEL + "_" + taxonomyLevel.getIdentifier(), taxonomyLevel.getKey());
        WindowControl swControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ureq, ores, null, wControl, true);
        questionsCtrl = new QuestionsController(ureq, swControl, stackPanel, source, securityCallback, MY_TAX_LEVEL + taxonomyLevel.getKey(), false);
    } else {
        questionsCtrl.updateSource();
    }
    return questionsCtrl;
}
Also used : MyTaxonomyLevelItemsSource(org.olat.modules.qpool.ui.datasource.MyTaxonomyLevelItemsSource) OLATResourceable(org.olat.core.id.OLATResourceable) QuestionItemsSource(org.olat.modules.qpool.ui.QuestionItemsSource) WindowControl(org.olat.core.gui.control.WindowControl) QuestionsController(org.olat.modules.qpool.ui.QuestionsController)

Example 12 with QuestionItemsSource

use of org.olat.modules.qpool.ui.QuestionItemsSource in project OpenOLAT by OpenOLAT.

the class CollectionTreeNode method getController.

@Override
public Controller getController(UserRequest ureq, WindowControl wControl) {
    QuestionItemsSource source = new CollectionOfItemsSource(questionItemCollection, ureq.getIdentity(), ureq.getUserSession().getRoles());
    if (questionsCtrl == null) {
        WindowControl swControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ureq, questionItemCollection, null, wControl, true);
        questionsCtrl = new QuestionsController(ureq, swControl, stackPanel, source, securityCallback, TABLE_PREFERENCE_PREFIX + questionItemCollection.getKey(), false);
        questionsCtrl.setQuestionItemCollection(questionItemCollection);
    } else {
        questionsCtrl.updateSource(source);
    }
    return questionsCtrl;
}
Also used : QuestionItemsSource(org.olat.modules.qpool.ui.QuestionItemsSource) WindowControl(org.olat.core.gui.control.WindowControl) QuestionsController(org.olat.modules.qpool.ui.QuestionsController) CollectionOfItemsSource(org.olat.modules.qpool.ui.datasource.CollectionOfItemsSource)

Example 13 with QuestionItemsSource

use of org.olat.modules.qpool.ui.QuestionItemsSource in project OpenOLAT by OpenOLAT.

the class MarkedQuestionsTreeNode method getController.

@Override
public Controller getController(UserRequest ureq, WindowControl wControl) {
    if (questionsCtrl == null) {
        QuestionItemsSource source = new MarkedItemsSource(ureq.getIdentity(), ureq.getUserSession().getRoles(), ITEM_SOURCE_NAME);
        WindowControl swControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ureq, ORES, null, wControl, true);
        questionsCtrl = new QuestionsController(ureq, swControl, stackPanel, source, securityCallback, TABLE_PREFERENCE_PREFIX, false);
    } else {
        questionsCtrl.updateSource();
    }
    return questionsCtrl;
}
Also used : MarkedItemsSource(org.olat.modules.qpool.ui.datasource.MarkedItemsSource) QuestionItemsSource(org.olat.modules.qpool.ui.QuestionItemsSource) WindowControl(org.olat.core.gui.control.WindowControl) QuestionsController(org.olat.modules.qpool.ui.QuestionsController)

Example 14 with QuestionItemsSource

use of org.olat.modules.qpool.ui.QuestionItemsSource in project OpenOLAT by OpenOLAT.

the class MyTaxonomyLevelTreeNode method getController.

@Override
public Controller getController(UserRequest ureq, WindowControl wControl) {
    if (questionsCtrl == null) {
        QuestionItemsSource source = new MyTaxonomyLevelItemsSource(ureq.getIdentity(), ureq.getUserSession().getRoles(), taxonomyLevel);
        OLATResourceable ores = OresHelper.createOLATResourceableInstanceWithoutCheck(MY_TAX_LEVEL + "_" + taxonomyLevel.getIdentifier(), taxonomyLevel.getKey());
        WindowControl swControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ureq, ores, null, wControl, true);
        questionsCtrl = new QuestionsController(ureq, swControl, stackPanel, source, securityCallback, MY_TAX_LEVEL + taxonomyLevel.getKey(), false);
    } else {
        questionsCtrl.updateSource();
    }
    return questionsCtrl;
}
Also used : MyTaxonomyLevelItemsSource(org.olat.modules.qpool.ui.datasource.MyTaxonomyLevelItemsSource) OLATResourceable(org.olat.core.id.OLATResourceable) QuestionItemsSource(org.olat.modules.qpool.ui.QuestionItemsSource) WindowControl(org.olat.core.gui.control.WindowControl) QuestionsController(org.olat.modules.qpool.ui.QuestionsController)

Example 15 with QuestionItemsSource

use of org.olat.modules.qpool.ui.QuestionItemsSource in project OpenOLAT by OpenOLAT.

the class WithoutTaxonomyLevelTreeNode method getController.

@Override
public Controller getController(UserRequest ureq, WindowControl wControl) {
    if (questionsCtrl == null) {
        QuestionItemsSource source = new WithoutTaxonomyLevelItemSource(ureq.getIdentity(), ureq.getUserSession().getRoles(), WITHOUT_TAXONOMY_LEVEL);
        WindowControl swControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ureq, ORES, null, wControl, true);
        questionsCtrl = new QuestionsController(ureq, swControl, stackPanel, source, securityCallback, WITHOUT_TAXONOMY_LEVEL, true);
    } else {
        questionsCtrl.updateSource();
    }
    return questionsCtrl;
}
Also used : WithoutTaxonomyLevelItemSource(org.olat.modules.qpool.ui.datasource.WithoutTaxonomyLevelItemSource) QuestionItemsSource(org.olat.modules.qpool.ui.QuestionItemsSource) WindowControl(org.olat.core.gui.control.WindowControl) QuestionsController(org.olat.modules.qpool.ui.QuestionsController)

Aggregations

WindowControl (org.olat.core.gui.control.WindowControl)18 QuestionItemsSource (org.olat.modules.qpool.ui.QuestionItemsSource)18 QuestionsController (org.olat.modules.qpool.ui.QuestionsController)18 OLATResourceable (org.olat.core.id.OLATResourceable)4 AllItemsSource (org.olat.modules.qpool.ui.datasource.AllItemsSource)2 CollectionOfItemsSource (org.olat.modules.qpool.ui.datasource.CollectionOfItemsSource)2 FinalItemsSource (org.olat.modules.qpool.ui.datasource.FinalItemsSource)2 MarkedItemsSource (org.olat.modules.qpool.ui.datasource.MarkedItemsSource)2 MyItemsSource (org.olat.modules.qpool.ui.datasource.MyItemsSource)2 MyTaxonomyLevelItemsSource (org.olat.modules.qpool.ui.datasource.MyTaxonomyLevelItemsSource)2 SharedItemsSource (org.olat.modules.qpool.ui.datasource.SharedItemsSource)2 WithoutAuthorItemSource (org.olat.modules.qpool.ui.datasource.WithoutAuthorItemSource)2 WithoutTaxonomyLevelItemSource (org.olat.modules.qpool.ui.datasource.WithoutTaxonomyLevelItemSource)2