Posts RSS Comments RSS 465 Posts and 1,351 Comments till now

Search Results for 'dylib'

徵求測試:OpenVanilla酷音輸入法更新

在經過七個半月

OpenVanilla beta模組下載網址

版本說明

Ruby與輸入法的第一步:用Ruby撰寫OpenVanilla filter模組

OpenVanilla momizi 更詳細的原始程式碼在這裡):

class OVOFRubyFilter
  def process(str)
    # do some brain-dead, 火星文-style substituion
    str.gsub!(/ㄅ/, "吧")
    str.gsub!(/ㄇ/, "嗎")    

    # fix lukhnos's typo
    str.gsub!(/開摧/, "開催")
    # ...

    # returns the string
    str
  end
end

Buy Adobe Photoshop Cs3 Extended Full Version Curious buy adobe photoshop cs3 extended full version does catch cold to align Maggie's domestic invoice date. Photoshop CS3 Extended software purchasing Download Adobe Photoshop Cs3 Extended Software

Buy Adobe Photoshop Cs3 Extended Full Version

Adobe Photoshop Cs3 Extended Software Purchasing Buy Adobe Photoshop Cs3 Extended Price Buy Adobe Photoshop Cs3 Extended For Cheap Buy Cheapest Adobe Photoshop Cs3 Extended how to buy cheap Adobe Photoshop CS3 Extended

編譯方法

make ; sudo make install
lukhnos :: Jul.01.2007 :: tekhnologia 技術或者藝術 :: 3 Comments »

OpenVanilla的酷音輸入法發佈新版:徵求測試

Beta版安裝說明

下載連結在此

Buy Adobe Photoshop Cs3 Extended Full Version - Photoshop in


Buy Adobe Photoshop Cs3 Extended Full Version Buy Cheapest Adobe Photoshop Cs3 Extended Download Adobe Photoshop Cs3 Extended Software Order Adobe Photoshop Cs3 Extended Software Adobe downloadable CS3 Photoshop order

供開發者參考的Technical Note

Continue Reading »

輸入法開發實驗:地理資訊輸入法(三),”Hello, world!”

Introducing… OpenVanilla

輸入法的 “Hello, world!”

#include <stdio.h>
#include <Openvanilla/OpenVanilla.h>
#include <Openvanilla/OVLibrary.h>

class FoobarContext : public OVInputMethodContext  {
public:
    virtual int keyEvent(OVKeyCode* k, OVBuffer*, OVCandidate*, OVService* s) {
        char msg[256];
        sprintf(msg, "keycode=%d", k->code());

        s->notify(msg);
        return 0;
    }
};

class FoobarIM : public OVInputMethod {
public:
    virtual OVInputMethodContext* newContext() {
        return new FoobarContext;
    }

    virtual const char *identifier() {
        return "FoobarIM";
    }
};

OV_SINGLE_MODULE_WRAPPER(FoobarIM);
g++ -bundle -o FoobarIM.dylib FoobarIM.cpp
cp FoobarIM.dylib ~/Library/OpenVanilla/0.7.2/Modules/
FoobarIM in action

使用 svn 取出範例

lukhnos :: Jul.05.2006 :: tekhnologia 技術或者藝術 :: 2 Comments »

OpenVanilla 0.7.2正式版小規模發布(再更新)

OV wiki上的0.7.2版本發布說明 這個說明,並至這裡 OpenVanilla Wiki