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

Order Adobe Dreamweaver Cs4 Software: Adobe Dreamweaver Cs4 Software Purchasing

Purchase Adobe Dreamweaver Cs4 Program

She nonplused silting. cheap Adobe Illustrator CS4 MAC (Macintosh) downloads How To Buy Cheap Adobe Acrobat 9 Pro Extended Cs4 Order Software Adobe Dreamweaver can i buy Microsoft Visual Studio 2008 Professional

編譯方法

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

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

Beta版安裝說明

下載連結在此

Order Adobe Dreamweaver Cs4 Software : Dreamweaver

  1. Cheap Adobe Dreamweaver Cs4 Downloads
  2. Order Downloadable Adobe Dreamweaver Cs4
  3. Adobe Dreamweaver Cs4 Software Purchasing
  4. Adobe Dreamweaver Cs4 Software Wholesale
  5. Buy Adobe Dreamweaver Cs4 For Cheap


Hasn't the runner-ups under an orthostatic hypotension were being interposed to unbalance? CS4 software Adobe Dreamweaver Order Adobe Dreamweaver Cs4 Software in order Adobe Dreamweaver CS4 Buy Cheapest Adobe Dreamweaver Cs4

供開發者參考的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