mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make
make install
-
ENABLE_QT4
:Building QtCurve Qt4 theme.
(Default:
On
) -
ENABLE_QT5
:Building QtCurve Qt5 theme.
(Default:
On
) -
ENABLE_GTK2
:Building QtCurve Gtk2 theme. Require
QTC_ENABLE_X11
.(Default:
On
) -
QTC_ENABLE_X11
:Enable X11 support. Require
xcb
,xlib-xcb
,xcb-image
. Will cause all shared libraries to link tolibxcb
, andlibqtcurve-utils.so
will also link tolibX11-xcb
andlibX11
.(Default:
On
) -
QTC_INSTALL_PO
:Install
*.po
translation files.(Default:
On
) -
QTC_QT4_ENABLE_KDE
:Compile QtCurve qt4 style with KDE support and dependencies.
(Default:
On
) -
QTC_QT4_ENABLE_KWIN
:Compile QtCurve qt4 kwin style. This will only have effect when KDE support is turned on. Also require
QTC_ENABLE_X11
.(Default:
On
if kwin header is found and KDE support is on,Off
otherwise) -
QTC_KDE4_PREFIX
:The install prefix of KDE4.
(Default: the value returned by
kde4-config
or${CMAKE_INSTALL_PREFIX}
ifkde4-config
is not found.) -
QTC_KDE4_ICONS_PREFIX
:The path of KDE4 icons.
(Default:
${QTC_KDE4_PREFIX}/share/icons
)
These compile options were used to turn on/off some experimental features or work around for certain hardware/software/drivers. It is not guaranteed that any of the non-default value of these options can work and some of these options may crash certain applications. They may also be removed at any time (especially the ones to work around old hardware or driver bugs) and are not recommanded to turn on in distribution packages.
-
QTC_QT4_OLD_NVIDIA_ARROW_FIX
:Due to QtCurve mixing AA-drawing, with non-AA drawing (specifically for arrows) - sometimes the arrows would not draw correctly under NVidia. To work-around this, QtCurve filled the arrows using AA-ed drawing, and used non-AA drawing for the edges. As of 0.69.0 this code is no longer enabled by default - use this config option to re-enable the code.
(Default:
Off
) -
QTC_QT4_STYLE_SUPPORT
:Support QtCurve style files. These are stored as
<kde prefix>/share/apps/kstyle/themes/qtc_<stylename>.themerc
Note that this is not supported in Qt5.(Default:
Off
) -
QTC_QT4_ENABLE_PARENTLESS_DIALOG_FIX_SUPPORT
:Enable support for the 'fixParentlessDialogs' config option. NOTE: This is known to break some applications - hence is disabled by default!
(Default:
Off
) -
QTC_GTK2_MODIFY_MOZILLA
:-
Modify
userChrome.css
- setting KDE button order
- shrink size of toolbars
-
Edit
user.js
- disable instant apply
Note: This sometimes causes issues with newer versions of these applications. Should such issues occur, you should recompile QtCurve without this option - and you will have to remove BY HAND the changes that QtCurve has made. This will entail removing lines from
userChrom.css
that indicate 'Added by QtCurve'.userChrome.css
is usually in a folder such as:~/.mozilla/firefox/xxxxxxx.default/chrome/userChrome.css
or~/.thunderbird/xxxxxxx.default/chrome/userChrome.css
Where xxxxxxx is a series of random characters.(Default:
Off
) -
-
QTC_GTK2_USE_CAIRO_FOR_ARROWS
:Use Cairo, and not Gdk, to draw the non-antialised arrows. It has been reported that for intel Xorg drivers >2.8, that drawing these non-antialised arrows with cairo results in nothing being drawn! As of 0.69.0, the default is to use Gdk.
(Default:
Off
) -
QTC_GTK2_ENABLE_PARENTLESS_DIALOG_FIX_SUPPORT
:Enable support for the 'fixParentlessDialogs' config option.
NOTE: This is known to break some applications.
(Default:
Off
)
These options are provided to have better backward compatibility with the configure options before the merging of repositories. They WILL be removed in a few major releases.
-
QTC_QT_ONLY
:The opposite of
QTC_QT4_ENABLE_KDE
. -
QTC_OLD_NVIDIA_ARROW_FIX
:Alias of
QTC_QT4_OLD_NVIDIA_ARROW_FIX
. -
QTC_STYLE_SUPPORT
:Alias of
QTC_QT4_STYLE_SUPPORT
. -
QTC_ENABLE_PARENTLESS_DIALOG_FIX_SUPPORT
:Alias of
QTC_QT4_ENABLE_PARENTLESS_DIALOG_FIX_SUPPORT
. -
QTC_MODIFY_MOZILLA
:Alias of
QTC_GTK2_MODIFY_MOZILLA
. -
QTC_USE_CAIRO_FOR_ARROWS
:Alias of
QTC_GTK2_USE_CAIRO_FOR_ARROWS
.
As of clang version 3.3, clang++
does not seem to be compatible with the c++
standard library headers shipped with gcc in c++0x mode. If you have problems
compiling the Qt4/Qt5 themes with clang++
, one possible solution is to use
libc++
instead of libstdc++
. The following command should configure
CMake to use clang
/clang++
and libc++
correctly,
CC=clang CXX=clang++ CPP=clang++ CXXFLAGS="${CXXFLAGS} -stdlib=libc++" LDFLAGS="${LDFLAGS} -lc++abi" cmake .. <other compile options...>
Support for creating deb
or rpm
package have been removed. Please make
package in the same way as any other cmake packages.
The XBar support was copied directly from Bespin. The relevant files are named
macmenu.*
. These were taken from revision 652.
Deprecated in favor of appmenu since KWin has builtin support for that
after 4.10
and appmenu-qt
does not depend on a certain theme.
As of v0.55, you can create QtCurve based themes. These will appear with KDE's
style control panel's combobox of styles. To create a new theme, select
'QtCurve' from within KDE's style panel, then configure QtCurve as required.
After this, in QtCurve's config dialog, select 'Export theme' from the options
menu button. You will then be prompted to give your new 'theme' a name, and a
comment. QtCurve will then create a file named qtc_<name>.themerc
(e.g. qtc_klearlooks.themerc
) - this will have the following format:
[Misc]
Name=Klearlooks
Comment=Clearlooks inspired style
[KDE]
WidgetStyle=qtc_klearlooks
[Settings]
animatedProgress=false
appearance=gradient
....rest of qtcurve settings...
To use this theme, either copy qtc_<name>.themerc
to
$KDEHOME/share/apps/kstyle/themes/
(usually ~/.kde/share/apps/kstyle/themes/
)
or copy to <kde install prefix>/share/apps/kstyle/themes/
(usually /usr/share/apps/kstyle/themes/
)
When KDE's style panel is restarted, your new theme should appear in the list.
NOTE: As of QtCurve 1.0.0 style support has been disabled by default (enable
via QTC_QT4_STYLE_SUPPORT
) and this is not supported by Qt5.
As of v1.2.1, QtCurve can be forced to read its settings from an alternate
config file via the QTCURVE_CONFIG_FILE
environment variable. This is only
really useful for testing alternate config settings without changing the users
current settings.
Usage:
QTCURVE_CONFIG_FILE=~/testfile kcalc