


Qt Widgets by dzimiwine 6 comments

Qt Widgets by dzimiwine 5 comments

Qt Widgets by dzimiwine 5 comments
However, you can easily use the same code to create your own Dock for Desktop.
I will probably modify QIrDock to become a Desktop dock when it calls setParent(0). But for now, I tick to the current behavior.
- Nov 21 2009
//main.cpp
#include <QIrDock>
#include <QIrParabolicEffectManager>
#include <QIrStyledDockStyle>
#include <QApplication>
#include <QWidget>
int main(int argc, char * argv[])
{
QApplication app(&argc,&argv);
QWidget widget;
widget.resize(600,600);
QIrDock * dock = new QIrDock(&widget);
dock->setSubStyle(new QIrStyledDockStyle);
dock->setEffectManager(new QIrParabolicEffectManager(dock));
.... Add some docklets here...
widget.show();
app.setQuitOnLastWindowClosed(true);
return app.exec();
} - Nov 21 2009

Qt Widgets by dzimiwine 6 comments
I will release QIron alpha in few hours (included documentations for some classes) .Actually, it's an alpha version just because it relies on Qt 4.6 (for QIrDock's graphics effects and animations) which is not released yet; otherwise, it's pretty much complete.
Do not forget to vote, please.
Regards - Nov 12 2009