Initial Dragdrop support (still not working,,,)

This commit is contained in:
Paolo Cignoni cignoni 2006-06-12 15:20:44 +00:00
parent 72b0ab96ca
commit b4e92e9751
2 changed files with 10 additions and 3 deletions

View File

@ -23,6 +23,9 @@
/****************************************************************************
History
$Log$
Revision 1.64 2006/06/12 15:20:44 cignoni
Initial Dragdrop support (still not working,,,)
Revision 1.63 2006/05/25 04:57:45 cignoni
Major 0.7 release. A lot of things changed. Colorize interface gone away, Editing and selection start to work.
Optional data really working. Clustering decimation totally rewrote. History start to work. Filters organized in classes.
@ -139,8 +142,8 @@ private slots:
void about();
void aboutPlugins();
void dropEvent ( QDropEvent * event );
void dragEnterEvent(QDragEnterEvent *);
private:
void createActions();

View File

@ -24,6 +24,9 @@
History
$Log$
Revision 1.55 2006/06/12 15:20:44 cignoni
Initial Dragdrop support (still not working,,,)
Revision 1.54 2006/05/26 04:09:52 cignoni
Still debugging 0.7
@ -92,7 +95,8 @@ MainWindow::MainWindow()
createMenus();
createToolBars();
updateMenus();
setAcceptDrops(true);
workspace->setAcceptDrops(true);
setWindowTitle(appName());
loadPlugins();
qb=new QProgressDialog(this);