OSX cupertino DSP

QtCurve by vicko 2 comments

Thank You. - Sep 22 2015
cupertino-yose aurorae

Plasma Window Decorations by vicko 2 comments

not need the file CMakeLists.txt sorry my mistake.

only need to install it from system setting. - Feb 11 2015
Smaragd (Emerald for KDE)

Various Plasma Theming by skulptor 131 comments

thanks

I tried it and now works fine - Aug 10 2010
Smaragd (Emerald for KDE)

Various Plasma Theming by skulptor 131 comments

hello

in this link you can see the problem with the glow button in Smaragd
As you can see the glow button is not aligned with the normal button

http://www.imaxenes.com/imagen/problema1by715l.png.html - Aug 09 2010
Smaragd (Emerald for KDE)

Various Plasma Theming by skulptor 131 comments

forget it.

session must be closed before the change takes effect or run kwin -- replace

glow can be implemented in the title bar??? - May 27 2010
Smaragd (Emerald for KDE)

Various Plasma Theming by skulptor 131 comments

hello skulptor how to enable shadows in the 0.0.3 version


- May 27 2010
seven aurorae

Plasma Window Decorations by vicko 20 comments

There is no way to do - Feb 17 2010
seven aurorae

Plasma Window Decorations by vicko 20 comments

try 0.2 please - Feb 17 2010
seven aurorae

Plasma Window Decorations by vicko 20 comments

Thank you! ;-) - Feb 16 2010
glowglass (aurorae)

Plasma Window Decorations by vicko 17 comments

modify the file decoration.svgz - Feb 12 2010
Aurorae Theme Engine

Various Plasma Theming by mgraesslin 179 comments

Is it possible to give the title bar text a blurred white shadow, as it is used in folderview (KDE 4.4)?
- Feb 11 2010
glowglass (plasma theme)

Plasma Themes by vicko 13 comments

hello.

look http://www.kde-look.org/content/show.php/glowglass+(aurorae)?content=107473 for windows.

must have installed the engine aurorae for kwin. - Oct 08 2009
glowglass (plasma theme)

Plasma Themes by vicko 13 comments

thank you - Oct 01 2009
glowglass (plasma theme)

Plasma Themes by vicko 13 comments

try 0.2 please - Oct 01 2009
glowglass (aurorae)

Plasma Window Decorations by vicko 17 comments

glowglass plasma theme

http://www.kde-look.org/content/show.php/glowglass+(plasma+theme)?content=112931 - Sep 30 2009
Animated Video Wallpaper

Plasma 5 Wallpaper Plugins by genjix 116 comments

yes opensuse 11 + factory please - Sep 24 2009
Animated Video Wallpaper

Plasma 5 Wallpaper Plugins by genjix 116 comments

where I can find for opensuse 11? - Sep 23 2009
Aurorae Theme Engine

Various Plasma Theming by mgraesslin 179 comments

example of glow or bloom:
http://labs.trolltech.com/blogs/2008/12/19/blooming-qpixmaps/ - Jul 23 2009
Aurorae Theme Engine

Various Plasma Theming by mgraesslin 179 comments

Hello mgraesslin

