summaryrefslogtreecommitdiff
path: root/src/homepage.cpp
blob: 430fa9a61c389bbf3e10416ebf13a09be67076d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/* ============================================================
*
* This file is a part of the rekonq project
*
* Copyright (C) 2009 by Andrea Diamantini <adjam7 at gmail dot com>
*
*
* 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) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy 
* defined in Section 14 of version 3 of the license.
* 
* 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, see <http://www.gnu.org/licenses/>.
*
* ============================================================ */


// Self Includes
#include "homepage.h"
#include "homepage.moc"

// Local Includes
#include "historymodels.h"
#include "bookmarks.h"
#include "application.h"
#include "websnap.h"

// KDE Includes
#include <KStandardDirs>
#include <KIconLoader>
#include <KDebug>
#include <KConfig>
#include <KConfigGroup>

// Qt Includes
#include <QFile>


HomePage::HomePage(QObject *parent)
    : QObject(parent)
{
    m_homePagePath = KStandardDirs::locate("data", "rekonq/htmls/home.html");
}


HomePage::~HomePage()
{
}


QString HomePage::rekonqHomePage()
{
    QFile file(m_homePagePath);
    bool isOpened = file.open(QIODevice::ReadOnly);
    if (!isOpened)
    {
        kWarning() << "Couldn't open the home.html file";
        return QString("");
    }

    QString speed = speedDial();
    QString search = searchEngines();
    QString closedtabs = recentlyClosedTabs();
    

    QString html = QString(QLatin1String(file.readAll()))
                        .arg(search)
                        .arg(closedtabs)
                        .arg(speed)
                        ;

    return html;
}


QString HomePage::speedDial()
{
    KUrl::List ul ;
    ul << KUrl("http://www.google.it") << KUrl("http://www.kde.org") << KUrl("http://rekonq.sourceforge.net")
    << KUrl("http://www.slacky.eu") << KUrl("http://kde-apps.org") << KUrl("http://www.kernel.org") 
    << KUrl("http://it.wikipedia.org") << KUrl("http://www.adjam.org") << KUrl("http://adjamblog.wordpress.com");
    
    QString speed = QString();
    for(int i = 0; i< ul.count(); ++i)
    {
        KUrl url = ul.at(i);
        QString fileName = QString("thumb") + QString::number(i) + QString(".png");
        QString path = KStandardDirs::locateLocal("cache", QString("thumbs/") + fileName, true);
        if( !QFile::exists(path) )
        {
            kDebug() << "websnap";
            WebSnap *ws = new WebSnap(url, fileName);
        }
        
        speed += "<div class=\"thumbnail\"><img src=\"" + path + "\" width=\"200\" alt=\"" + url.prettyUrl() + "\" />";
        speed += "<br />";
        speed += "<a href=\"" + url.prettyUrl() + "\">" + url.prettyUrl() + "</a></div>";
    }
    return speed;
}


QString HomePage::searchEngines()
{
    QString engines = "<h2>Search Engines</h2>";
    
    KConfig config("kuriikwsfilterrc"); //Share with konqueror
    KConfigGroup cg = config.group("General");
    QStringList favoriteEngines;
    favoriteEngines << "google" << "wikipedia"; //defaults
    favoriteEngines = cg.readEntry("FavoriteSearchEngines", favoriteEngines);

    foreach (const QString &engine, favoriteEngines)
    {
        if(!engine.isEmpty())
        {
            engines += engine + ": <input type=\"text\" name=\"" + engine + "\" /><br />"; 
//             service = KService::serviceByDesktopPath(QString("searchproviders/%1.desktop").arg(engine));
//             const QString searchProviderPrefix = *(service->property("Keys").toStringList().begin()) + keywordDelimiter;
//             data.setData(searchProviderPrefix + "some keyword");
//             a = new KAction(service->name(), this);
//             a->setIcon(Application::icon(KUrl(data.uri())));
//             a->setData(searchProviderPrefix);
//             connect(a, SIGNAL(triggered(bool)), this, SLOT(slotSearch()));
//             searchMenu->addAction(a);
        }
    }
    
    return engines;
}


QString HomePage::recentlyClosedTabs()
{
    QString closedtabs = "engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines engines closed";

    return closedtabs;
}

// QString HomePage::fillHistory()
// {
//     QString history = QString();
//     HistoryTreeModel *model = Application::historyManager()->historyTreeModel();
//     
//     int i = 0;
//     do
//     {
//         QModelIndex index = model->index(i, 0, QModelIndex() );
//         if(model->hasChildren(index))
//         {
//             QString s = QString::number(i);
//             history += createSubMenu(index.data().toString(), s);
//             history += "<p id=\"y" + s + "\" class=\"indent\" style=\"display:none\">";
//             for(int j=0; j< model->rowCount(index); ++j)
//             {
//                 QModelIndex son = model->index(j, 0, index );
// // FIXME add an icon to each history item   history += "<img src=\"" + ciao + "\" alt=\"icon\" />";
//                 history += QString("<a href=\"") + son.data(HistoryModel::UrlStringRole).toString() + QString("\">") + 
//                         son.data().toString() + QString("</a><br />");
//             }
//             history += "</p>";
//         }
//         else
//         {
//             history += QString("<p> NO CHILDREN: ") + index.data().toString() + QString("</p>");
//         }
//         i++;
//     }
//     while( model->hasIndex( i , 0 , QModelIndex() ) );
// 
//     return history;
//     
// }
// 
// 
// QString HomePage::fillBookmarks()
// {
//     KBookmarkGroup toolBarGroup = Application::bookmarkProvider()->rootGroup();
//     if (toolBarGroup.isNull())
//     {
//         return QString("Error retrieving bookmarks!");
//     }
// 
//     QString str = QString("");
//     KBookmark bookmark = toolBarGroup.first();
//     while (!bookmark.isNull())
//     {
//         str += createBookItem(bookmark);
//         bookmark = toolBarGroup.next(bookmark);
//     }
//     
//     return str;
// }
// 
// 
// QString HomePage::createSubMenu(const QString &item, const QString &s)
// {
//     QString menu = "<div onClick=\"ToggleVisibility('x" + s + "','y" + s + "')\">";
// 
//     menu += "<p><img id=\"x" + s + "\" src=\"" + m_imagesPath + "closed.png\" /> <b><u>" + item + "</u></b></p></div>";
//     return menu;
// }
// 
// 
// QString HomePage::createBookItem(const KBookmark &bookmark)
// {
//     static int i = 0;
//     
//     if (bookmark.isGroup())
//     {
//         QString result = QString("");
//         QString ss = "b" + QString::number(i);
//         i++;
//         
//         KBookmarkGroup group = bookmark.toGroup();
//         KBookmark bm = group.first();
//         result += createSubMenu( bookmark.text() , ss );
//         result += "<p id=\"y" + ss + "\" class=\"indent\" style=\"display:none\">";
// 
//         while (!bm.isNull())
//         {
//             result += createBookItem(bm);    //menuAction->addAction(fillBookmarkBar(bm));
//             bm = group.next(bm);
//         }
//         result += "</p>";
//         return result;
//     }
//  
//     if(bookmark.isSeparator())
//     {
//         return QString("<hr />");
//     }
//     
//     QString str = ""; // FIXME Add icon "<img src=\"" + KStandardDirs::findResource( "icon", bookmark.icon() + ".png" ) + "\" alt=\"icon\" />";
//     str += "<a href=\"" + bookmark.url().prettyUrl() + "\">" + bookmark.text() + "</a><br />";
//     return str;
// }