00001 00002 #ifndef ROSEFILESELECTORCREATOR_H 00003 #define ROSEFILESELECTORCREATOR_H 00004 00005 #include "WidgetCreatorInterface.h" 00006 00007 class QWidget; 00008 class QEvent; 00009 00013 class RoseFileSelectorCreator 00014 : public WidgetCreatorInterface 00015 { 00016 Q_OBJECT 00017 00018 public: 00019 RoseFileSelectorCreator() 00020 : WidgetCreatorInterface( QIcon( ":/util/WidgetIcons/Rose.gif" ), "Select File" ) 00021 {} 00022 00023 protected: 00024 virtual QWidget *createWidget( QWidget *parent = NULL ); 00025 }; 00026 00027 #endif
1.4.7