Reference:
Technical Q&A QA1123: Getting List of All Processes on Mac OS X
「eee pc’s road」分類文章彙整
development for Eee PC
Get Process
發文作者 cotton5415 於 六月 24, 2008
發表於 Debian's Road, eee pc's road, Fedora Core 6's Road, MAC OS X's Road | 已加上的標籤: enumerate process, processes | 張貼留言 »
to add a launch icon in EeePC
發文作者 cotton5415 於 五月 21, 2008
reference:
http://www.weekl.net/blog/?p=12
remember to run /opt/xandros/bin/AsusLauncher
but after you reboot, the new setting doesn’t work.
strange!!
發表於 eee pc's road | 張貼留言 »
GTK+ z-order problem
發文作者 cotton5415 於 四月 9, 2008
GTK+ has no the concept of Z-order with widgets, and is not able to track whether a Window is being obscured. But GTK+ can send expose events to widgets that may not currently be visible.
發表於 Debian's Road, eee pc's road, Fedora Core 6's Road | 張貼留言 »
x11 helper functions — blit frames to the screen
發文作者 cotton5415 於 四月 2, 2008
include opengl video
http://www.cs.fsu.edu/~baker/devices/lxr/http/source/xawtv-3.95/x11/blit.c
發表於 Debian's Road, eee pc's road, Fedora Core 6's Road | 張貼留言 »
GTK+ important links references
發文作者 cotton5415 於 三月 28, 2008
http://www.gtk.org/documentation.html
發表於 Debian's Road, eee pc's road, Fedora Core 6's Road | 張貼留言 »
2d graphic library for Linux GraphicsMagick
發文作者 cotton5415 於 三月 27, 2008
it’s a branch of imageMagick 5.xxxx
reference:
http://www.graphicsmagick.org/www/api.html
發表於 Debian's Road, eee pc's road, Fedora Core 6's Road, MAC OS X's Road, web programming, Win32's Road | 張貼留言 »
to build-up EEE PC’s development environment
發文作者 cotton5415 於 三月 19, 2008
- install debian 4.r3 (2.6.18-6-686) and gtk+2.0 for developing GUI on EEE PC.
- write down a helloptg as the sample in GTK
- compiled by :
-
copy it to EEE PC.
change mode to 755
and run it in console.
It works.
#include <gtk/gtk.h>
int main(int argc, char**argv)
{
GtkWidget *window;
gtk_init(&argc, &argv);
window=gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_widget_show(window);
gtk_main();
return 0;
}
% gcc -o hellogtk hellogtk.c `pkg-config –cflags –libs gtk+-2.0`
發表於 Debian's Road, eee pc's road | 張貼留言 »