00001 00002 #include "mythuigroup.h" 00003 00004 MythUIGroup::MythUIGroup(MythUIType *parent, const QString &name) 00005 : MythUIType(parent, name) 00006 { 00007 } 00008 00009 MythUIGroup::~MythUIGroup() 00010 { 00011 } 00012 00013 void MythUIGroup::Reset() 00014 { 00015 MythUIType::Reset(); 00016 } 00017 00018 void MythUIGroup::CopyFrom(MythUIType *base) 00019 { 00020 MythUIGroup *group = dynamic_cast<MythUIGroup *>(base); 00021 00022 if (!group) 00023 return; 00024 00025 MythUIType::CopyFrom(base); 00026 } 00027 00028 void MythUIGroup::CreateCopy(MythUIType *parent) 00029 { 00030 MythUIGroup *group = new MythUIGroup(parent, objectName()); 00031 group->CopyFrom(this); 00032 }