# # # add_file "src/view/PropertiesView.cpp" # content [fd0b77b8fe67c926bd1aee5f8865671f2ecc8ac9] # # add_file "src/view/PropertiesView.h" # content [f11261520fd7029630cb6dd8940868f5b201fdb9] # # patch "guitone.pro" # from [c159db2b8d451b6aa684201fb936a307ca85c2c7] # to [656b28cd3034bd264c202effabb3424e8101197c] # ============================================================ --- src/view/PropertiesView.cpp fd0b77b8fe67c926bd1aee5f8865671f2ecc8ac9 +++ src/view/PropertiesView.cpp fd0b77b8fe67c926bd1aee5f8865671f2ecc8ac9 @@ -0,0 +1,29 @@ +/*************************************************************************** + * Copyright (C) 2006 by Thomas Keller * + * address@hidden * + * * + * 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. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "PropertiesView.h" +#include "stable.h" +#include "../util/Settings.h" + +PropertiesView::PropertiesView(QWidget* parent) +: QListView(parent) +{} + +PropertiesView::~PropertiesView() {} ============================================================ --- src/view/PropertiesView.h f11261520fd7029630cb6dd8940868f5b201fdb9 +++ src/view/PropertiesView.h f11261520fd7029630cb6dd8940868f5b201fdb9 @@ -0,0 +1,33 @@ +/*************************************************************************** + * Copyright (C) 2006 by Thomas Keller * + * address@hidden * + * * + * 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. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef PROPERTIES_VIEW_H +#define PROPERTIES_VIEW_H + +class PropertiesView : public QListView +{ + Q_OBJECT + +public: + PropertiesView(QWidget*); + ~PropertiesView(); +}; + +#endif ============================================================ --- guitone.pro c159db2b8d451b6aa684201fb936a307ca85c2c7 +++ guitone.pro 656b28cd3034bd264c202effabb3424e8101197c @@ -29,3 +29,7 @@ RCC_DIR = tmp PRECOMPILED_HEADER = src/stable.h +macx { + CONFIG += i386 ppc + QMAKE_MAC_SDK = /Developer/SDKs/MacOSX10.4u.sdk +}