-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Open-PC.com   
Artwork
Groups
Knowledge Base
Events
Forum
People
Jobs
Register
Login

-
Best Twitter Client
 Official Twitter Web Interface
 Choqok
 Plasma Twitter Applet
 Twitux
 gTwitter
 Spaz
 Twitterfox
 Gwibber
 Qwit
 TweetDeck
 Other
 Not using Twitter

resultmore


Camheroes

Sponsoring



-
- Content .- Fans (6) .- Knowledge Base  . 

PidginPlasmoid

   0.04  

Plasmoid Script

PidginPlasmoid
zoom


Depends on:  KDE 4.x
Downloads:  439
Submitted:  Oct 29 2009
Updated:  Jan 21 2010
Score: 
score72%72%score
 72% good
bad   good

Description:

This is a port of the PidginScreenlet to the KDE4 plasma desktop. This plasmoid simply shows your contacts from Pidgin on your KDE desktop. It is very rough around the edges and does not contain all of the features I wish it could. Patches, forks, tips and tricks welcome!

This project depends on plasma-scriptengine-python

TODO: write configuration settings (to configure: displaying pics, show search box, always show offline contacts, always show groups)




Changelog:

0.01 - Initial public release
0.02 - Shows recent sign in/sign off, more minor display bug fixes
0.03 - Redesign: groups can be collapsed, chats initiated by double-clicking, Pidgin can be launched if it's not running, allows scrolling if list is too long
0.04 - Search all contacts quickly, fix for if Pidgin not running, added tool tips that show on mouseover of picture, icon for Pidgin not running, icons for buddies without buddy pics




LicenseGPL
(PidginPlasmoid)
send to a friend
subscription
other artwork from jmdsdf

-

 Good start!

 
 by Anywhere on: Oct 29 2009
 

More work is needed, but a great start. Especially since it's a script and I don't need to look for a .deb.

Keep up the good work and keep improving it.


reply to this

-

 Suggestion: Flyout Mode

 
 by Anywhere on: Oct 29 2009
 

One suggestion I'll make is needed for Plasma even though it doesn't apply to the original screenlet. Currently the only way to have this in a panel is to create an auto-hiding (or even non-hiding) panel off to one side. Some people might prefer it this way, but others might want an option to normally display as an icon (perhaps also indicating status) and pop up the main window when hovered for a few seconds or clicked. This should be optional as some users would still want the whole window, whether on the desktop or in a panel.


reply to this

-

 good idea

 
 by WMP on: Oct 31 2009
 

Very good idea! Please, fix small bugs and make new features, do nice theme and this plaismoid will be super!


reply to this

-

 how to install it?

 
 by aes78 on: Oct 31 2009
 

how to install it?


reply to this

-

 Re: how to install it?

 
 by jmdsdf on: Oct 31 2009
 

Pick one of these three ways to install:
1. run "plasmapkg -i PidginPlasmoid.zip"; or,
2. Right click on your desktop, select Add Widgets, click on Install New Widgets then Install from a local file, select Plasmoid, click next, select the PidginPlasmoid.zip file, click finish; or,
3. Download and install directly from KDE's KDE-Look installer--search for PidginPlasmoid and click install.


reply to this

-

 Re: Re: how to install it?

 
 by aes78 on: Nov 1 2009
 

It is not clear that the python is required. Through systemsettings can only *. plasma


reply to this

-

 Icons

 
 by Sparrowmelody on: Nov 2 2009
 

Would it be possible to disable loading of contact icons/avatars? I like how this applet looks without them.
Except for that, it's looking promising!


reply to this

-
.

 bug: UnicodeEncodeError:

 
 by hefee on: Nov 4 2009
 

Hello,

i got an error, when i ran your plasmoid:
File "/home/hefee/.kde/share/apps/plasma/plasmoids/pidgin-plasmoid/contents/code/pidginitem.py", line 25, in __init__
self.status_text = str(status_text)
UnicodeEncodeError: 'ascii' codec can't encode character u'\xfc' in position 46: ordinal not in range(128)

but the solution is simple: just change the position of status_text ant status in pidginitem.py. The correct line is:

def __init__(self, parent, group, buddy, alias, status="",status_text="", picture=None, recent=0)


reply to this

-

 Re: bug: UnicodeEncodeError:

 
 by jmdsdf on: Nov 5 2009
 

The latest 0.04 version shouldn't have that same line in pidginitem.py, rather it reads: def __init__(self, parent, group, buddy, alias, status_text="", name="", status="", picture=None, recent=0): Update your version and try again and let me know if the bug is still there, maybe it's something else causing it?


reply to this

-

 Re: Re: bug: UnicodeEncodeError:

 
 by hefee on: Nov 5 2009
 

Thanks with the new version i don't get this error anymore.


reply to this

-

 INstallation Failed

 
 by EstebanTristan on: Nov 8 2009
 

Hi,

This plasmoid is a great idea. hgiwever, I wasn't able to install it. I use KUbuntu 9.10. Trying to install through the right click on desktop, add plasmoid and download new plasmoid failed "Initialization script failed". Trying to plasmapkg -i PidginPlasmoid.zip just prints out installation failed.

Too bad because I would really wanted to see what it looks like.

Hope next version will work on Ubuntu.

Cheers


reply to this

-

 Re: Installation Failed

 
 by jmdsdf on: Nov 9 2009
 

I actually developed this under KUbuntu 9.10. Do you have the plasma-scriptengine-python package installed? Do you get any error messages running it from the command line? From the terminal, unzip the file. Cd into the directory, and run plasmoidviewer with no command line arguments. You'll should see all of the debug output that way.


reply to this

-

 Installation Failed

 
 by sylvanas on: Jan 20 2010
 

hello,
plasmoidviewer sayed me :
"ImportError: No module named dbus"
I have archlinux with kde4.4


reply to this

-

 Re: Installation Failed

 
 by jmdsdf on: Jan 21 2010
 

Try installing python-dbus


reply to this

add commentback




-
-
all messages

openDesktop.org Facebook App





Partners
Place Your Link Here!
Online Casino
Fundraising Ideas

Cool Sites
iPhone Community

 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Artwork
Jobs
Knowledge Base
Events
People
Updates on identi.ca
Updates on Twitter
Facebook App
Content RSS   
News RSS   
Discussion RSS   
Events RSS   

Participate
Groups
Forum
Add Artwork
Public API
About KDE-Look.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2001-2010 KDE-Look.org Team  
All rights reserved. KDE-Look.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
KDE and K Desktop Environment are trademarks of KDE e.V.