Wednesday, August 18, 2010
compile Qt 4.7 beta2
If you want to compile Qt 4.7 beta2 on kubuntu and you have this error: "libXrender not found"; create symbolic link: sudo ln -s /usr/lib/libXrender.so.1 /usr/lib/libXrender.so
Sunday, July 4, 2010
running MeeGo Touch libraries inside MeeGo SDK
zypper install doxygen git
zypper install libgconf2-dev GConf-dbus-devel
zypper install libXdamage-devel
zypper install graphviz
Get the meegotouch source:
git clone git://gitorious.org/meegotouch/libmeegotouch.git
git clone git://gitorious.org/meegotouch/meegotouch-theme.git
cd libmeegotouch
./configure
make
make install (before export correct DISPLAY)
make doc
cd ../meegotouch-theme
qmake
make install
zypper install libgconf2-dev GConf-dbus-devel
zypper install libXdamage-devel
zypper install graphviz
Get the meegotouch source:
git clone git://gitorious.org/meegotouch/libmeegotouch.git
git clone git://gitorious.org/meegotouch/meegotouch-theme.git
cd libmeegotouch
./configure
make
make install (before export correct DISPLAY)
make doc
cd ../meegotouch-theme
qmake
make install
Tuesday, February 23, 2010
QPushButton in Maemo5
If you want change color a QPushButton in Maemo5 don't use setPalette, but setStyleSheet; example
setStyleSheet(
"color: blue;"
"background-color: yellow;" "selectioncolor:yellow;" "selection-background-color: blue;"
);
setStyleSheet(
"color: blue;"
"background-color: yellow;" "selectioncolor:yellow;" "selection-background-color: blue;"
);
Tuesday, January 5, 2010
symfony 1.0.21 install plugin
I have installed symfony 1.0.21 on xubuntu 9.10; when i have tried to do
symfony plugin-install http://plugins.symfony-project.com/sfGuardPlugin
i had this error:
Warning: require_once(PEAR/Remote.php): failed to open stream: No such file or directory in /usr/share/php/data/symfony/tasks/sfPakePlugins.php on line 155
i resolved it in this mode:
cd /usr/share/php/PEAR
sudo ln -s Command/Remote.php Remote.php
symfony plugin-install http://plugins.symfony-project.com/sfGuardPlugin
i had this error:
Warning: require_once(PEAR/Remote.php): failed to open stream: No such file or directory in /usr/share/php/data/symfony/tasks/sfPakePlugins.php on line 155
i resolved it in this mode:
cd /usr/share/php/PEAR
sudo ln -s Command/Remote.php Remote.php
Subscribe to:
Posts (Atom)