//////////////////////////////////////////////////////////////// // // Class DragNDropContainer // // This class is only a container class to encapsulate the // variables needed for Drag'n drop support // //////////////////////////////////////////////////////////////// #include "dragndropcontainer.h" DragNDropContainer::DragNDropContainer() { sizeThumbnail = QSize(50, 50); sizeButton = QSize (150, 150); bImageButton = true; // Image or MovieButton bWithText = true; iTextPosition = TEXT_POS_BOTTOM; timeStartOffset = QTime (); timeDuration = QTime (); font = QFont (); colorForeground = QColor (); bStartAfterDropEvent = true; iHowNiceShouldIBe = 0; } DragNDropContainer::~DragNDropContainer() { }