| 250 | */ |
| 251 | |
| 252 | DropArea::DropArea(QWidget *p) : QLabel(p) { |
| 253 | setFrameStyle(QFrame::Sunken | QFrame::StyledPanel); |
| 254 | setAlignment(Qt::AlignCenter); |
| 255 | setAcceptDrops(true); |
| 256 | setAutoFillBackground(true); |
| 257 | clear(); |
| 258 | } |
| 259 | |
| 260 | void DropArea::dragEnterEvent(QDragEnterEvent *e) { |
| 261 | setBackgroundRole(QPalette::Highlight); |
nothing calls this directly
no outgoing calls
no test coverage detected