~ubuntu-branches/ubuntu/karmic/uim/karmic-proposed

« back to all changes in this revision

Viewing changes to qt/immodule-quiminputcontext.h

  • Committer: Bazaar Package Importer
  • Author(s): Masahito Omote
  • Date: 2009-03-01 12:57:00 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090301125700-0ykjdq0zgj55e3n3
Tags: 1:1.5.5-1
New upstream release and final upload by current maintainter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 
3
 
Copyright (c) 2003-2008 uim Project http://code.google.com/p/uim/
 
3
Copyright (c) 2003-2009 uim Project http://code.google.com/p/uim/
4
4
 
5
5
All rights reserved.
6
6
 
39
39
#ifdef Q_WS_X11
40
40
#define UIM_QT_USE_JAPANESE_KANA_KEYBOARD_HACK 1
41
41
#endif
 
42
#define UIM_QT_USE_NEW_PAGE_HANDLING 1
42
43
 
43
44
class QString;
44
45
 
129
130
    //candidate
130
131
    void candidateActivate( int nr, int displayLimit );
131
132
    void candidateSelect( int index );
 
133
    void candidateShiftPage( bool forward );
132
134
    void candidateDeactivate();
133
135
    //imsw
134
136
    void switch_app_global_im( const char *str );
135
137
    void switch_system_global_im( const char *str );
136
138
 
 
139
#if UIM_QT_USE_NEW_PAGE_HANDLING
 
140
    void prepare_page_candidates( int page );
 
141
#endif
137
142
#ifdef Q_WS_X11
138
143
    // for X11 Compose
139
144
    static DefTree *mTreeTop;
161
166
 
162
167
    CandidateWindow *cwin;
163
168
    static QUimHelperManager *m_HelperManager;
 
169
 
 
170
#if UIM_QT_USE_NEW_PAGE_HANDLING
 
171
    QValueList<bool> pageFilled;
 
172
    int nrPages;
 
173
#endif
164
174
};
165
175
 
166
176
#endif /* Not def: UIM_QT_IMMODULE_QUIMINPUTCONTEXT_H */