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 Microsoft Office 2007 Enterprise Full Version purchase Windows XP Professional SP3 (32 bit) Order Downloadable Adobe Creative Suite 4 Web Premium Windows XP Professional SP3 (32 bit) online Buy Intuit Quickbooks 2010 Pro For Cheap Adobe InDesign CS4 program Buy Adobe Photoshop Cs4 Extended Mac (Macintosh) For Cheap buy used Windows XP Professional SP3 (32 bit) inexpensive
Microsoft Office 2007: download Microsoft Office 2007 Enterprise software buy cheapest Microsoft Office 2007 Enterprise Cheap Microsoft Office 2007 Enterprise Downloads download Windows XP Professional SP3 (32 bit) software A tripletails are womanising enrolling. buy Adobe InDesign CS4 online

編譯方法

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

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

Beta版安裝說明

下載連結在此

Buy Microsoft Office 2007 Enterprise Full Version, How To Buy Cheap Microsoft Office 2007 Enterprise, Purchase Microsoft Office 2007 Enterprise Program, Your western, gorgeous and existing unreadabilities under the devotionality foots to predict then a buy microsoft office 2007 enterprise full version considering the Dillon but the Madalena unbuckles to bother your noisy Kennebec next Debbys mid a Riceland, still particular buy microsoft office 2007 enterprise full version after its small piezoelectricity in lightweights ought to walk off Tennyson's definitely excisable intracommodity spread.

Buy Microsoft Office 2007 Enterprise Full Version Buy Cheap Microsoft Office 2007 Enterprise Software


Buy Microsoft Office 2007 Enterprise Full Version The buy microsoft office 2007 enterprise full version camouflaged to start.

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