- With rev 998257( http://websvn.kde.org/?view=rev&revision=998257) it is possible to define a custom width for each button type.

works very well thanks

- Sorry I don't know what it is supposed to look like

Title glow looks like this:

http://www.kde-look.org/content/preview.php?preview=1&id=46864&file1=46864-1.jpg&file2=&file3=&name=Vista+Glow

http://www.kde-look.org/content/preview.php?preview=1&id=99136&file1=99136-1.png&file2=&file3=&name=AquaReborn - Jul 18 2009
Aurorae Theme Engine

Various Plasma Theming by mgraesslin 179 comments

vrunner code in case you can translate

// Title Glow

// Title Glow
if(pfs->use_glow) {
cairo_set_operator (cr, CAIRO_OPERATOR_ATOP);

if(PANGO_IS_LAYOUT(d->layout))
pango_layout_get_pixel_size(d->layout, &title_width, &title_height);
title_pos = get_real_pos(ws, TBT_TITLE, d);
create_glow (d, cr, title_pos, y1 + top/2.0 - title_height/2.0,
title_width, title_height,
&pfs->glow_inner, pfs->glow_radius);
}

void create_glow(decor_t *d, cairo_t *cr,
double x, double y, double w, double h,
alpha_color * c0, double p)
{
double r = 0.0;
double wp = p;
double hp = p;
//cairo_rectangle(cr, x1, y1, w, h);
frame_settings * fs = d->fs;
// private_fs * pfs = fs->engine_fs;
window_settings * ws = fs->ws;
if(wp*2 > w) wp = w/2;
if(hp*2 > h) hp = h/2;

x = x+wp;
y = y+hp;
wp = wp*2;
hp = hp*2;
w = w-wp;
h = h-hp;

alpha_color c1;
c1.color = c0->color;
c1.alpha = 0;
cairo_set_operator (cr, CAIRO_OPERATOR_OVER);

fill_rounded_rectangle (cr,
x-wp, y-hp, wp, hp, CORNER_TOPLEFT,
c0, &c1, (SHADE_LEFT | SHADE_TOP ), ws, r);
fill_rounded_rectangle (cr,
x, y-hp, w, hp, 0,
c0, &c1, SHADE_TOP, ws, r);
fill_rounded_rectangle (cr,
x+w, y-hp, wp, hp, CORNER_TOPRIGHT,
c0, &c1, (SHADE_RIGHT | SHADE_TOP ), ws, r);
fill_rounded_rectangle (cr,
x-wp, y, wp, h, 0,
c0, &c1, SHADE_LEFT, ws, r);
fill_rounded_rectangle (cr,
x+w, y, wp, h, 0,
c0, &c1, SHADE_RIGHT, ws, r);
fill_rounded_rectangle (cr,
x-wp, y+h, wp, hp, CORNER_BOTTOMLEFT,
c0, &c1, (SHADE_LEFT | SHADE_BOTTOM ), ws, r);
fill_rounded_rectangle (cr,
x, y+h, w, hp, 0,
c0, &c1, SHADE_BOTTOM, ws, r);
fill_rounded_rectangle (cr,
x+w, y+h, wp, hp, CORNER_BOTTOMRIGHT,
c0, &c1, (SHADE_RIGHT | SHADE_BOTTOM ), ws, r);

cairo_rectangle (cr, x, y, w, h);
cairo_set_source_alpha_color (cr, c0);
cairo_fill (cr);
}


http://gitweb.compiz-fusion.org/?p=fusion/decorators/emerald;a=blob;f=engines/vrunner.c;h=995565584ced7315d9dca362a8c800b29c2fb0a1;hb=HEAD - Jul 16 2009
Aurorae Theme Engine

Various Plasma Theming by mgraesslin 179 comments

Do you plan add more options and functionality?

I would like to see:
- Option to set glow text in title (like vista theme or vrunner engine emerald)
- Options to change the width of the button close (themes like chrome and vista)
- Jul 15 2009
cupertino

QtCurve by vicko 3 comments

install kwindeco: http://www.kde-look.org/content/show.php/cupertino-ish-air+aurorae?content=108252 - Jul 14 2009
glowglass (aurorae)

Plasma Window Decorations by vicko 17 comments

thanks fixed in 0.2 - Jun 25 2009
glowglass (aurorae)

Plasma Window Decorations by vicko 17 comments

try 0.2 please - Jun 25 2009
blue_light bespin preset

Be-Shell/Bespin by vicko 9 comments

hi

i am using:

- plasma theme Slim Glow
- system tray kde 4.2 beta - Dec 06 2008
kde 4 beta 2

KDE Plasma Screenshots by vicko 4 comments

are you try bespin rev. 195 ?

:) - Jul 07 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

thank's thomas.

compile ok with 195 - Jun 30 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

Hi thomas

-- Found Qt-Version 4.4.0 (using /usr/bin/qmake)
-- Found X11: /usr/lib/libX11.so
-- Did not find automoc4 (part of kdesupport).
-- Found Perl: /usr/bin/perl
-- Found KDE 4.1 include dir: /usr/include
-- Found KDE 4.1 library dir: /usr/lib
-- Found KDE4 kconfig_compiler preprocessor: /usr/bin/kconfig_compiler
-- Found KDE4 automoc: /usr/bin/kde4automoc
-- Found X11: /usr/lib/libX11.so
-- INFO: XRender was found - kwin deco & FX via GPU available!
-- Configuring done
-- Generating done
-- Build files have been written to: /home/victor/bespin/cloudcity/build
make[2]: *** No hay ninguna regla para construir el objetivo `../macmenu-dbus.h', necesario para `moc_macmenu-dbus.cxx'. Alto.
make[1]: *** [CMakeFiles/bespin.dir/all] Error 2
make: *** [all] Error 2

opensuse 11.
bespin rev. 192 - Jun 27 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

