/*************************************************************************** playerview.cpp - description ------------------- begin : Fri Sep 19 10:27:05 CET 2006 copyright : (C) 2006 by Harald Krippel email : harald@the-develop.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ // Qt includes #include // application specific includes #include "playerview.h" #include "glcontrol.hpp" #include "main.h" #include PlayerView::PlayerView(QObject *parent) :QObject(parent) { gl = NULL; } void PlayerView::newWirebox(FolderListItem * i) { if((g_gl)) // no GLWindow { i->gl=g_gl; g_gl->initFolderListItem(i,g_prjpath); g_gl->setFocusScene(i); } else { } } PlayerView::~PlayerView() { }