Fix no newlines warnings. Patch by Peter Oberndorfer
[kdevelopdvcssupport.git] / sublime / urldocument.cpp
blobe58014436e4db472aed18c217d0ae555d374b32b
1 /***************************************************************************
2 * Copyright 2006-2007 Alexander Dymo <adymo@kdevelop.org> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU Library General Public License as *
6 * published by the Free Software Foundation; either version 2 of the *
7 * License, or (at your option) any later version. *
8 * *
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. *
13 * *
14 * You should have received a copy of the GNU Library General Public *
15 * License along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
19 #include "urldocument.h"
21 #include <QWidget>
22 #include <KTextEdit>
24 #include <kdebug.h>
26 namespace Sublime {
28 // struct UrlDocumentPrivate
30 struct UrlDocumentPrivate {
31 KUrl url;
36 // class UrlDocument
38 UrlDocument::UrlDocument(Controller *controller, const KUrl &url)
39 :Document(url.fileName(), controller), d( new UrlDocumentPrivate() )
41 // Deep copy please :)
42 d->url.setEncodedUrl(url.url().toAscii());
45 UrlDocument::~UrlDocument()
47 delete d;
50 KUrl UrlDocument::url() const
52 return d->url;
55 void UrlDocument::setUrl(const KUrl& newUrl)
57 d->url = newUrl;
58 setTitle(newUrl.fileName());
61 QWidget *UrlDocument::createViewWidget(QWidget *parent)
63 ///@todo adymo: load file contents here
64 return new KTextEdit(parent);
67 QString UrlDocument::documentType() const
69 return "Url";
72 QString UrlDocument::documentSpecifier() const
74 return d->url.url();