only include Applications by default on OS X
[ambit.git] / src / columnview.cpp
blobbcfa7001c76597af869c690acec3efe71f617e35
1 /**
2 * Copyright (C) 2007 Benjamin C. Meyer
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #include "columnview.h"
20 #include <qlabel.h>
21 #include <qlayout.h>
23 ColumnView::ColumnView(QWidget *parent) : QColumnView(parent)
25 preview = new QWidget(this);
26 name = new QLabel(preview);
27 name->setAlignment(Qt::AlignHCenter);
28 QVBoxLayout *layout = new QVBoxLayout();
29 layout->addWidget(name);
30 layout->insertStretch(-1, 1);
31 preview->setLayout(layout);
32 preview->resize(300,300);
33 setPreviewWidget(preview);
34 connect(this, SIGNAL(updatePreviewWidget(const QModelIndex &)),
35 this, SLOT(updatePreviewWidet(const QModelIndex &)));
38 ColumnView::~ColumnView()
42 void ColumnView::updatePreviewWidet(const QModelIndex &index)
44 name->setText("<b>Name:</b> " + index.data().toString());