with rev. 152 - Apr 14 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

hi

now i have this error

kde 4.0.3 ubuntu 7.10 qt 4.3

config.cpp: In static member function ‘static void Config::savePalette(const QPalette&)’:
config.cpp:769: error: ‘ToolTipBase’ no es un miembro de ‘QPalette’
config.cpp:769: error: ‘ToolTipText’ no es un miembro de ‘QPalette’
config.cpp: At global scope:
config.cpp:56: aviso: se definió ‘defInfo2’ pero no se usa
config.cpp:63: aviso: se definió ‘defInfo3’ pero no se usa
make[2]: *** [config.o] Error 1
make[2]: se sale del directorio `/home/victor/bespin/cloudcity/config'
make[1]: *** [sub-bespin-pro-make_default] Error 2
make[1]: se sale del directorio `/home/victor/bespin/cloudcity/config'
make: *** [sub-config-make_default] Error 2
- Apr 14 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

i tryed but remains the same error

kde 4.03 bespin rev. 151

/home/victor/bespin/cloudcity# ./configure qt-dir=/usr/share/qt4/ kde-dir=/usr/lib/kde4/
-e \e[0;34;47m
Welcome to Bespins interactive configurator\e[m
-e \e[0;31;47m
Warning: KDE 4 could not be found in usual locations, pass it here\e[m
Path to KDE 4: /usr/lib/kde4
-e \e[0;31;47m
Warning: Qt4 could not be found in usual locations, pass it here\e[m
Path to Qt4: /usr/share/qt4
-e \e[0;32;40m
Configuration done, now "make && make install"\e[m
WARNING: Found potential symbol conflict of config.cpp (config.cpp) in SOURCES
WARNING: Found potential symbol conflict of config.h (config.h) in HEADERS

/home/victor/bespin/cloudcity# make
make -f Makefile.kstyle-bespin-config
make[2]: se ingresa al directorio `/home/victor/bespin/cloudcity/config'
Makefile.kstyle-bespin-config:171: atención: se imponen comandos para el objetivo `moc_config.cpp'
Makefile.kstyle-bespin-config:168: atención: se ignoran las instrucciones viejas para el objetivo `moc_config.cpp'
rm -f kstyle-bespin-config.so
g++ -shared -o kstyle-bespin-config.so bconfig.o config.o config.o moc_bconfig.o moc_config.o moc_config.o -L/usr/share/qt3/lib -lqt-mt -lpthread
config.o: In function `Config::generateGradientTypes(QComboBox*)':
/home/victor/bespin/cloudcity/config/config.cpp:855: multiple definition of `Config::generateGradientTypes(QComboBox*)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:855: first defined here
config.o: In function `Config::generateColorModes(QComboBox*)':
/home/victor/bespin/cloudcity/config/config.cpp:847: multiple definition of `Config::generateColorModes(QComboBox*)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:847: first defined here
config.o: In function `Config::filterPresets(QString const&)':
/home/victor/bespin/cloudcity/config/config.cpp:803: multiple definition of `Config::filterPresets(QString const&)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:803: first defined here
config.o: In function `Config::learnPwChar()':
/home/victor/bespin/cloudcity/config/config.cpp:792: multiple definition of `Config::learnPwChar()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:792: first defined here
config.o: In function `Config::handleGrooveMode(int)':
/home/victor/bespin/cloudcity/config/config.cpp:785: multiple definition of `Config::handleGrooveMode(int)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:785: first defined here
config.o: In function `Config::handleBgMode(int)':
/home/victor/bespin/cloudcity/config/config.cpp:778: multiple definition of `Config::handleBgMode(int)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:778: first defined here
config.o: In function `Config::storedSettigSelected(QListWidgetItem*)':
/home/victor/bespin/cloudcity/config/config.cpp:772: multiple definition of `Config::storedSettigSelected(QListWidgetItem*)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:772: first defined here
config.o: In function `Config::remove()':
/home/victor/bespin/cloudcity/config/config.cpp:761: multiple definition of `Config::remove()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:761: first defined here
config.o: In function `Config::store()':
/home/victor/bespin/cloudcity/config/config.cpp:690: multiple definition of `Config::store()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:690: first defined here
config.o: In function `Config::sExport(QString const&, QString const&)':
/home/victor/bespin/cloudcity/config/config.cpp:579: multiple definition of `Config::sExport(QString const&, QString const&)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:579: first defined here
config.o: In function `Config::saveAs()':
/home/victor/bespin/cloudcity/config/config.cpp:602: multiple definition of `Config::saveAs()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:602: first defined here
config.o: In function `Config::sImport(QString const&)':
/home/victor/bespin/cloudcity/config/config.cpp:543: multiple definition of `Config::sImport(QString const&)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:543: first defined here - Apr 11 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

i tryed but remains the same error

kde 4.03 bespin rev. 151

/home/victor/bespin/cloudcity# ./configure qt-dir=/usr/share/qt4/ kde-dir=/usr/lib/kde4/
-e \e[0;34;47m
Welcome to Bespins interactive configurator\e[m
-e \e[0;31;47m
Warning: KDE 4 could not be found in usual locations, pass it here\e[m
Path to KDE 4: /usr/lib/kde4
-e \e[0;31;47m
Warning: Qt4 could not be found in usual locations, pass it here\e[m
Path to Qt4: /usr/share/qt4
-e \e[0;32;40m
Configuration done, now "make && make install"\e[m
WARNING: Found potential symbol conflict of config.cpp (config.cpp) in SOURCES
WARNING: Found potential symbol conflict of config.h (config.h) in HEADERS

/home/victor/bespin/cloudcity# make
make -f Makefile.kstyle-bespin-config
make[2]: se ingresa al directorio `/home/victor/bespin/cloudcity/config'
Makefile.kstyle-bespin-config:171: atención: se imponen comandos para el objetivo `moc_config.cpp'
Makefile.kstyle-bespin-config:168: atención: se ignoran las instrucciones viejas para el objetivo `moc_config.cpp'
rm -f kstyle-bespin-config.so
g++ -shared -o kstyle-bespin-config.so bconfig.o config.o config.o moc_bconfig.o moc_config.o moc_config.o -L/usr/share/qt3/lib -lqt-mt -lpthread
config.o: In function `Config::generateGradientTypes(QComboBox*)':
/home/victor/bespin/cloudcity/config/config.cpp:855: multiple definition of `Config::generateGradientTypes(QComboBox*)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:855: first defined here
config.o: In function `Config::generateColorModes(QComboBox*)':
/home/victor/bespin/cloudcity/config/config.cpp:847: multiple definition of `Config::generateColorModes(QComboBox*)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:847: first defined here
config.o: In function `Config::filterPresets(QString const&)':
/home/victor/bespin/cloudcity/config/config.cpp:803: multiple definition of `Config::filterPresets(QString const&)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:803: first defined here
config.o: In function `Config::learnPwChar()':
/home/victor/bespin/cloudcity/config/config.cpp:792: multiple definition of `Config::learnPwChar()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:792: first defined here
config.o: In function `Config::handleGrooveMode(int)':
/home/victor/bespin/cloudcity/config/config.cpp:785: multiple definition of `Config::handleGrooveMode(int)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:785: first defined here
config.o: In function `Config::handleBgMode(int)':
/home/victor/bespin/cloudcity/config/config.cpp:778: multiple definition of `Config::handleBgMode(int)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:778: first defined here
config.o: In function `Config::storedSettigSelected(QListWidgetItem*)':
/home/victor/bespin/cloudcity/config/config.cpp:772: multiple definition of `Config::storedSettigSelected(QListWidgetItem*)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:772: first defined here
config.o: In function `Config::remove()':
/home/victor/bespin/cloudcity/config/config.cpp:761: multiple definition of `Config::remove()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:761: first defined here
config.o: In function `Config::store()':
/home/victor/bespin/cloudcity/config/config.cpp:690: multiple definition of `Config::store()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:690: first defined here
config.o: In function `Config::sExport(QString const&, QString const&)':
/home/victor/bespin/cloudcity/config/config.cpp:579: multiple definition of `Config::sExport(QString const&, QString const&)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:579: first defined here
config.o: In function `Config::saveAs()':
/home/victor/bespin/cloudcity/config/config.cpp:602: multiple definition of `Config::saveAs()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:602: first defined here
config.o: In function `Config::sImport(QString const&)':
/home/victor/bespin/cloudcity/config/config.cpp:543: multiple definition of `Config::sImport(QString const&)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:543: first defined here - Apr 11 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

using kde 4.02

/home/victor/bespin/cloudcity/config/config.cpp:733: multiple definition of `Config::store3(QString const&, bool)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:733: first defined here
config.o: In function `Config::store2b(QListWidgetItem*)':
/home/victor/bespin/cloudcity/config/config.cpp:724: multiple definition of `Config::store2b(QListWidgetItem*)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:724: first defined here
config.o: In function `Config::store2a()':
/home/victor/bespin/cloudcity/config/config.cpp:704: multiple definition of `Config::store2a()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:704: first defined here
config.o: In function `Config::save()':
/home/victor/bespin/cloudcity/config/config.cpp:663: multiple definition of `Config::save()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:663: first defined here
config.o: In function `Config::restore()':
/home/victor/bespin/cloudcity/config/config.cpp:634: multiple definition of `Config::restore()'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:634: first defined here
config.o: In function `Config::load(QString const&)':
/home/victor/bespin/cloudcity/config/config.cpp:510: multiple definition of `Config::load(QString const&)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:510: first defined here
config.o: In function `Config':
/home/victor/bespin/cloudcity/config/config.cpp:104: multiple definition of `Config::Config(QWidget*)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:104: first defined here
config.o: In function `allocate_kstyle_config':
/home/victor/bespin/cloudcity/config/config.cpp:21: multiple definition of `allocate_kstyle_config'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:21: first defined here
config.o: In function `Config':
/home/victor/bespin/cloudcity/config/config.cpp:104: multiple definition of `Config::Config(QWidget*)'
config.o:/home/victor/bespin/cloudcity/config/config.cpp:104: first defined here
moc_config.o: In function `Config::metaObject() const':
/usr/include/qt4/QtCore/qatomic_i386.h:89: multiple definition of `Config::metaObject() const'
moc_config.o:/usr/include/qt4/QtCore/qatomic_i386.h:89: first defined here
moc_config.o:(.rodata+0x34): multiple definition of `Config::staticMetaObject'
moc_config.o:(.rodata+0x34): first defined here
moc_config.o: In function `Config::qt_metacall(QMetaObject::Call, int, void**)':
/home/victor/bespin/cloudcity/config/moc_config.cpp:75: multiple definition of `Config::qt_metacall(QMetaObject::Call, int, void**)'
moc_config.o:/home/victor/bespin/cloudcity/config/moc_config.cpp:75: first defined here
moc_config.o: In function `Config::qt_metacast(char const*)':
/home/victor/bespin/cloudcity/config/moc_config.cpp:67: multiple definition of `Config::qt_metacast(char const*)'
moc_config.o:/home/victor/bespin/cloudcity/config/moc_config.cpp:67: first defined here
collect2: ld devolvió el estado de salida 1
make[2]: *** [kstyle-bespin-config.so] Error 1
make[2]: se sale del directorio `/home/victor/bespin/cloudcity/config'
make[1]: *** [sub-kstyle-bespin-config-pro-make_default] Error 2
make[1]: se sale del directorio `/home/victor/bespin/cloudcity/config'
make: *** [sub-config-make_default] Error 2 - Apr 09 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

thank's Franzf

in views.cpp line 413

#if QT_VERSION >= 0x04040
change it to
#if QT_VERSION >= 0x40400

t's now working!

woooohoooo :) - Mar 06 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

ok.

Thank's

Now this is the problem

shapes.cpp: In member function ‘void Bespin::BespinStyle::drawCheck(const QStyleOption*, QPainter*, const QWidget*, bool) const’:
shapes.cpp:85: error: ‘HasCheckIndicator’ no es un miembro de ‘QStyleOptionViewItemV2’
make[1]: *** [shapes.o] Error 1
make[1]: se sale del directorio `/home/victor/bespin/cloudcity'
make: *** [sub-bespin-pro-make_default] Error 2

Line 85
if (!(item->features & QStyleOptionViewItemV2::HasCheckIndicator))
return;

???? - Mar 06 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

ok.

Thank's

Now this is the problem

shapes.cpp: In member function ‘void Bespin::BespinStyle::drawCheck(const QStyleOption*, QPainter*, const QWidget*, bool) const’:
shapes.cpp:85: error: ‘HasCheckIndicator’ no es un miembro de ‘QStyleOptionViewItemV2’
make[1]: *** [shapes.o] Error 1
make[1]: se sale del directorio `/home/victor/bespin/cloudcity'
make: *** [sub-bespin-pro-make_default] Error 2

Line 85
if (!(item->features & QStyleOptionViewItemV2::HasCheckIndicator))
return;

???? - Mar 06 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

ok.

Thank's

Now this is the problem

shapes.cpp: In member function ‘void Bespin::BespinStyle::drawCheck(const QStyleOption*, QPainter*, const QWidget*, bool) const’:
shapes.cpp:85: error: ‘HasCheckIndicator’ no es un miembro de ‘QStyleOptionViewItemV2’
make[1]: *** [shapes.o] Error 1
make[1]: se sale del directorio `/home/victor/bespin/cloudcity'
make: *** [sub-bespin-pro-make_default] Error 2

Line 85
if (!(item->features & QStyleOptionViewItemV2::HasCheckIndicator))
return;

???? - Mar 06 2008
Bespin

Be-Shell/Bespin by thomas12777 1662 comments

Hi

I've following problem with rev 128:

bespin.cpp: In member function ‘void Bespin::BespinStyle::registerRoutines()’:
bespin.cpp:134: error: ‘PE_FrameStatusBarItem’ no es un miembro de ‘QStyle’
make[1]: *** [bespin.o] Error 1
make[1]: se sale del directorio `/home/victor/bespin/cloudcity'
make: *** [sub-bespin-pro-make_default] Error 2

Ubuntu KDE 4.0.2 - Mar 06 2008
Just Vista

Kbfx Startmenu by nookie 12 comments

Nice work nookie - May 25 2007
carbonit-curve

Beryl/Emerald Themes by vicko 6 comments

here the information:

http://ubuntuforums.org/showthread.php?t=241868 - Nov 28 2006
RealVistaGlass

Beryl/Emerald Themes by SmokingJoe 9 comments

Very nice Wallpaper, where i can find it? - Nov 24 2006
Vista Glow

Compiz Themes by vicko 9 comments

Carbonit

http://www.gnome-look.org/content/show.php?content=45590 - Oct 09 2006
Vista Glow

Compiz Themes by vicko 9 comments

by glow of the text - Oct 06 2006
Vista-like

KDE Plasma Screenshots by vicko 3 comments

with compiz-start.py that comes with compiz-quinncvs - Jul 27 2006
My Desktop of june

KDE Plasma Screenshots by vicko 3 comments

Done :-P - Jun 23 2006
Baghira Verde Olivo 0.3

KDE 3 Color Schemes by vicko 9 comments

I am using compiz with gnome-window-decorator - May 19 2006
Car_Tux

Wallpaper Other by vicko 5 comments

son una combinacion entre AquaE2-RAD.E8 http://www.kde-look.org/content/show.php?content=13290
y los iconos de David Lanham aqua http://www.dlanham.com/goodies/agua/ - Feb 06 2006
KBFX Silk (KBFX 0.4.9.3.1)

Various KDE 1.-4. Improvements by sirajr 612 comments

make[3]: Entering directory `/home/victor/kbfx-0.4.8/kbfx-0.4.8/doc'
make[3]: No se hace nada para `all-am'.
make[3]: Leaving directory `/home/victor/kbfx-0.4.8/kbfx-0.4.8/doc'
Making all in en
make[3]: Entering directory `/home/victor/kbfx-0.4.8/kbfx-0.4.8/doc/en'
make[3]: No se hace nada para `all'.
make[3]: Leaving directory `/home/victor/kbfx-0.4.8/kbfx-0.4.8/doc/en'
make[2]: Leaving directory `/home/victor/kbfx-0.4.8/kbfx-0.4.8/doc'
Making all in kbfxvista
make[2]: Entering directory `/home/victor/kbfx-0.4.8/kbfx-0.4.8/kbfxvista'
Making all in .
make[3]: Entering directory `/home/victor/kbfx-0.4.8/kbfx-0.4.8/kbfxvista'
`kde-config --prefix`/bin/kconfig_compiler ./kbfx.kcfg ./settings.kcfgc; ret=$?; \
if test "$ret" != 0; then rm -f settings.h ; exit $ret ; fi
/bin/sh: kde-config: command not found
/bin/sh: /bin/kconfig_compiler: No existe el fichero o el directorio
make[3]: *** [settings.h] Error 127
make[3]: Leaving directory `/home/victor/kbfx-0.4.8/kbfx-0.4.8/kbfxvista'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/victor/kbfx-0.4.8/kbfx-0.4.8/kbfxvista'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/victor/kbfx-0.4.8/kbfx-0.4.8'
make: *** [all] Error 2
victor:/home/victor/kbfx-0.4.8/kbfx-0.4.8 # - Jan 26 2006
Crystal

KDE 3.x Window Decorations by dralgebra 541 comments

thanks sasha - Dec 20 2005
screenshot 23/11/2005

KDE Plasma Screenshots by vicko 4 comments

me too ;) - Nov 23 2005