KDE/kdeplasma-addons

2010-10-13 Thread Albert Astals Cid
/CMakeLists.txt M +2 -2 libs/CMakeLists.txt --- trunk/KDE/kdeplasma-addons/CMakeLists.txt #1185623:1185624 @@ -7,7 +7,12 @@ include(MacroLibrary) include(MacroOptionalDependPackage) -find_package(KDE4Workspace REQUIRED) +macro_optional_find_package(KDE4Workspace) +macro_log_feature

Re: KDE/kdeplasma-addons/applets/opendesktop

2010-04-14 Thread Sebastian Kügler
On Wednesday 14 April 2010 15:21:09 Sebastian Kügler wrote: > On Wednesday 14 April 2010 15:09:56 Frederik Gladhorn wrote: > > SVN commit 1114766 by gladhorn: > > > > remove debug output for css (why is this stuff in there in the first > > place?) > > It makes the text in the personal details wid

KDE/kdeplasma-addons/applets/previewer

2009-08-26 Thread Alessandro Diaferia
SVN commit 1015911 by adiaferia: writing the name also at the bottom leads to unuseful redundancy CCMAIL:plasma-devel@kde.org M +0 -11 previewwidget.cpp --- trunk/KDE/kdeplasma-addons/applets/previewer/previewwidget.cpp #1015910:1015911 @@ -594,17 +594,6 @@ painter

Re: KDE/kdeplasma-addons/applets

2009-08-17 Thread Albert Astals Cid
A Diumenge, 16 d'agost de 2009, Björn Ruberg va escriure: > SVN commit 1012095 by ruberg: > > Moved plasmaboard (virtual keyboard plasmoid) from kdereview to > kdeplasma-addons > This is not a move, this is a copy, please remove the copy on kdereview. Albert __

KDE/kdeplasma-addons/dataengines/ocs

2009-08-06 Thread Marco Martin
--- trunk/KDE/kdeplasma-addons/dataengines/ocs/ocsengine.cpp #1007875:1007876 @@ -177,12 +177,7 @@ return true; kDebug() << "for name" << name; if (name == I18N_NOOP("activity")) { -foreach(const Attica::Activity &activity, m_activities ) {

Re: KDE/kdeplasma-addons/applets/news

2009-08-05 Thread Aaron J. Seigo
On Monday 03 August 2009, Marco Martin wrote: > would it be a "fixed" stylesheet with just colors dependent from the theme > or something that somehow permits applets of installing and loading their > own in a separate file? probably both should be possible. -- Aaron J. Seigo humru othro a kohnu

Re: KDE/kdeplasma-addons/applets/news

2009-08-03 Thread Marco Martin
On Monday 03 August 2009, Aaron J. Seigo wrote: > On Monday 03 August 2009, Sebastian Kügler wrote: > > On Monday 03 August 2009 18:47:25 Marco Martin wrote: > > > however everywhere Webview or a TextBrowser is used yes, using a > > > stylesheet is often necessary, now the question is: have we enou

Re: KDE/kdeplasma-addons/applets/news

2009-08-03 Thread Aaron J. Seigo
On Monday 03 August 2009, Sebastian Kügler wrote: > On Monday 03 August 2009 18:47:25 Marco Martin wrote: > > however everywhere Webview or a TextBrowser is used yes, using a > > stylesheet is often necessary, now the question is: have we enough use > > cases to justify to add this symbol in libpla

Re: KDE/kdeplasma-addons/applets/news

2009-08-03 Thread Sebastian Kügler
On Monday 03 August 2009 18:47:25 Marco Martin wrote: > however everywhere Webview or a TextBrowser is used yes, using a stylesheet > is often necessary, now the question is: have we enough use cases to > justify to add this symbol in libplasma? i'm not really sure, but as i said > i think the thin

Re: KDE/kdeplasma-addons/applets/news

2009-08-03 Thread Marco Martin
> stylesheet.cpp, I'm watching the css file for changes and update the UI > accordingly.) Makes for a better nice workflow with short feedback cycles > compared to editing the look in the .cpp file, or reloading the plasmoid > manually. > > Code is at http://websvn.kde.org/t

Re: KDE/kdeplasma-addons/applets/news

