00001 #include "projectdetailswidget.h" 00002 00003 #include <control/controldata.h> 00004 00005 using namespace ui; 00006 00007 ProjectDetailsWidget::ProjectDetailsWidget(QWidget* parent) : QWidget(parent) 00008 { 00009 widgets.setupUi(this); 00010 } 00011 00012 void ProjectDetailsWidget::setDetails(const control::data::ProjectDetails& details) 00013 { 00014 widgets.descriptionEdit->setText(details.description); 00015 } 00016 00017 control::data::ProjectDetails ProjectDetailsWidget::currentDetails() const 00018 { 00019 control::data::ProjectDetails ret; 00020 00021 ret.description = widgets.descriptionEdit->text(); 00022 00023 return ret; 00024 }