


Plasma 4 Extensions by mbaszczewski 445 comments
The plasmoid looks like it has a max size of 620px. It wont expand like the task manager plasmoid to fill the whole panel. So the other plasmoids stretch around to occupy the remaining space of the panel - making it look very odd. Can you please make it expand like the taskmanager plasmoid.
Thanks - Apr 14 2009

Karamba & Superkaramba by kei-exelion 6 comments

KDE Plasma Screenshots by beany 3 comments
Thanks - Mar 19 2008

KDE Plasma Screenshots by Harvest 2 comments

Beryl/Emerald Themes by rgogada 3 comments
tabbed_widget.h.patch
--- ../yakuake/src/tabbed_widget.h 2005-10-02 05:22:12.000000000 -0400
+++ src/tabbed_widget.h 2005-10-05 23:36:57.000000000 -0400
@@ -76,6 +76,7 @@
** Tabs value lists */
QValueList items;
QValueList areas;
+ QValueList captions;
/*
tabbed_widget.cpp.patch
--- ../yakuake/src/tabbed_widget.cpp 2005-10-02 05:18:56.000000000 -0400
+++ src/tabbed_widget.cpp 2005-10-05 23:52:25.000000000 -0400
@@ -17,6 +17,8 @@
** Local libraries */
#include "tabbed_widget.h"
#include "tabbed_widget.moc"
+#include
+#include
@@ -58,6 +60,7 @@
{
items.append(id);
areas.append(0);
+ captions.append(QString("console "+ QString::number(id + 1)));
refreshBuffer();
}
@@ -84,6 +87,7 @@
items.remove(items.at(index));
areas.remove(areas.at(index));
+ captions.remove(captions.at(index));
if (index != items.size())
selected_id = index;
@@ -236,9 +240,23 @@
if (e->x() button() == Qt::LeftButton)
+ {
+ refreshBuffer();
+ emit itemSelected(items[selected_id]);
+ }
+ else if (e->button() == Qt::RightButton)
+ {
+ bool ok;
+ QString tabName = KInputDialog::getText( i18n( "Tab Name" ),
+ i18n( "Enter new tab name" ), captions[selected_id], &ok );
+
+ if ( (ok) && ( tabName != NULL ))
+ {
+ captions[selected_id]=tabName;
+ refreshBuffer();
+ }
+ }
}
}
@@ -306,7 +324,7 @@
QString value;
QFontMetrics metrics(painter.font());
- value = "console " + QString::number(id + 1);
+ value = captions[id];//"console " + QString::number(id + 1);
width = metrics.width(value) + 10;
tmp_pixmap = (id == selected_id) ? selected_image : unselected_image; - Oct 06 2005

KDE Plasma Screenshots by suppandi 4 comments

KDE Plasma Screenshots by suppandi 4 comments