kexi
kexidataawarewidgetinfo.cpp00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "kexidataawarewidgetinfo.h"
00021
00022 KexiDataAwareWidgetInfo::KexiDataAwareWidgetInfo(KFormDesigner::WidgetFactory *f)
00023 : KFormDesigner::WidgetInfo(f)
00024 {
00025 init();
00026 }
00027
00028 KexiDataAwareWidgetInfo::KexiDataAwareWidgetInfo(KFormDesigner::WidgetFactory *f,
00029 const char* parentFactoryName, const char* inheritedClassName)
00030 : KFormDesigner::WidgetInfo(f, parentFactoryName, inheritedClassName)
00031 {
00032 init();
00033 }
00034
00035 KexiDataAwareWidgetInfo::~KexiDataAwareWidgetInfo()
00036 {
00037 }
00038
00039 void KexiDataAwareWidgetInfo::init()
00040 {
00041 setAutoSyncForProperty( "dataSource", false );
00042 setAutoSyncForProperty( "dataSourceMimeType", false );
00043 }
|