summaryrefslogtreecommitdiff
path: root/development/keyview/keyboardimpl.cpp
Unidiff
Diffstat (limited to 'development/keyview/keyboardimpl.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--development/keyview/keyboardimpl.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/development/keyview/keyboardimpl.cpp b/development/keyview/keyboardimpl.cpp
index 673eaa5..0216110 100644
--- a/development/keyview/keyboardimpl.cpp
+++ b/development/keyview/keyboardimpl.cpp
@@ -143,47 +143,51 @@ QWidget *KeyboardImpl::inputMethod( QWidget *parent, Qt::WFlags f )
143 143
144void KeyboardImpl::resetState() 144void KeyboardImpl::resetState()
145{ 145{
146 /* 146 /*
147 if ( input ) 147 if ( input )
148 input->resetState(); 148 input->resetState();
149 */ 149 */
150} 150}
151 151
152QPixmap *KeyboardImpl::icon() 152QPixmap *KeyboardImpl::icon()
153{ 153{
154 if ( !icn ) 154 if ( !icn )
155 icn = new QPixmap( (const char **)kb_xpm ); 155 icn = new QPixmap( (const char **)kb_xpm );
156 return icn; 156 return icn;
157} 157}
158 158
159QString KeyboardImpl::name() 159QString KeyboardImpl::name()
160{ 160{
161 // return qApp->translate( "InputMethods", "Keyboard" ); 161 // return qApp->translate( "InputMethods", "Keyboard" );
162 return "Keyview"; 162 return "Keyview";
163} 163}
164 164
165void KeyboardImpl::onKeyPress( QObject *receiver, const char *slot ) 165void KeyboardImpl::onKeyPress( QObject *receiver, const char *slot )
166{ 166{
167 Q_UNUSED( receiver );
168 Q_CONST_UNUSED( slot );
167 //if ( input ) 169 //if ( input )
168 //QObject::connect( input, SIGNAL(key(ushort,ushort,ushort,bool,bool)), receiver, slot ); 170 //QObject::connect( input, SIGNAL(key(ushort,ushort,ushort,bool,bool)), receiver, slot );
169} 171}
170 172
171#ifndef QT_NO_COMPONENT 173#ifndef QT_NO_COMPONENT
172QRESULT KeyboardImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) 174QRESULT KeyboardImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface )
173{ 175{
174 *iface = 0; 176 *iface = 0;
175 if ( uuid == IID_QUnknown ) 177 if ( uuid == IID_QUnknown )
176 *iface = this; 178 *iface = this;
177 else if ( uuid == IID_InputMethod ) 179 else if ( uuid == IID_InputMethod )
178 *iface = this; 180 *iface = this;
181 else
182 return QS_FALSE;
179 183
180 if ( *iface ) 184 if ( *iface )
181 (*iface)->addRef(); 185 (*iface)->addRef();
182 return QS_OK; 186 return QS_OK;
183} 187}
184 188
185Q_EXPORT_INTERFACE() 189Q_EXPORT_INTERFACE()
186{ 190{
187 Q_CREATE_INSTANCE( KeyboardImpl ) 191 Q_CREATE_INSTANCE( KeyboardImpl )
188} 192}
189#endif 193#endif