#include </home/clem/local/src/opie/libopie2/qt3/opiecore/ocompletionbase.h>
Inheritance diagram for OCompletionBase:


An abstract base class for adding a completion feature into widgets.
This is a convenience class that provides the basic functions needed to add text completion support into widgets. All that is required is an implementation for the pure virtual function setCompletedText. Refer to OLineEdit or OComboBox to see how easily such support can be added using this as a base class.
Definition at line 51 of file ocompletionbase.h.
|
|
Definition at line 82 of file ocompletionbase.h. |
|
|
Constants that represent the items whose short-cut key-binding is programmable. The default key-bindings for these items are defined in OStdAccel.
Definition at line 61 of file ocompletionbase.h. |
|
|
Default constructor. Definition at line 36 of file ocompletionbase.cpp. References m_delegate, m_iCompletionMode, setup(), and useGlobalKeyBindings(). |
|
|
Destructor. Definition at line 52 of file ocompletionbase.cpp. References m_bAutoDelCompObj, and m_pCompObj. |
|
|
Returns the current completion mode. The return values are of type OGlobalSettings::Completion. See setCompletionMode() for details.
Definition at line 255 of file ocompletionbase.h. References completionMode(), m_delegate, and m_iCompletionMode. Referenced by OComboBox::autoCompletion(), OLineEdit::completionMenuActivated(), completionMode(), OLineEdit::createPopupMenu(), OLineEdit::keyPressEvent(), OLineEdit::makeCompletion(), OLineEdit::setCompletedText(), and OLineEdit::setCompletionMode(). |
|
|
Returns a pointer to the current completion object. If the object does not exist, it is automatically created. Note that the completion object created here is used by default to handle the signals internally. It is also deleted when this object's destructor is invoked. If you do not want these default settings, use setAutoDeleteCompletionObject and setHandleSignals to change the behavior. Alternatively, you can set the boolean parameter to false to disable the automatic handling of the signals by this object. Note that the boolean argument will be ignored if there already exists a completion object since no new object needs to be created. You need to use either setHandleSignals or setCompletionObject for such cases depending on your requirement.
Definition at line 73 of file ocompletionbase.cpp. References completionObject(), m_bAutoDelCompObj, m_delegate, m_pCompObj, and setCompletionObject(). Referenced by OHistoryCombo::addToHistory(), OHistoryCombo::clearHistory(), completionObject(), OpieUIDemo::demoOComboBox(), OpieUIDemo::demoOLineEdit(), OHistoryCombo::init(), OHistoryCombo::removeFromHistory(), and OHistoryCombo::setHistoryItems(). |
|
|
Returns a pointer to the completion object.
This method is only different from completionObject() in that it does not create a new OCompletion object even if the internal pointer is
Definition at line 356 of file ocompletionbase.h. References compObj(), m_delegate, and m_pCompObj. Referenced by compObj(), OLineEdit::createPopupMenu(), OLineEdit::makeCompletion(), OLineEdit::rotateText(), OLineEdit::setCompletionObject(), and OHistoryCombo::useCompletion(). |
|
|
Definition at line 370 of file ocompletionbase.h. References m_delegate. |
|
|
Returns true if the object emits the signals
Definition at line 223 of file ocompletionbase.h. References emitSignals(), m_bEmitSignals, and m_delegate. Referenced by emitSignals(), and OLineEdit::keyPressEvent(). |
|
|
Returns the key-binding used for the specified item.
This methods returns the key-binding used to activate the feature feature given by
Definition at line 305 of file ocompletionbase.h. References getKeyBinding(), m_delegate, and m_keyMap. Referenced by getKeyBinding(). |
|
|
Returns a key-binding map This method is the same as getKeyBinding() except it returns the whole keymap containing the key-bindings.
Definition at line 367 of file ocompletionbase.h. References getKeyBindings(), m_delegate, and m_keyMap. Referenced by getKeyBindings(), and OLineEdit::keyPressEvent(). |
|
|
Returns true if the object handles the signals
Definition at line 216 of file ocompletionbase.h. References handleSignals(), m_bHandleSignals, and m_delegate. Referenced by handleSignals(), OLineEdit::keyPressEvent(), OLineEdit::makeCompletionBox(), and OLineEdit::setCompletionObject(). |
|
|
Returns true if the completion object is deleted upon this widget's destruction. See setCompletionObject() and enableCompletion() for details.
Definition at line 164 of file ocompletionbase.h. References isCompletionObjectAutoDeleted(), m_bAutoDelCompObj, and m_delegate. Referenced by isCompletionObjectAutoDeleted(). |
|
|
Sets the completion object when this widget's destructor is called. If the argument is set to true, the completion object is deleted when this widget's destructor is called.
Definition at line 177 of file ocompletionbase.h. References m_bAutoDelCompObj, m_delegate, and setAutoDeleteCompletionObject(). Referenced by setAutoDeleteCompletionObject(). |
|
|
A pure virtual function that must be implemented by all inheriting classes. |
|
|
A pure virtual function that must be implemented by all inheriting classes. This function is intended to allow external completion implementations to set completed text appropriately. It is mostly relevant when the completion mode is set to CompletionAuto and CompletionManual modes. See OCompletionBase::setCompletedText. Does nothing in CompletionPopup mode, as all available matches will be shown in the popup.
|
|
|
Sets the type of completion to be used. The completion modes supported are those defined in OGlobalSettings(). See below.
Reimplemented in OLineEdit. Definition at line 112 of file ocompletionbase.cpp. References m_delegate, m_iCompletionMode, m_pCompObj, and setCompletionMode(). Referenced by OpieUIDemo::demoOComboBox(), OComboBox::setAutoCompletion(), OLineEdit::setCompletionMode(), and setCompletionMode(). |
|
||||||||||||
|
Sets up the completion object to be used. This method assigns the completion object and sets it up to automatically handle the completion and rotation signals internally. You should use this function if you want to share one completion object among you widgets or need to use a customized completion object. The object assigned through this method is not deleted when this object's destructor is invoked unless you explicitly call setAutoDeleteCompletionObject after calling this method. Also if you do not want the signals to be handled by an internal implementation, be sure to set the bool argument to false. This method is also called when a completion-object is created automatically, when completionObject() is called the first time.
Reimplemented in OLineEdit. Definition at line 86 of file ocompletionbase.cpp. References m_bAutoDelCompObj, m_delegate, m_pCompObj, setCompletionObject(), and setup(). Referenced by completionObject(), OLineEdit::setCompletionObject(), and setCompletionObject(). |
|
|
Definition at line 60 of file ocompletionbase.cpp. References m_bAutoDelCompObj, m_bEmitSignals, m_bHandleSignals, m_delegate, m_iCompletionMode, and m_keyMap. Referenced by OComboBox::setLineEdit(). |
|
|
Sets the widget's ability to emit text completion and rotation signals.
Invoking this function with There is no need to invoke this function by default. When a completion object is created through completionObject or setCompletionObject, these signals are set to emit automatically. Also note that disabling this signals will not necessarily interfere with the objects ability to handle these events internally. See setHandleSignals.
Definition at line 204 of file ocompletionbase.h. References m_bEmitSignals, m_delegate, and setEnableSignals(). Referenced by setEnableSignals(). |
|
|
Enables this object to handle completion and rotation events internally. This function simply assigns a boolean value that indicates whether it should handle rotation and completion events or not. Note that this does not stop the object from emitting signals when these events occur.
Definition at line 104 of file ocompletionbase.cpp. References m_bHandleSignals, m_delegate, and setHandleSignals(). Referenced by setHandleSignals(). |
|
||||||||||||
|
Sets the key-binding to be used for manual text completion, text rotation in a history list as well as a completion list.
When the keys set by this function are pressed, a signal defined by the inheriting widget will be activated. If the default value or 0 is specified by the second parameter, then the key-binding as defined in the global setting should be used. This method returns false value for
NOTE: To use a modifier key (Shift, Ctrl, Alt) as part of the key-binding simply simply
Definition at line 126 of file ocompletionbase.cpp. References QMap< Key, T >::begin(), QMap< Key, T >::end(), OShortcut::isNull(), m_delegate, m_keyMap, QMap< Key, T >::replace(), and setKeyBinding(). Referenced by setKeyBinding(). |
|
||||||||||||||||
|
Definition at line 161 of file ocompletionbase.cpp. References m_bAutoDelCompObj, m_bEmitSignals, m_bHandleSignals, m_delegate, and setup(). Referenced by OCompletionBase(), setCompletionObject(), and setup(). |
|
|
Sets this object to use global values for key-bindings. This method changes the values of the key bindings for rotation and completion features to the default values provided in OGlobalSettings. NOTE: By default inheriting widgets should uses the global key-bindings so that there will be no need to call this method. Definition at line 141 of file ocompletionbase.cpp. Referenced by OCompletionBase(). |
|
|
Reimplemented in OComboBox, OHistoryCombo, and OLineEdit. Definition at line 399 of file ocompletionbase.h. |
|
|
Definition at line 380 of file ocompletionbase.h. Referenced by completionObject(), isCompletionObjectAutoDeleted(), setAutoDeleteCompletionObject(), setCompletionObject(), setDelegate(), setup(), and ~OCompletionBase(). |
|
|
Definition at line 385 of file ocompletionbase.h. Referenced by emitSignals(), setDelegate(), setEnableSignals(), and setup(). |
|
|
Definition at line 383 of file ocompletionbase.h. Referenced by handleSignals(), setDelegate(), setHandleSignals(), and setup(). |
|
|
Definition at line 393 of file ocompletionbase.h. Referenced by completionMode(), completionObject(), compObj(), delegate(), emitSignals(), getKeyBinding(), getKeyBindings(), handleSignals(), isCompletionObjectAutoDeleted(), OCompletionBase(), setAutoDeleteCompletionObject(), setCompletionMode(), setCompletionObject(), setDelegate(), setEnableSignals(), setHandleSignals(), setKeyBinding(), and setup(). |
|
|
Definition at line 387 of file ocompletionbase.h. Referenced by completionMode(), OCompletionBase(), setCompletionMode(), and setDelegate(). |
|
|
Definition at line 391 of file ocompletionbase.h. Referenced by getKeyBinding(), getKeyBindings(), setDelegate(), and setKeyBinding(). |
|
|
Definition at line 389 of file ocompletionbase.h. Referenced by completionObject(), compObj(), setCompletionMode(), setCompletionObject(), and ~OCompletionBase(). |
1.4.2