~ubuntu-branches/ubuntu/maverick/uim/maverick

« back to all changes in this revision

Viewing changes to qt4/immodule/quiminputcontext_with_slave.h

  • Committer: Bazaar Package Importer
  • Author(s): Masahito Omote
  • Date: 2008-06-25 19:56:33 UTC
  • mfrom: (3.1.18 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080625195633-8jljph4rfq00l8o7
Tags: 1:1.5.1-2
* uim-tcode: provide tutcode-custom.scm, tutcode-bushudic.scm
  and tutcode-rule.scm (Closes: #482659)
* Fix FTBFS: segv during compile (Closes: #483078).
  I personally think this bug is not specific for uim but is a optimization
  problem on gcc-4.3.1. (https://bugs.freedesktop.org/show_bug.cgi?id=16477)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 
 
3
  Copyright (c) 2004-2005 Kazuki Ohta <mover@hct.zaq.ne.jp>
 
4
  Copyright (c) 2005-2008 uim Project http://code.google.com/p/uim/
 
5
 
 
6
  All rights reserved.
 
7
 
 
8
  Redistribution and use in source and binary forms, with or without
 
9
  modification, are permitted provided that the following conditions
 
10
  are met:
 
11
 
 
12
  1. Redistributions of source code must retain the above copyright
 
13
     notice, this list of conditions and the following disclaimer.
 
14
  2. Redistributions in binary form must reproduce the above copyright
 
15
     notice, this list of conditions and the following disclaimer in the
 
16
     documentation and/or other materials provided with the distribution.
 
17
  3. Neither the name of authors nor the names of its contributors
 
18
     may be used to endorse or promote products derived from this software
 
19
     without specific prior written permission.
 
20
 
 
21
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
 
22
  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
23
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
24
  ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
 
25
  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
26
  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
27
  OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
28
  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
29
  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
30
  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
31
  SUCH DAMAGE.
 
32
 
 
33
*/
 
34
 
 
35
#ifndef UIM_QT4_IMMODULE_QUIMINPUTCONTEXT_WITH_SLAVE_H
 
36
#define UIM_QT4_IMMODULE_QUIMINPUTCONTEXT_WITH_SLAVE_H
 
37
 
 
38
#include "quiminputcontext.h"
 
39
 
 
40
// This class is for dealing with Dead/Multi key composing.
 
41
// Have QSimpleInputContext as slave and forward event to the
 
42
// slave when isComposing==false.
 
43
 
 
44
class QUimInputContextWithSlave : public QUimInputContext
 
45
{
 
46
    Q_OBJECT
 
47
public:
 
48
    QUimInputContextWithSlave( const char *imname = 0, const char *lang = 0 );
 
49
    ~QUimInputContextWithSlave();
 
50
 
 
51
    virtual void setFocus();
 
52
    virtual void unsetFocus();
 
53
 
 
54
#if defined(Q_WS_X11)
 
55
    virtual void setFocusWidget( QWidget *w );
 
56
    virtual void setHolderWidget( QWidget *w );
 
57
#endif
 
58
 
 
59
    virtual bool filterEvent( QEvent *event );
 
60
 
 
61
    /*
 
62
    signals:
 
63
    void imEventGenerated( QWidget *, QInputMethodEvent * );
 
64
    */
 
65
 
 
66
protected slots:
 
67
    virtual void destroyInputContext();
 
68
 
 
69
protected:
 
70
    QInputContext *slave;
 
71
};
 
72
 
 
73
#endif /* Not def: UIM_QT4_IMMODULE_QUIMINPUTCONTEXT_WITH_SLAVE_H */