mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 19:32:54 +00:00
107 lines
3.9 KiB
C++
107 lines
3.9 KiB
C++
/*************************************************************************************
|
|
* Copyright (C) 2008 by Aleix Pol <aleixpol@kde.org> *
|
|
* *
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA *
|
|
*************************************************************************************/
|
|
|
|
#include "projectfileelement.h"
|
|
|
|
#include <plasma/datacontainer.h>
|
|
#include <plasma/dataenginemanager.h>
|
|
#include <QFile>
|
|
#include <QFormLayout>
|
|
#include <KConfigDialog>
|
|
#include <QGraphicsLinearLayout>
|
|
#include <KTextBrowser>
|
|
#include <QScrollBar>
|
|
#include <plasma/containment.h>
|
|
|
|
using namespace Plasma;
|
|
|
|
ProjectFileItem::ProjectFileItem(QObject *parent, const QVariantList &args)
|
|
: Applet(parent, args)
|
|
, m_output(0)
|
|
, m_args(args)
|
|
{
|
|
setAspectRatioMode(IgnoreAspectRatio);
|
|
}
|
|
|
|
ProjectFileItem::~ProjectFileItem() {}
|
|
|
|
void ProjectFileItem::init()
|
|
{
|
|
if(!m_args.isEmpty())
|
|
config().writeEntry("relativePath", m_args.first());
|
|
|
|
QGraphicsLinearLayout* m_layout = new QGraphicsLinearLayout(Qt::Vertical);
|
|
m_output = new Plasma::TextBrowser(this);
|
|
m_output->nativeWidget()->setLineWrapMode(QTextEdit::NoWrap);
|
|
m_output->setFont(QFont("monospace"));
|
|
m_layout->addItem(m_output);
|
|
|
|
setLayout(m_layout);
|
|
setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
|
|
|
|
reloadData();
|
|
}
|
|
|
|
void ProjectFileItem::reloadData()
|
|
{
|
|
DataEngine* thedata = dataEngine("org.kdevelop.projects");
|
|
|
|
DataContainer* projectUrl=thedata->containerForSource("");
|
|
|
|
KUrl url=projectUrl->data().value("projectFileUrl").value<KUrl>();
|
|
url=url.upUrl();
|
|
url.addPath(config().readEntry("relativePath"));
|
|
|
|
QFile f(url.toLocalFile());
|
|
if(f.open(QFile::ReadOnly)) {
|
|
m_output->setText(f.readAll());
|
|
}
|
|
|
|
setObjectName(i18n("Project File: %1", config().readEntry("relativePath")));
|
|
}
|
|
|
|
QSizeF ProjectFileItem::sizeHint(Qt::SizeHint which, const QSizeF& constraint) const
|
|
{
|
|
QSizeF ret=Plasma::Applet::sizeHint(which, constraint);
|
|
// QSizeF ret(500, 300);
|
|
// if(m_output) {
|
|
// ret.expandedTo(QSizeF(m_output->nativeWidget()->horizontalScrollBar()->maximum(),
|
|
// m_output->nativeWidget()->verticalScrollBar()->maximum()));
|
|
// }
|
|
return ret;
|
|
}
|
|
|
|
void ProjectFileItem::createConfigurationInterface(KConfigDialog* parent)
|
|
{
|
|
QWidget* w=new QWidget(parent);
|
|
m_ui.setupUi(w);
|
|
m_ui.relativePath->setText(config().readEntry("relativePath"));
|
|
|
|
parent->addPage(w, i18n("File"));
|
|
connect(parent, SIGNAL(applyClicked()), SLOT(configAccepted()));
|
|
connect(parent, SIGNAL(okClicked()), SLOT(configAccepted()));
|
|
}
|
|
|
|
void ProjectFileItem::configAccepted()
|
|
{
|
|
config().writeEntry("relativePath", m_ui.relativePath->text());
|
|
|
|
reloadData();
|
|
}
|
|
|
|
#include "moc_projectfileelement.cpp"
|