contructor with optional parent
Definition at line 46 of file aiundoview.cpp. 00047 :QListView( parent ) 00048 { 00049 //~ init 00050 m_undoModel = new AiUndoModel(); 00051 00052 //~ setup 00053 this->setViewMode(QListView::IconMode); 00054 this->setIconSize(QSize(60, 60)); 00055 this->setModel( m_undoModel ); 00056 } |