2009-08-03 Thread Sebastian Kügler
ylesheet and see results immediately. (In stylesheet.cpp, I'm watching the css file for changes and update the UI accordingly.) Makes for a better nice workflow with short feedback cycles compared to editing the look in the .cpp file, or reloading the plasmoid manually. Code is at

KDE/kdeplasma-addons/applets/bball

2009-07-19 Thread Sujith Haridasan
/KDE/kdeplasma-addons/applets/bball/bball.cpp #999069:999070 @@ -55,7 +55,10 @@ m_x_vel(0.0), m_y_vel(0.0), m_circum_vel(0.0), - m_mouse_pressed(false) + m_mouse_pressed(false), + m_bottom_left(0), + m_bottom_right(0), + m_bottom(0) { setHasConfigurationInterface (true); //TODO

KDE/kdeplasma-addons/applets/frame

2009-07-18 Thread Sebastian Kügler
SVN commit 999011 by sebas: remote loading of images, performance and looks improvements Performance++ - Use QPixmap all over so we can take advantage of the GPU - Don't call QPainter->setOpacity(), use QColor->setAlphaF() instead - Try to not update the picture more than once per paintEven

Re: KDE/kdeplasma-addons/applets/pastebin

2009-07-11 Thread Artur Souza (MoRpHeUz)
On Friday 10 July 2009, 23:52 Travis wrote: > They prefer you to use the api which returns a small amount of plaintext > where you just need to take the final line and that's your URL. I've done > this for the Konversation tinyurl shell script found here: > http://lxr.kde.org/source/extragear/netwo

Re: KDE/kdeplasma-addons/applets/pastebin

2009-07-10 Thread Travis
On Thursday 09 July 2009 6:22:32 am Artur Duque de Souza wrote: > SVN commit 993753 by asouza: > > TinyURL support on pastebin > > Now if you drop an http url on pastebin it will give you back a > tinyurl. Right now I didn't implement this as a backend as we do > not have others for tinyurl, but we

KDE/kdeplasma-addons/applets/pastebin

2009-07-09 Thread Artur Duque de Souza
lasma-devel@kde.org M +25 -0 pastebin.cpp M +5 -0 pastebin.h --- trunk/KDE/kdeplasma-addons/applets/pastebin/pastebin.cpp #993752:993753 @@ -693,6 +693,23 @@ #endif //Q_WS_WIN } +void Pastebin::processTinyUrl(QNetworkReply *reply) +{ +QByteArray dataRaw(reply->

Re: KDE/kdeplasma-addons/applets/notes

2009-06-27 Thread Sebastian Kügler
On Wednesday 24 June 2009 20:27:39 Marco Martin wrote: > SVN commit 986539 by mart: > > if an url was dropped extract the local path since we're using QFile, > supporting real remote urls is more a 4.4 thing Yes, it requires the containment to find out the mimetype of a remote file, and then down

KDE/kdeplasma-addons/applets/showdashboard

2009-02-05 Thread Loic Marteau
SVN commit 921844 by lmarteau: plasma -> plasma-desktop CCMAIL:plasma-devel@kde.org M +1 -1 showdashboard.cpp --- trunk/KDE/kdeplasma-addons/applets/showdashboard/showdashboard.cpp #921843:921844 @@ -71,7 +71,7 @@ void ShowDashboard::toggleShowDashboard() { -QDBusInterf

KDE/kdeplasma-addons/applets/dict

2008-10-17 Thread Davide Bettio
SVN commit 872625 by bettio: Calling updateGeometry() from constraintsEvent *is never* a good idea. Please don't do that. CCMAIL: plasma-devel@kde.org M +0 -10 dict.cpp M +0 -1 dict.h --- trunk/KDE/kdeplasma-addons/applets/dict/dict.cpp #872624:872625 @@ -114,16 +

Re: KDE/kdeplasma-addons/applets/comic

2008-08-25 Thread Aaron J. Seigo
On Monday 25 August 2008, Tobias Koenig wrote: > SVN commit 852244 by tokoe: > > Listen to Solid for network status changes and reload comic > if network becomes available. > > > M +1 -1 CMakeLists.txt > M +13 -1 comic.cpp > M +2 -0 comic.h > >