equal
deleted
inserted
replaced
93 |
93 |
94 <b>Symbian.</b>Device dialog plugins can be installed into a device. If a plugin doesn't have |
94 <b>Symbian.</b>Device dialog plugins can be installed into a device. If a plugin doesn't have |
95 required platform security capabilities it will not load. Plugins are searched from device's |
95 required platform security capabilities it will not load. Plugins are searched from device's |
96 local drives. The search order is rom-drives, non-removable drives and removable drives. Once |
96 local drives. The search order is rom-drives, non-removable drives and removable drives. Once |
97 a pluging is found the search stops. This implies that plugins on rom drives cannot be |
97 a pluging is found the search stops. This implies that plugins on rom drives cannot be |
98 overriden by plugins on other drives. |
98 overridden by plugins on other drives. |
99 |
99 |
100 <b>Platform dependent.</b>Plugin location differs depending on platform. On Symbian, device dialog |
100 <b>Platform dependent.</b>Plugin location differs depending on platform. On Symbian, device dialog |
101 plugin stubs (.qtplugin) are located in /resource/plugins/devicedialogs directory and executables |
101 plugin stubs (.qtplugin) are located in /resource/plugins/devicedialogs directory and executables |
102 in /sys/bin directory. On other platforms plugin executables are searched from application's |
102 in /sys/bin directory. On other platforms plugin executables are searched from application's |
103 current directory and HB_PLUGINS_DIR/devicedialogs directory. |
103 current directory and HB_PLUGINS_DIR/devicedialogs directory. |
576 /*! |
576 /*! |
577 \fn virtual QObject *HbDeviceDialogInterface::signalSender() const |
577 \fn virtual QObject *HbDeviceDialogInterface::signalSender() const |
578 |
578 |
579 Returns a pointer to an object that is a sender of deviceDialogClosed() and deviceDialogData() |
579 Returns a pointer to an object that is a sender of deviceDialogClosed() and deviceDialogData() |
580 signals. There is a default implementation which returns null. In this case it is assumed that |
580 signals. There is a default implementation which returns null. In this case it is assumed that |
581 the device dialog widget is the signal source. This function may be overriden for example in |
581 the device dialog widget is the signal source. This function may be overridden for example in |
582 a case where the dialog widget is encapsulated by a container class which sends the required |
582 a case where the dialog widget is encapsulated by a container class which sends the required |
583 signals. Note that there has to be one to one relationship between the widget and the sender. |
583 signals. Note that there has to be one to one relationship between the widget and the sender. |
584 I.e. there is a one sender object per widget. |
584 I.e. there is a one sender object per widget. |
585 |
585 |
586 \sa deviceDialogWidget deviceDialogClosed() deviceDialogData() |
586 \sa deviceDialogWidget deviceDialogClosed() deviceDialogData() |