NCL Composer  0.1.5
 All Classes Functions Variables Pages
ProjectTreeItem.cpp
1 /* Copyright (c) 2011 Telemidia/PUC-Rio.
2  * All rights reserved. This program and the accompanying materials
3  * are made available under the terms of the Eclipse Public License v1.0
4  * which accompanies this distribution, and is available at
5  * http://www.eclipse.org/legal/epl-v10.html
6  *
7  * Contributors:
8  * Telemidia/PUC-Rio - initial API and implementation
9  */
10 #include "ProjectTreeItem.h"
11 
12 ProjectTreeItem::ProjectTreeItem(QString name, QString location,
13  QTreeWidget *parent) :
14  QTreeWidgetItem(parent, ProjectType)
15 {
16  _name = name;
17  _location = location;
18  setIcon(0,QIcon(":/mainwindow/folderEmpty"));
19  setText(0,_name);
20  setToolTip(1,_location);
21 }