Earthwings (Talk | contribs) |
(added new Junior Job) |
||
| Line 77: | Line 77: | ||
Level of difficulty: EASY | Level of difficulty: EASY | ||
| + | |||
| + | === Add support for 23 to marble's Photos Online Service Plugin === | ||
| + | Marble's Photos Online Service Plugin currently displays photos downloaded from Flickr. As [http://www.23hq.com 23] also provides flickr API, it should be possible to display images from 23 as well. | ||
| + | |||
| + | Level of difficulty: HARD | ||
Contents |
If you are new to Marble then you want to check this page. We list a few things you can do which are easy tasks and introduce you to Marble development.
We want our Marble source code to look good. The documentation should be concise and helpful and the comments shouldn't have spelling errors. Also it shouldn't have any obvious "formal" bugs. Help us to improve our code quality. This is an easy job that helps you to get familiar with the source code. It's the first thing that absolute beginners usually want to look at. We list a few important issues that need to be checked for regularly:
If you come across a problem don't hesitate to ask us (there are no stupid questions, just people who are afraid of asking for stupid reasons ;-) If you want to send in your patch for review, please send it to our mailing list marble-devel@kde.org.
This section deals with junior jobs that deal with Marble's data structure:
The <LookAt> tag in KML should be quite easy to implement -- at least compared to the other tags. Alternatively you can try to find a different tag that looks like it would be easy to implement, however you need to check in the handler or data directory whether it is implemented already.
http://code.google.com/apis/kml/documentation/kmlreference.html#lookat
In marble/src/KdeMainWindow.cpp use
http://api.kde.org/4.x-api/kdelibs-apidocs/kdeui/html/classKRecentFilesAction.html
to create an open recent menu entry for the KDE version of Marble. Adding the same functionality to the Qt version of Marble is a bonus task.
MarbleWidget::setDebugInfo( DebugFlags )
method where DebugFlags is using QFlags
http://doc.trolltech.com/4.5/qflags.html
One could then set enable the qDebug messages by e.g. setting
m_widget->setDebugInfo( DebugText | ShowTileID );
Level of difficulty: EASY
Gaurav is already working on this one.
Level of difficulty: HARD
The KDE Marble application has a menu entry to reload maps. The same functionality is available in the context menu on the Marble Widget, but the Qt Marble application is currently missing the "Reload Map" menu entry. Please add it and connect it to the appropriate slot (see MarbleWidgetInputHandler).
Level of difficulty: EASY
Marble's plugin API lets plugins define an icon which is shown in the menu for activating plugins. Only a few plugins use icons so far however. Please locate appropriate plugin icons (chances are high the oxygen project already has some) and add them. A good start would be the Photos Online Service Plugin.
Level of difficulty: EASY
Marble's Photos Online Service Plugin currently displays photos downloaded from Flickr. As 23 also provides flickr API, it should be possible to display images from 23 as well.
Level of difficulty: HARD