2004-05-01から1日間の記事一覧

KJSEmbed

QComboBoxの件はバグだったらしく、cvsではfixされている。 cvsで最新版(HEAD)をダウンロードした。 QComboBoxは表示されたが、Itemが表示ない。 開発者の人にリポートしようとメール書いてたら、 いつの間にか、最新のCVS版では直ってる。(THX) #/usr/bin/e…

minimum KDE application

コンパイルするには、KDEとQTのincludeを含める。 lkdecore -lkdeui -lqt(-lqt-mt) をリンク。 #include #include int main(int argc, char **argv) { KApplication app(argc, argv, "Hello, world"); KLineEdit *entry = new KLineEdit; entry->setText("He…

Objective C

#include の代わりに #import #import は、Cのヘッダでは必須のマクロ。 #ifndef __foo_h ... #endif // __foo_h の代用になるらしい。なんてICQで友達が話してた。 折角、GCCをフルインストールしたので試してみる。 #import int main(int argc, char **arg…